@charset "utf-8";


/* ------------------ SLOGAN LOGO CART ------------------ */
.head-bar {
	width: 100%;
	height: 5px;
	margin: 0;
	padding: 0;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: var(--green00-color);
}
.head-slogan { 
	width: 100%;
	height: 35px;
	margin: 0;
	margin-top: 5px;
	padding: 0;
	display: block;
	position: relative;
	z-index: 97;
	color: var(--green02-color);
	font-size: 13px;
	line-height: 35px;
	text-align: center;
	background-color: var(--green01-color);
	overflow: hidden;
}

.head-slogan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.6s ease-in-out; /* effect เลื่อนขึ้น */
}

.head-slogan ul li {
  height: 35px;
  text-align: center;
}
.logo  {
	height: 100%; 
	margin: 0 auto;
	padding: 0 24px 0 0;
  	display: flex;
  	align-items: center;
}
.cart-status { 
	margin-right: 40px;
	transition: margin 0.3s ease;
}
.cart {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.cart:hover .cart-number { background-color: var(--green06-color); }
.cart:hover .image-hover img.top { opacity: 0; }
.cart .cart-number {
	height: 25px;
	margin: 6px 0 0 0;
	padding: 0px 4px;
	color: var(--green01-color);
	font-size: 16px;
	line-height: 25px;
	display: inline-block;
    background-color: var(--green04-color);
}
.cart-number:hover ~ .image-hover img.top {
  opacity: 0; /* ซ่อนภาพบน */
}


/* ------------------ NAVIGATION ------------------ */
.topnav {
	width: 100%;
	height: 61px;
	padding: 16px 20px;
	display: flex;
	position: fixed;
	top: 5px;
	z-index: 99;
	color: var(--white-color);
	background-color: rgba(255,255,255,.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
 	transition: height 0.3s ease, background-color 0.4s ease, transform 0s ease;
	border-bottom: 1px solid var(--green01-color);
	align-items: center;
	transform: translateY(40px);
}
.topnav.shrink { height: 60px; }
.topnav.scrolled { background-color: rgba(255,255,255,0.6); }
.topnav.menu-open {
	padding: 16px 20px 16px 20px;
	background-color: rgba(255,255,255,1) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}
.topnav.menu-open .menu-button { 
	margin-left: 0;
	transition: margin 0.2s ease;
}
.topnav.menu-open .cart-status { 
	margin-right: 0;
	transition: margin 0.2s ease;
}
.topnav.menu-open .menu-label {
	opacity: 0.3;
	transition: opacity 0.3s ease;
}


/* ------------------ SIGN MENU ------------------ */
.menu-button {
	margin-left: 40px;
	display: flex;
	align-items: center;
	cursor: pointer;
	
}
.menu-button:hover .menu-toggle span { background: var(--green06-color); }
.menu-button:hover .menu-label { color: var(--green06-color); }
.menu-toggle {
	width: 30px;
	height: 24px;
	display: inline-block;
	position: relative;
}
.menu-toggle span {
	width: 100%;
	height: 4px;
	background: var(--green04-color);
	position: absolute;
	left: 0;
	transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 0;}
.menu-toggle span:nth-child(2) { top: 10px;}
.menu-toggle span:nth-child(3) { top: 20px;}
.menu-toggle.active span:nth-child(1) {
	top: 10px;
	transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) { opacity: 0;}
.menu-toggle.active span:nth-child(3) {
	top: 10px;
	transform: rotate(-45deg);
}
.menu-label {
	margin-left: 12px;
	font-family: var(--secondary-font);
	font-size: 24px;
	color: var(--green04-color);
}


/* ------------------ SLIDING MENU ------------------ */
.sidemenu {
	width: 250px;
	height: calc(100% - 60px);
	position: fixed;
	left: 0;
	z-index: 98;
	background-color: var(--green02-color);
	/*background-image: url("../img/bg-nav-orchids.png");*/
	background-position: bottom left;
	background-repeat: no-repeat;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.sidemenu ul {
	list-style:none; 
	padding-left:0; 
	margin: 0;
}
.sidemenu a {
	padding: 8px 20px;
	display: block;
	color: var(--white-color);
	text-transform:uppercase;
	text-decoration: none;
	transition: letter-spacing 0.4s ease, background-color 0.8s ease, color 0.4s ease;
}
#top-menu a.active {
	color: var(--green07-color);
	font-weight: 700;
}
#bottom-menu a.active {
	color: var(--green01-color);
	font-weight: 700;
}
.sidemenu a:hover {
	letter-spacing: 3px;
	background-color: rgb(101, 129, 71, 1);
	transition: letter-spacing 0.4s ease, background-color .6s ease, color 0.4s ease;
}
.sidemenu::-webkit-scrollbar {
	display: none;
}
.sidemenu.open { transform: translateX(0);}
.sidemenu ul li {
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.sidemenu.open ul li {
	border-bottom: 1px solid rgba(255, 255, 255, .25);
	opacity: 1;
	transform: translateX(0);
}
.sidemenu.open ul li:nth-child(1) { transition-delay: 0.20s; }
.sidemenu.open ul li:nth-child(2) { transition-delay: 0.25s; }
.sidemenu.open ul li:nth-child(3) { transition-delay: 0.30s; }
.sidemenu.open ul li:nth-child(4) { transition-delay: 0.35s; }
.sidemenu.open ul li:nth-child(5) { transition-delay: 0.40s; }
.sidemenu.open ul li:nth-child(6) { transition-delay: 0.45s; }


/* ------------------ OVERLAY CONTENT ------------------ */
.overlay {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 95;
	background: rgba(114,151,99,0.5);
}
.overlay.show { display: block;}
.content {
	margin: 0;
	padding: 0;
	background-color: var(--white-color);
	transition: margin-left 0.3s ease;
}
.content.shifted { margin-left: 250px;}


/* ------------------ GOTO TOP ------------------ */
.go-top {
	position: fixed;
	display:inline-block;
	line-height: 60px;
	bottom: 20px;
	right: 20px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(30px);
	transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease, background-position 0.1s ease, bottom 0.4s ease;
	z-index: 94;
	overflow: hidden;
}
.go-top.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	overflow: hidden;
}
.go-top.at-bottom { bottom: 67px; }
.go-top button {
	width: 60px;
	height: 60px;
	padding: 0;
	display: block;
	color: var(--white-color);
	line-height: 60px;
	background-color: rgba(89,116,69,0.7);
	background-image: url("../img/arrow-top.png");
	background-repeat: no-repeat;
	background-position: top center;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease, background-position 0.2s ease;
	overflow: hidden;
}
.go-top button:hover {
	background-color: rgba(89,116,69,1);
	background-position: center calc(50% - 30px);
}


/* ------------------ ARROW ------------------ */
.arrow-left {
	display:inline-block;
	line-height: 60px;
}
.arrow-left button {
	width: 60px;
	height: 60px;
	padding: 0;
	background-color: rgba(138,187,102,0.7);
	background-image: url("../img/arrow-left.png");
	background-repeat: no-repeat;
	background-position: left;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease, background-position 0.2s ease;
}
.arrow-left button:hover {
	background-color: rgba(138,187,102,1);
	background-position: calc(50% - 30px) center;
}
.arrow-right {
	display:inline-block;
	line-height: 60px;
}
.arrow-right button {
	width: 60px;
	height: 60px;
	padding: 0;
	background-color: rgba(138,187,102,0.7);
	background-image: url("../img/arrow-left.png");
	background-repeat: no-repeat;
	background-position: left;
	border: none;
	cursor: pointer;
	transform: scaleX(-1);
	transition: background-color 0.3s ease, background-position 0.2s ease;
}
.arrow-right button:hover {
	background-color: rgba(138,187,102,1);
	background-position: calc(50% - 30px) center;
}


/* ------------------ ORDER LINK ------------------ */
.order-link { }
.order-link h1 {
	text-transform: uppercase;
	letter-spacing: 3px;
}


/* ------------------ FOOTER ------------------ */
footer  {
	width:100%;
	margin: 0;
	padding: 0;
	color: var(--green01-color);
	font-size: 19px;
	background-color: var(--green03-color);
}
footer .footer-body { padding-top: 120px; padding-bottom: 120px;}
nav ul.footer-nav { 
    width: 100%; 
    margin: 0; 
    padding: 0;
    list-style: none; 
}
nav ul.footer-nav li {
    width: 100%;
    margin-bottom: 7px; 
}
nav ul.footer-nav li:last-child { margin-bottom: 50px; }
nav ul.footer-nav li a {
	width: 100%;
	padding: 7px 20px;
	display: inline-block;
    color: var(--green00-color);
	text-align: center;
	text-transform: uppercase;
	background-color: var(--green04-color);
}
nav ul.footer-nav li a:hover {
    color: var(--green06-color);
    letter-spacing: 2px;
	background-color: var(--green00-color);
}
ul.footer-address li.icon-social {
	margin-bottom: 0;
	padding-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
ul.footer-address li.icon-social a svg {
	width: auto;
	height: 40px;
	margin: 0;
	padding: 0;
	overflow: hidden; 
	display: block;
}
ul.footer-address li.icon-social a.youtube svg {
  height: 40px;
  width: auto;
  transform: scale(1.4);
}
ul.footer-address li.icon-social a {
	height: 40px;
	margin: 0;
	padding: 0;
	color: #fff;
	line-height: 40px;
	text-decoration: none;
	display: inline-block;
}
ul.footer-address li.icon-social span {
	flex: 0 0 1px; 
	width: 1px;
	height: 40px; 
	margin: 0 25px; 
	line-height: 40px; 
	background: rgba(255, 255, 255, .3); 
}
ul.footer-address li.icon-social a:hover {
	color: var(--green00-color);
	animation: pulse .5s;
}

ul.footer-address {
    width: 100%;
    margin: 0;
    padding: 0;
	list-style: none;
	color: var(--green01-color);
}
ul.footer-address svg {
    line-height: 0;
	vertical-align: baseline;
	display: inline-block;
}
ul.footer-address li {
	margin-bottom: 20px;
	padding: 20px;
	border: solid 1px rgba(255, 255, 255, .3);
}
ul.footer-address .txt-hot-line { 
	margin-bottom: 0; 
	padding: 0 0 0 24px; 
	font-size: 15px;
	text-align: left;
    text-transform: uppercase;
}
ul.footer-address .no-hot-line {
	margin-top: 0;
	margin-bottom: 0;
	padding: 0 0 0 24px; 
	color: var(--green00-color);
	font-size: 50px;
	font-weight: 900;
	line-height: 1;
    text-align: left; 
}
ul.footer-address .txt-name {
	margin-bottom: 7px;
	padding: 10px 6px;
	font-size: 18px;
	font-weight: 100;
	color: var(--green04-color);
	background-color: rgba(138, 187, 108, 1);
	line-height: 0;
	border-radius: 0 4px 4px 0;
	vertical-align: middle;
  	display: inline-block;
}
ul.footer-address h3 { 
	font-size: 26px; 
	font-weight: 600;
	text-transform: uppercase;
}
ul.footer-address p { 
	margin-bottom: 0; 
	padding-left: 24px;
}
ul.footer-address p.two-email { 
	padding-left: 84px;
	text-indent: -57px;
}
ul.footer-address li:nth-child(4) {
	text-align: center;
	border:none; 
}
ul.footer-address hr {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, .7);
	margin: 8px 0;  
}
.footer-copyright { 
    width: 100%;
    /*min-height: 80px;*/
	padding: 20px;
	display: flex;
    position: relative;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	font-size: 17px; 
	color: var(--green02-color); 
	background-color: var(--green06-color); 
}
.footer-copyright p {
	margin: 0;
	font-size: 17px;
}
.footer-copyright p a { font-size: 17px; }
.footer-box-facebook {
	padding: 0 auto;
	min-height: 565px;
	overflow: hidden;
}
.footer-bar { display: inline-block; }
.footer-designer { display: none; }


/* ------------------ OTHERS ------------------ */
.txt-comma {
	font-family: var(--primary-font);
}
.scrolling.full-height {
	margin-top: -50px;
	top:-60px;
}




