:root {
  --bg-main: #1e6136;
  --bg-white: #ffffff;
  --color-gray: #4B5563;
  --color-dark: #000;
  --color-gift: #f6ebe7;
  --color-sec: #0d0a07;
  --anImage: block;
  --color-bg: #ffdca0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
i {
  vertical-align: middle;
}
a {
  text-decoration: none;
}
/* img {
  object-fit: cover;
} */
body {
  /* background: #fef9e7; */
font-family: "EB Garamond", serif;
  font-weight: 500;
  position: relative;
  min-height: 100vh;
}

.fw-regular {
  font-weight: 400;
}
.bg-3 {
  background: #c1a38826;
}
.color-light {
  color: #F1F1F1;
}
.color-light:hover {
  color: var(--bg-main)
}
.color-gray {
  color: var(--color-gray);
}
.color-main {
  color: var(--bg-main);
}
.color-main-2 {
  color: #1e6136;
}
.text-main-2 {
  color: #FFEB3B;
}
.color-main-black {
  color: #3b2f2a;
}
.bg-main {
  background: var(--bg-main);
}
.bg-main-light {
  background: #e6f4ea;
}

.color-hover:hover {
  color: var(--bg-main) !important;
}
.bg-white-2 {
  background: #ffffffe8;
}
.bg-dark-2 {
  background: #0a0a0a;
}
.averir {
  font-family: "Avenir", sans-serif;
}
.py-64px{
  padding: 64px 0;
}
.pt-64px{
  padding-top: 64px;
}
.pb-64px{
  padding-bottom: 64px;
}
.frame {
  padding-top: 85px;
}
.frame-2 {
  padding-bottom: 85px !important;
}
.fs-7 {
  font-size: 0.85rem;
}
.fs-8 {
  font-size: 0.75rem;
}
.fs-9 {
  font-size: 0.65rem;
}
.fs-10 {
  font-size: 0.55rem;
}
.fs-16px {
  font-size: 16px;
}
.fs-46px {
  font-size: 46px;
}
.fs-64px {
  font-size: 64px;
  line-height: 1;
}
.fs-68px {
  font-size: 68px;
}
.fs-68px-2 {
  font-size: 68px;
}
.fs-78px {
  font-size: 78px;
  line-height: 1;
}
.fs-84px {
  font-size: 84px;
  line-height: 1;
}
.fs-100px {
  font-size: 100px;
}
.fs-220px {
  font-size: 220px;
  line-height: 1;
}
.fs-220px-f {
  font-size: 220px;
  line-height: 1;
}
.line-height-0 {
  line-height: 0;
}
.icon-bg-48 {
  width: 48px;
  height: 48px;
}
.logo-wb {
  max-width: 320px;
}
.lh-1-1 {
  line-height: 1.1;
}
.scroll-to-top {
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(-500px) translateX(-50%);
  background: var(--bg-main) !important;
  color: #fff !important;
}
.text-hover-main-3:hover{
  color: #000 !important;
}

.animate {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.animate.active {
  opacity: 1;
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* .scroll-to-top.active {
} */
.scroll-to-top.active {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.scroll-to-top:hover {
  border-color: var(--bg-main) !important;
  background: transparent !important;
  color: #000 !important;
  filter: brightness(0.5);
}



.ring-to-top:after {
  position: absolute;  
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: '';
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--bg-main);
  opacity: 0.5;
  animation: ring-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}

.ring-to-top:before {
  position: absolute;  
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: '';
  background-color: rgba(var(--bg-main), 0.5);
  border-radius: 50%;
  border: none;
  animation: ring-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}

.ring-to-top {
  box-sizing: border-box;
  animation: oscillate-rotation 1s infinite ease-in-out;
  transform-origin: 50% 50%;
      bottom: 100px;
    right: 25px;
    border: 1px solid var(--bg-main);
}



@keyframes ring-circle-anim {
  0% {
    transform: rotate(0) scale(1.1) skew(0deg);
    opacity: 0;
  }

  30% {
    transform: rotate(0) scale(1.5) skew(0deg);
    opacity: 0.5;
  }

  100% {
    transform: rotate(0) scale(1.7) skew(0deg);
    opacity: 0.1;
  }
}
@keyframes ring-circle-fill-anim {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
    opacity: 0.2;
  }

  50% {
    transform: rotate(0) scale(1.4) skew(0deg);
    opacity: 0.5;
  }

  100% {
    transform: rotate(0) scale(1.1) skew(0deg);
    opacity: 0.2;
  }
}

@keyframes oscillate-rotation {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}



.filter-image {
  filter: sepia(1) drop-shadow(2px 4px 0px #72594e)
}
/* end  */



.hero {
  background-color: #e6f4ea;
  padding: 100px 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--bg-main);
}
.hero p {
  font-size: 1.25rem;
  color: #3c3c3c;
}
.btn-green {
  background-color: #1e6136;
  color: white;
}
.btn-green:hover {
  background-color: #1e6136;
}
.hero-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.icon-benefit {
  font-size: 3rem;
  margin-bottom: 1rem;
}
/* 218838 */

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #1e6136;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: fit-content;
}

.animated-button i {
  position: absolute;
  width: 24px;
  fill: #1e6136;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}


.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #fff;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover i {
  fill: #1e6136;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #1e6136;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
.card{
  border-radius: 12px;
  border-radius: 12px;
border: 0px solid #E5E7EB;
background: var(--listing-downtown-directory-com-white, #FFF);
box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.10), 0px 10px 15px 0px rgba(0, 0, 0, 0.10);
}
.card-img img{
  width: 100%;
  max-height: 211px;
}
.process .time-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #1e6136;
}
.content-col-left {
  position: relative;
 
}

.content-col-left::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 0%;
  transform: translateX(-2px);
  /* transform: translateX(-50%); */
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background-color: #1e6136;
}
.content-col-left::before{
  content: '';
  position: absolute;
  top: calc(20px / 2 + 13px);
  left: 0%;
    transform: translateX(-2px);
  width: 40px;
  height: 2px;
  border-radius: 9999px;
  background-color: #1e6136;
}
.title-step-line{
  background: var(--bg-main);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  margin-left: 10px;
}
.content-col-right {
  position: relative;
}
.content-col-right::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 100%;
  transform: translateX(-2px);
  /* transform: translateX(50%); */
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background-color: #1e6136;
}
.content-col-right::before{
  content: '';
  position: absolute;
  top: calc(20px / 2 + 13px);
  left: calc(100% - 40px);
    transform: translateX(1px) ;
  width: 40px;
  height: 2px;
  border-radius: 9999px;
  background-color: #1e6136;
}
.title-step-line:nth-child(2 * n) {
  background: #611e1e;
  
  
}
.bg-home {
  position: relative;
  background: #7cd79661;
}
.bg-home::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/slider1.png) no-repeat center center;
  background-size: cover;

}
.bg-1{
  background: linear-gradient(99deg, #d4f0dc, #ffffff);
}
.animated-button-2{
  background: #1e6136;
  color: #fff;
  border: 1px solid #1e6136;
  padding: 16px 36px;
  position: relative;
  cursor: pointer; 
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button-2 .arr-1{
  opacity: 0;
  right: -25%;
}
.animated-button-2 .arr-2{
  left: 16px;
}
.animated-button-2 i{
  position: absolute;
  width: 24px;
  top: 50%;
  transform: translateY(-50%);
  
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button-2:hover .arr-1{
  opacity: 1;
  right: 16px;
}
.animated-button-2:hover .arr-2{
  opacity: 0;
  left: -25%;
}
.animated-button-2 .text{
padding-left: 16px;
padding-right: 16px;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button-2:hover .text{
  padding-left: 0;
  color: #1e6136;
}
.animated-button-2:hover {
  color: #1e6136;
  background-color: transparent;
  border-radius: 0px;
}
.animated-button-2 .circle{
  z-index: -1;
}
.animated-button-2:hover .circle{
  background-color: #fff;
  width: 500px;
  height: 220px;
  opacity: 1;
 
}
.mess-card{
  background: #d4f0dc;
  border-radius: 12px;
  padding: 20px;
}
.mess-card i{
  font-size: 5rem;
  color: var(--bg-main);
}

.animate {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.animate.active {
  opacity: 1;
  animation: fadeInUp 1s forwards;
}
.add-to-cart-button .add_to_cart_button{
   background-color: #14532d!important;             /* Nền trắng */
  color: #fff !important;                        /* Xanh đậm (tông theo nền) */
  font-weight: bold!important;    
  padding: 10px 20px!important;    
  border: 2px solid #14532d!important;    
  border-radius: 8px!important;    
  font-size: 16px!important;    
  text-align: center!important;    
  cursor: pointer!important;    
  transition: all 0.3s ease!important;    
  text-decoration: none!important;    
  display: inline-block!important;    
  line-height: normal !important;
}
.btn-orderNow{
 background-color: #ffffff!important;             /* Nền trắng */
  color: #14532d !important;                        /* Xanh đậm (tông theo nền) */
  font-weight: bold!important;    
  padding: 10px 20px!important;    
  border: 2px solid #ffffff!important;    
  border-radius: 8px!important;    
  font-size: 16px!important;    
  text-align: center!important;    
  cursor: pointer!important;    
  transition: all 0.3s ease!important;    
  text-decoration: none!important;    
  display: inline-block!important;    
  line-height: normal !important;
}
.add-to-cart-button .add_to_cart_button:hover{
  background-color: #ffffff!important;             /* Xanh nền (giống màu nền của section) */
  color: #14532d !important;    
}
.btn-orderNow:hover {
  background-color: #14532d!important;             /* Xanh nền (giống màu nền của section) */
  color: #ffffff !important;    
  border-color: #ffffff!important;    
}
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.bg-footer {
  position: relative;
  background: #1e6135b0;
}
.bg-footer::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/1.jpg) no-repeat center center;
  background-size: cover;
  
}
.slick-dots li button:before{
  font-size: 40px;
}
.box-about{
  transition: all 0.3s ease-in-out;
}
 .box-about:hover{
  background: #1e6136;
  color: #fff;
  margin-top: -10px;
}
.box-about:hover i{
  color: #fff;
}
.item-ordering{
  border: 1px solid var(--bg-main);
  border-radius: 12px;
}
.item-ordering:hover{
  background-color: #fff;
  
}
.item-ordering:hover *{
  color: var(--bg-main);
}
.img-wrapper {
width: 100%;
  height: 100%;
  /* overflow: hidden; */
}
.img-product{
  display: flex;
}
.img-product img,
 .img-cart {
 
    width: 100%;
  max-width: 300px;
    object-fit: contain;
   
}
/* .required{
  position: relative;
}
.required::after {
  content: '*';
  position: absolute;
  top: 0;
  right: -10px;
  color: red;
  font-weight: bold;
} */
.bg-promo-code,
.bg-check-billing{
  background: #d8f8e2;
  
}
.cursor-pointer {
  cursor: pointer;
}
.click-promo-code:hover {
  color: #1e6136;
}
.item-col-inner-h-full .col-inner{
    height: 100%;
}
.fa-solid.fa-quote-right{
  font-size: 5rem;
}
.u-columns.woocommerce-Addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.u-columns.woocommerce-Addresses .col-1 ,
.u-columns.woocommerce-Addresses .col-2{
  flex: 1 1 100%;
  max-width: 100%;
  padding: 0;
}
.wishlist-icon,
.absolute-footer{
  display: none;
  opacity: 0;
  overflow: hidden;
}

@media (max-width: 991.99px) {
  .process .time-line {
    left: 0;
  }
  .content-col-right::after {
    left: 0;
  }
  .content-col-right::before {
    left: 0;
  }
}
@media (max-width: 768px) {
  .process .arrow-col i {
    transform: rotate(90deg);
  }
}
@media (max-width: 446px) {
  .img-service{
    height: 400px !important;
  }
  .hero{
    padding-bottom: 46px;
  }
.hero h1 {
  font-size: 2.2rem;
}
.hero p {
  font-size: .9rem;
}
  h5.card-title {
    font-size: 1rem;
  }
  .fs-46px {
    font-size: 34px;
  }
  .content-menu {
    padding: 10px;
  }
  .title-container h1{
    font-size: 30px;
  }
  .bg-menu-1::before{
    /* transform: translate(-50%, 20%); */
    max-width: 273px;
    max-height: 302px;
    /* animation:  quay-2 420s linear infinite; */
  }
  .bg-gift,
  .bg-footer ,.bg-noti::before{
    background-attachment: scroll;
  }
  .frame {
    padding-top: 50px;
  }
  .frame-2 {
    padding-bottom: 50px !important;
  }
}
.w-fit {
  width: fit-content;
}
.h-fit {
  height: fit-content;
}

/* ----------- end */

td, th{
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
}

.cart_totals tbody tr td, .shop_table tfoot tr td, .shop_table thead tr th:last-of-type, .shop_table tr td:last-of-type, td.product-total{
  text-align: left;
}
.woocommerce-MyAccount-content .button{
  color: #fff !important;
}

.woocommerce-MyAccount-content .button:hover{
  opacity: 1 !important;
  color: #1e6136 !important;
  background: #fff !important;
  border-color: #1e6136 !important;
}
.my-account .large-3{
  max-width: 25%;
}
.product-add-to-cart a {
  background: #1e6136 !important;
  color: #fff !important;
  border-color: #1e6136 !important;
  border: 1px solid #1e6136 !important;
  text-decoration: none !important;
  padding: 10px 20px;
  border-radius: 10px;
}
.product-add-to-cart a:hover {
  background: #fff !important;
  color: #1e6136 !important;
  border-color: #1e6136 !important;
}
.btn-update-product,
.wc-proceed-to-checkout a{
  background: #1e6136 !important;
  color: #fff !important;
  border-color: #1e6136 !important;
  border: 1px solid #1e6136 !important;
  text-decoration: none !important;
  padding: 10px 20px;
  border-radius: 10px;
  line-height: 1.5 !important;
  font-size: 16px !important;
}
.button-continue-shopping{
  background:  #fff !important;
  color: #1e6136 !important;
  border-color: #1e6136 !important;
  border: 1px solid #1e6136 !important;
  text-decoration: none !important;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
}
.button-continue-shopping:hover {
  background: #1e6136 !important;
  color: #fff !important;
  border-color: #1e6136 !important;
}
.btn-update-product:hover:not(:disabled),
.wc-proceed-to-checkout a:hover {
  background: #fff !important;
  color: #1e6136 !important;
  border-color: #1e6136 !important;
  box-shadow: none !important;
}
.ux-timer.light span:nth-child(2),
.ux-timer.light span:nth-child(1){
  display: none !important;
}

.icon.button{
  opacity: 1;
}
.box-text-products .woocommerce-LoopProduct-link{
  font-size: 1.25rem;
  font-weight: 700;
}
.mobile-nav.nav.nav-left,
.woocommerce-order-overview__payment-method.method{
    display:none;
}
.product-small.box{
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
} 
.product-gallery.col.large-6{
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery.col.large-6 .product-images{
  width: 100%;
}
.checkout-sidebar #order_review_heading,
.shop_table.woocommerce-checkout-review-order-table{
  display: none;
}
 .woocommerce-billing-fields{
  border-top: 0 !important;
  margin-top: 0 !important;
 }
 .alert-success{
  background-color: #d4f0dc !important;
  color: #1e6136 !important;
  border-color: #1e6136 !important;
  padding: 10px;
  border-radius: 8px;
 }
@media screen and (max-width: 768px) {
  .product-gallery.col.large-6{
    width: 100%;
  }
 
}
@media screen and (max-width: 480px) {
 
  input[name="coupon_code"]{
    width: 318px !important;
  }
  
}