/**
color
 */
.color-666 {
  color: #666;
}

.color-black {
  color: #1b1b1b;
}

.color-gray {
  color: #878787;
}

.color-organe {
  color: #fdb813;
}

.color-red {
  color: #e50000;
}

.color-yellow {
  color: #fdba1a;
}

/**
background-color
 */
.bg-black {
  background-color: #1b1b1b;
}

.bg-gray {
  background-color: #878787;
}

.bg-organe {
  background-color: #fdb813;
}

.bg-red {
  background-color: #e50000;
}

.bg-yellow {
  background-color: #fdba1a;
}

/**
font
 */
.regular {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

/**
font size
 */
.fs-10 {
  font-size: 1rem;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-20 {
  font-size: 2rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.w-1 {
  width: 10%;
}

.w-2 {
  width: 20%;
}

.w-3 {
  width: 30%;
}

.w-4 {
  width: 40%;
}

.w-6 {
  width: 60%;
}

.w-7 {
  width: 70%;
}

.w-8 {
  width: 80%;
}

.w-9 {
  width: 90%;
}

.w-33 {
  width: 33.3333333333%;
}

.w-66 {
  width: 66%;
}

.zindex {
  z-index: 1;
}

.mg-auto {
  margin-left: auto;
  margin-right: auto;
}

.radius-50 {
  border-radius: 50%;
}

.space-nowrap {
  white-space: nowrap;
}

.image-cover {
  overflow: hidden;
}
.image-cover img,
.image-cover video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-none {
  list-style: none;
}

.location {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.bg-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pt-20 {
  padding-top: 2rem;
}

.pb-20 {
  padding-bottom: 2rem;
}

.p-20 {
  padding: 2rem;
}

.pr-20 {
  padding-right: 2rem;
}

.pl-20 {
  padding-left: 2rem;
}

.owl-carousel .owl-dots {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.owl-carousel .owl-dots .owl-dot {
  background-color: #747894;
  display: inline-block;
  width: 5rem;
  height: 0.2rem;
  margin: 5px;
  outline: none;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #fdb813;
}
.owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  align-items: center;
}
.owl-carousel .owl-nav button {
  outline: none;
  display: inline-block;
  width: 2rem;
}
.owl-carousel .owl-nav button span {
  font-size: 3rem;
  color: #666;
}
.owl-carousel .owl-nav button:hover span {
  color: #333;
}

.line-row {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-row-2 {
  -webkit-line-clamp: 2;
}

.image-scale .image-cover img {
  transform: scale(1);
  transition: all 0.7s;
}
.image-scale:hover .image-cover img {
  transform: scale(1.1);
  transition: all 0.7s;
}

.page-numbers {
  border-radius: 4px;
  width: 4rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  color: #575757;
  font-size: 1.4rem;
}
.page-numbers.current {
  color: #fff;
  background: linear-gradient(to top, #e93818, #d92707);
}

.epal-pagination-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

#backToTop {
  background: #00aa1c none repeat scroll 0 0;
  cursor: pointer;
  height: 45px;
  line-height: 45px;
  width: 45px;
  position: fixed;
  z-index: 999;
  bottom: 80px;
  right: 10px;
  display: none;
  box-shadow: 0px 0 11px 0 #999;
}

.back-to-top__icon-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.bg-opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(86, 86, 86, 0.7);
}

/*------------------------ Error 404------------------------*/
#error {
  padding: 40px 0;
  text-align: center;
}

.error_title {
  color: #000;
}

.error_title p {
  color: #ed3d3f;
  font-size: 18px;
  margin: 0;
  padding-top: 20px;
}

.error_title img {
  padding-top: 50px;
  width: 100%;
  max-width: 200px;
}

.error_bottom {
  margin-top: 15px;
}

.error_bottom a {
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  background: #ed3d3f;
  border: 1px solid #fff;
  border-radius: 40px;
  text-decoration: none;
}

/*------------------------ END Error 404------------------------*/
html {
  font-size: 10px;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
}

a,
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.menu {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

@font-face {
  font-family: "Epilogue";
  src: url(/wp-content/themes/Epal-theme/fonts/Epilogue/Epilogue-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(/wp-content/themes/Epal-theme/fonts/Manrope/Manrope-Regular.ttf);
  font-display: swap;
}
#primary .woocommerce {
  font-family: Manrope, sans-serif;
  font-size: 16px;
}
#primary .woocommerce .col-lg-5 .cart-collaterals {
  padding: 32px 24px;
  background-color: #f8f8f8;
  border-radius: 4px;
}
#primary .woocommerce .col-lg-5 .cart-collaterals .cart_totals {
  width: 100%;
}
#primary .woocommerce .col-lg-5 .cart-collaterals .cart_totals h2 {
  font-size: 24px;
  font-family: Epilogue, sans-serif;
  text-transform: uppercase;
  margin: 0;
}
#primary .woocommerce .col-lg-5 .cart-collaterals .cart_totals .shop_table {
  border: none;
}
#primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  .cart-subtotal
  th {
  padding: 27px 12px 9px;
  border-bottom: 1px solid #e9e6ed;
}
#primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  .cart-subtotal
  td {
  text-align: right;
  padding: 27px 12px 9px;
}
#primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  .order-total
  th {
  text-transform: uppercase;
  font-family: Epilogue, sans-serif;
  vertical-align: inherit;
  border-color: #d3d7de;
  border-top: 1px solid #e9e6ed;
}
#primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  .order-total
  td {
  color: #000;
  font-weight: 300;
  padding: 24px 12px 40px;
  text-align: right;
  border-color: #d3d7de;
}
#primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .wc-proceed-to-checkout
  .checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 13px 0;
  background-color: #000;
  border: 1px solid #000;
}
#primary .woocommerce .col-lg-7 .woocommerce-cart-form .shop_table {
  border: none;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .shop_table
  tbody
  .actions {
  display: flex;
  justify-content: start;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .shop_table
  tbody
  .actions
  .coupon {
  display: none;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .shop_table
  tbody
  .actions
  .button {
  color: #000;
  font-family: Epilogue, sans-serif;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item {
  padding: 24px 0;
  border-bottom: 1px solid #d3d7de;
  display: flex;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item
  .product-thumbnail {
  width: 168px;
  margin-right: 32px;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item
  .product-thumbnail
  a
  img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item
  .product-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item
  .product-info
  .product-name
  a {
  color: #172b4d;
  font-size: 16px;
  text-decoration: none;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item
  .product-info
  .price
  .amount
  bdi {
  color: #000;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item
  .product-info
  .product-quantity
  .quantity
  input {
  width: 48px !important;
  height: 32px !important;
  text-align: center;
  line-height: 30px;
  border-radius: 4px;
  border: 1px solid #d3d7de;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item
  .product-info
  .product-remove
  .remove {
  color: #000 !important;
  font-size: 14px;
  position: relative;
  padding-left: 28px;
  display: inline;
  font-weight: 400;
  font-family: Epilogue, sans-serif;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item
  .product-info
  .product-remove
  .remove::before {
  content: url(/wp-content/themes/Epal-theme/images/trash.svg);
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item
  .product-info
  .product-remove
  .remove:hover {
  background-color: unset;
}
#primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form
  .woocommerce-cart-form__cart-item:last-of-type {
  border: none;
}
body.woocommerce-cart #primary .woocommerce {
  color: #22311b;
}
body.woocommerce-cart #primary .woocommerce > .row {
  align-items: flex-start;
  row-gap: 24px;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form,
body.woocommerce-cart #primary .woocommerce .col-lg-5 .cart-collaterals {
  border: 1px solid #e3ead8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(34, 49, 27, 0.06);
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form {
  padding: 28px;
}
body.woocommerce-cart #primary .woocommerce .col-lg-5 .cart-collaterals {
  padding: 28px;
  background: #f8fbf4;
}
body.woocommerce-cart #primary .woocommerce .col-lg-5 .cart-collaterals .cart_totals h2 {
  margin-bottom: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: none;
  color: #22311b;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table {
  border-collapse: separate;
  border-spacing: 0;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  th,
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  td {
  padding: 16px 0;
  border-bottom: 1px solid #dfe7d5;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  th {
  color: #5c6d53;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  td {
  color: #22311b;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  .order-total
  th,
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .cart_totals
  .shop_table
  .order-total
  td {
  padding-top: 20px;
  border-top: 1px solid #cfd9c1;
  border-bottom: none;
  color: #22311b;
  font-size: 18px;
  font-weight: 700;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .wc-proceed-to-checkout
  .checkout-button,
body.woocommerce-cart #primary .woocommerce .woocommerce-cart-form .actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid #4f8c08;
  border-radius: 999px;
  background: #4f8c08;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-5
  .cart-collaterals
  .wc-proceed-to-checkout
  .checkout-button:hover,
body.woocommerce-cart #primary .woocommerce .woocommerce-cart-form .actions .button:hover {
  background: #437127;
  border-color: #437127;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(67, 113, 39, 0.16);
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form .shop_table {
  border: none;
}
body.woocommerce-cart #primary .woocommerce .woocommerce-cart-form__contents tbody {
  display: block;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item {
  align-items: center;
  gap: 22px;
  margin-bottom: 16px;
  padding: 20px;
  border: 1px solid #e3ead8;
  border-radius: 20px;
  background: #fbfdf8;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item:last-of-type {
  margin-bottom: 0;
  border: 1px solid #e3ead8;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item .product-thumbnail {
  width: 148px;
  margin-right: 0;
  flex: 0 0 148px;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-thumbnail
  a,
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-thumbnail
  img {
  display: block;
  width: 100%;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-thumbnail
  img {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  object-fit: cover;
  background: #fff;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item .product-info {
  flex: 1 1 auto;
  gap: 14px;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-name
  a {
  color: #22311b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-name
  a:hover {
  color: #4f8c08;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item .variation,
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item .wc-item-meta {
  margin: 0;
  color: #6b7a63;
  font-size: 13px;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item .product-price,
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item .product-quantity,
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item .product-remove {
  display: flex;
  align-items: center;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item .product-price {
  color: #4f8c08;
  font-size: 22px;
  font-weight: 700;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-price
  .amount,
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-price
  bdi {
  color: inherit;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-quantity
  .quantity
  input {
  width: 72px !important;
  height: 44px !important;
  border: 1px solid #d8e2cb;
  border-radius: 999px;
  background: #fff;
  color: #22311b;
  font-size: 16px;
  font-weight: 600;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-remove
  .remove {
  padding-left: 26px;
  color: #7c2d12 !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
body.woocommerce-cart
  #primary
  .woocommerce
  .col-lg-7
  .woocommerce-cart-form__cart-item
  .product-remove
  .remove:hover {
  color: #9a3412 !important;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form .shop_table tbody .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding-top: 4px;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form .shop_table tbody .actions .coupon {
  display: flex;
  flex: 1 1 420px;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form .shop_table tbody .actions .coupon .input-text {
  min-width: 220px;
  flex: 1 1 220px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid #d8e2cb;
  border-radius: 999px;
  background: #fff;
  color: #22311b;
}
body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form .shop_table tbody .actions > .button {
  flex: 0 0 auto;
}
body.woocommerce-cart #primary .woocommerce .cross-sells {
  margin-top: 28px;
}
body.woocommerce-cart #primary .woocommerce .cross-sells > h2 {
  margin-bottom: 18px;
  color: #22311b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 991px) {
  body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form,
  body.woocommerce-cart #primary .woocommerce .col-lg-5 .cart-collaterals {
    padding: 22px;
  }
  body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form,
  body.woocommerce-cart #primary .woocommerce .col-lg-5 .cart-collaterals {
    padding: 18px;
    border-radius: 18px;
  }
  body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item {
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
  }
  body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form__cart-item .product-thumbnail {
    width: 100%;
    max-width: 160px;
    flex-basis: auto;
  }
  body.woocommerce-cart
    #primary
    .woocommerce
    .col-lg-7
    .woocommerce-cart-form__cart-item
    .product-name
    a {
    font-size: 18px;
  }
  body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form .shop_table tbody .actions,
  body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form .shop_table tbody .actions .coupon {
    flex-direction: column;
    align-items: stretch;
  }
  body.woocommerce-cart #primary .woocommerce .col-lg-7 .woocommerce-cart-form .shop_table tbody .actions .button,
  body.woocommerce-cart
    #primary
    .woocommerce
    .col-lg-5
    .cart-collaterals
    .wc-proceed-to-checkout
    .checkout-button {
    width: 100%;
  }
}
body.woocommerce-cart #primary .wp-block-woocommerce-cart {
  margin: 0;
  color: #22311b;
}
body.woocommerce-cart #primary .wp-block-woocommerce-cart.alignwide {
  max-width: 100%;
}
body.woocommerce-cart #primary .wc-block-components-sidebar-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px;
}
body.woocommerce-cart #primary .wc-block-components-main {
  width: auto;
  max-width: none;
  min-width: 0;
  flex: 1 1 0;
  padding-right: 0;
}
body.woocommerce-cart #primary .wc-block-components-sidebar {
  width: 360px;
  max-width: 360px;
  min-width: 0;
  flex: 0 0 360px;
  padding-left: 0;
}
body.woocommerce-cart #primary .wc-block-components-main > *,
body.woocommerce-cart #primary .wc-block-components-sidebar > * {
  width: 100%;
  max-width: none;
}
body.woocommerce-cart #primary .wp-block-woocommerce-filled-cart-block {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: flex-start;
}
body.woocommerce-cart #primary .wp-block-woocommerce-cart-items-block,
body.woocommerce-cart #primary .wp-block-woocommerce-cart-totals-block,
body.woocommerce-cart #primary .wp-block-woocommerce-empty-cart-block {
  border: 1px solid #e3ead8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(34, 49, 27, 0.06);
}
body.woocommerce-cart #primary .wp-block-woocommerce-cart-items-block,
body.woocommerce-cart #primary .wp-block-woocommerce-cart-totals-block {
  padding: 28px;
}
body.woocommerce-cart #primary .wp-block-woocommerce-cart-totals-block {
  background: #f8fbf4;
}
body.woocommerce-cart #primary .wc-block-cart-items__header,
body.woocommerce-cart #primary .wc-block-cart-items th,
body.woocommerce-cart #primary .wc-block-cart-items thead {
  border: 0;
}
body.woocommerce-cart #primary .wc-block-cart-items .wc-block-cart-items__row {
  margin-bottom: 16px;
  padding: 20px;
  border: 1px solid #e3ead8;
  border-radius: 20px;
  background: #fbfdf8;
}
body.woocommerce-cart #primary .wc-block-cart-items .wc-block-cart-items__row:last-child {
  margin-bottom: 0;
}
body.woocommerce-cart #primary .wc-block-cart-item__image {
  width: 148px;
}
body.woocommerce-cart #primary .wc-block-cart-item__image img {
  border-radius: 18px;
  background: #fff;
}
body.woocommerce-cart #primary .wc-block-components-product-name,
body.woocommerce-cart #primary .wc-block-cart-item__wrap a {
  color: #22311b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}
body.woocommerce-cart #primary .wc-block-components-product-name:hover,
body.woocommerce-cart #primary .wc-block-cart-item__wrap a:hover {
  color: #4f8c08;
}
body.woocommerce-cart #primary .wc-block-cart-item__prices,
body.woocommerce-cart #primary .wc-block-components-product-price {
  color: #4f8c08;
  font-size: 22px;
  font-weight: 700;
}
body.woocommerce-cart #primary .wc-block-cart-item__quantity,
body.woocommerce-cart #primary .wc-block-components-quantity-selector {
  margin-top: 14px;
}
body.woocommerce-cart #primary .wc-block-components-quantity-selector {
  border: 1px solid #d8e2cb;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}
body.woocommerce-cart
  #primary
  .wc-block-components-quantity-selector
  .wc-block-components-quantity-selector__button,
body.woocommerce-cart
  #primary
  .wc-block-components-quantity-selector
  input {
  color: #22311b;
  min-height: 44px;
  border: 0;
  background: transparent;
}
body.woocommerce-cart #primary .wc-block-cart-item__remove-link {
  color: #7c2d12;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
}
body.woocommerce-cart #primary .wc-block-cart-item__remove-link:hover {
  color: #9a3412;
}
body.woocommerce-cart #primary .wc-block-components-sidebar .wc-block-components-panel,
body.woocommerce-cart #primary .wc-block-components-totals-wrapper,
body.woocommerce-cart #primary .wc-block-components-totals-coupon,
body.woocommerce-cart #primary .wc-block-components-totals-item {
  border-color: #dfe7d5;
}
body.woocommerce-cart #primary .wc-block-components-title,
body.woocommerce-cart #primary .wc-block-components-totals-item__label,
body.woocommerce-cart #primary .wc-block-components-panel__button,
body.woocommerce-cart #primary .wp-block-woocommerce-cart-order-summary-heading-block {
  color: #22311b;
}
body.woocommerce-cart #primary .wc-block-components-checkout-step__heading,
body.woocommerce-cart #primary .wc-block-components-title,
body.woocommerce-cart #primary .wp-block-woocommerce-cart-order-summary-heading-block,
body.woocommerce-cart #primary .wc-block-components-totals-item__label {
  font-family: "Plus Jakarta Sans", sans-serif;
}
body.woocommerce-cart #primary .wc-block-components-button,
body.woocommerce-cart #primary .wc-block-cart__submit-button,
body.woocommerce-cart #primary .wc-block-components-totals-coupon__button,
body.woocommerce-cart #primary .wc-block-grid__product-add-to-cart .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid #4f8c08;
  border-radius: 999px;
  background: #4f8c08;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
}
body.woocommerce-cart #primary .wc-block-components-button:hover,
body.woocommerce-cart #primary .wc-block-cart__submit-button:hover,
body.woocommerce-cart #primary .wc-block-components-totals-coupon__button:hover,
body.woocommerce-cart #primary .wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
  background: #437127;
  border-color: #437127;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(67, 113, 39, 0.16);
}
body.woocommerce-cart #primary .wc-block-components-text-input input,
body.woocommerce-cart #primary .wc-block-components-totals-coupon__input input,
body.woocommerce-cart #primary .wc-block-components-formatted-money-amount {
  color: #22311b;
}
body.woocommerce-cart #primary .wc-block-components-text-input input,
body.woocommerce-cart #primary .wc-block-components-totals-coupon__input input {
  min-height: 48px;
  border: 1px solid #d8e2cb;
  border-radius: 999px;
  background: #fff;
  padding: 0 18px;
}
body.woocommerce-cart #primary .wp-block-woocommerce-empty-cart-block {
  padding: 48px 32px;
  background: #f8fbf4;
}
body.woocommerce-cart #primary .wc-block-cart__empty-cart__title {
  margin: 0;
  color: #22311b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
}
body.woocommerce-cart #primary .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #eef7e4;
  color: #4f8c08;
  font-size: 34px;
}
body.woocommerce-cart #primary .wp-block-woocommerce-empty-cart-block .wp-block-separator {
  margin: 28px auto;
  border-color: #d8e2cb;
  opacity: 1;
}
body.woocommerce-cart #primary .wp-block-woocommerce-empty-cart-block > .wp-block-heading:not(.wc-block-cart__empty-cart__title) {
  margin-bottom: 24px;
  color: #22311b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__product {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  flex: 0 0 auto !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding: 18px;
  border: 1px solid #e3ead8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 49, 27, 0.05);
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__product-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__product-image {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__product-onsale {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  margin: 0;
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__product-title {
  margin-top: 14px;
  color: #22311b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__product-price {
  margin: 10px 0 0;
  color: #4f8c08;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__product-add-to-cart {
  width: 100%;
  margin-top: 16px;
}
body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__product-add-to-cart .wp-block-button__link {
  width: 100%;
  min-width: 0;
  padding: 12px 18px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  text-align: center;
}
@media (max-width: 991px) {
  body.woocommerce-cart #primary .wc-block-components-sidebar-layout {
    flex-direction: column;
    gap: 20px;
  }
  body.woocommerce-cart #primary .wc-block-components-main,
  body.woocommerce-cart #primary .wc-block-components-sidebar {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
  }
  body.woocommerce-cart #primary .wp-block-woocommerce-filled-cart-block {
    grid-template-columns: 1fr;
  }
  body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  body.woocommerce-cart #primary .wp-block-woocommerce-cart-items-block,
  body.woocommerce-cart #primary .wp-block-woocommerce-cart-totals-block,
  body.woocommerce-cart #primary .wp-block-woocommerce-empty-cart-block {
    padding: 18px;
    border-radius: 18px;
  }
  body.woocommerce-cart #primary .wc-block-cart-items .wc-block-cart-items__row {
    padding: 16px;
    border-radius: 16px;
  }
  body.woocommerce-cart #primary .wc-block-cart-item__image {
    width: 96px;
  }
  body.woocommerce-cart #primary .wc-block-components-product-name,
  body.woocommerce-cart #primary .wc-block-cart-item__wrap a,
  body.woocommerce-cart #primary .wc-block-cart__empty-cart__title {
    font-size: 24px;
  }
  body.woocommerce-cart #primary .wp-block-woocommerce-product-new .wc-block-grid__products {
    grid-template-columns: 1fr;
  }
  body.woocommerce-cart #primary .wc-block-components-button,
  body.woocommerce-cart #primary .wc-block-cart__submit-button,
  body.woocommerce-cart #primary .wc-block-components-totals-coupon__button,
  body.woocommerce-cart #primary .wc-block-grid__product-add-to-cart .wp-block-button__link {
    width: 100%;
  }
}
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-message,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-info,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  position: relative;
  margin-bottom: 20px;
  padding: 18px 20px;
  border: 1px solid #dbe7d2;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fbfef7 100%);
  box-shadow: 0 18px 36px rgba(67, 113, 39, 0.08);
  color: #22311b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-message a,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-info a,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-error a {
  color: #437127;
  text-decoration: underline;
}
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-message .button,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-info .button,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-error .button {
  float: right;
  margin: 0 0 8px 16px;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  background: linear-gradient(90deg, #4f8c08 0%, #93d500 100%);
  box-shadow: 0 14px 28px rgba(79, 140, 8, 0.18);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-message .button:hover,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-info .button:hover,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-error .button:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-message:not(.epal-woo-notice),
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-info,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  padding-left: 54px;
}
#primary
  .woocommerce
  .woocommerce-notices-wrapper
  .woocommerce-message:not(.epal-woo-notice)::before,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-info::before,
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-error::before {
  top: 20px;
  left: 20px;
  color: #437127;
}
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  border-color: rgba(233, 56, 24, 0.2);
}
#primary .woocommerce .woocommerce-notices-wrapper .woocommerce-error::before {
  color: #e93818;
}
#primary .woocommerce .woocommerce-notices-wrapper .epal-woo-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
#primary .woocommerce .woocommerce-notices-wrapper .epal-woo-notice::before {
  display: none;
}
#primary .woocommerce .woocommerce-notices-wrapper .epal-woo-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(90deg, #4f8c08 0%, #93d500 100%);
  box-shadow: 0 12px 24px rgba(79, 140, 8, 0.18);
  color: #fff;
}
#primary .woocommerce .woocommerce-notices-wrapper .epal-woo-notice__icon svg {
  width: 20px;
  height: 20px;
}
#primary .woocommerce .woocommerce-notices-wrapper .epal-woo-notice__content {
  flex: 1;
  min-width: 0;
  color: #22311b;
}
#primary .woocommerce .wc-empty-cart-message .woocommerce-info {
  border-color: #dbe7d2;
}
#primary .woocommerce .wc-empty-cart-message .woocommerce-info::before {
  top: 20px;
  left: 20px;
  color: #437127;
}
#primary .woocommerce .return-to-shop a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f8c08 0%, #93d500 100%);
  box-shadow: 0 14px 28px rgba(79, 140, 8, 0.18);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
#primary .woocommerce .return-to-shop a:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.popup-add-cart-success {
  position: fixed;
  top: 92px;
  right: 20px;
  width: min(360px, calc(100vw - 24px));
  transition: transform 0.32s ease, opacity 0.32s ease, visibility 0.32s ease;
  transform: translate3d(0, -12px, 0);
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  pointer-events: none;
}
.popup-add-cart-success[hidden] {
  display: block;
}
.popup-add-cart-success .woocommerce-message {
  position: relative;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid #dbe7d2;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fbfef7 100%);
  box-shadow: 0 18px 36px rgba(67, 113, 39, 0.08);
  color: #22311b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
.popup-add-cart-success .woocommerce-message a {
  color: #437127;
  text-decoration: underline;
}
.popup-add-cart-success .woocommerce-message .button {
  float: right;
  margin: 0 0 8px 16px;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  background: linear-gradient(90deg, #4f8c08 0%, #93d500 100%);
  box-shadow: 0 14px 28px rgba(79, 140, 8, 0.18);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.popup-add-cart-success .woocommerce-message .button:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}
.popup-add-cart-success .epal-woo-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.popup-add-cart-success .epal-woo-notice::before {
  display: none;
}
.popup-add-cart-success .epal-woo-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(90deg, #4f8c08 0%, #93d500 100%);
  box-shadow: 0 12px 24px rgba(79, 140, 8, 0.18);
  color: #fff;
}
.popup-add-cart-success .epal-woo-notice__icon img {
  display: none;
}
.popup-add-cart-success .epal-woo-notice__icon svg {
  width: 20px;
  height: 20px;
}
.popup-add-cart-success .epal-woo-notice__content {
  flex: 1;
  min-width: 0;
  color: #22311b;
}

.active-add-success {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 767px) {
  #primary .woocommerce .woocommerce-notices-wrapper .woocommerce-message .button,
  #primary .woocommerce .woocommerce-notices-wrapper .woocommerce-info .button,
  #primary .woocommerce .woocommerce-notices-wrapper .woocommerce-error .button {
    float: none;
    display: inline-flex;
    margin: 0 0 12px;
  }
  .popup-add-cart-success {
    top: 78px;
    right: 12px;
    width: calc(100vw - 24px);
  }
  .popup-add-cart-success .woocommerce-message .button {
    float: none;
    display: inline-flex;
    margin: 0 0 12px;
  }
}

#primary .woocommerce {
  font-family: Manrope, sans-serif;
  font-size: 16px;
}
#primary .woocommerce .checkout .col-lg-7 #customer_details {
  border: 1px solid #d3d7de;
  border-radius: 4px;
  margin-bottom: 20px;
}
#primary .woocommerce .checkout .col-lg-7 #customer_details .col-1,
#primary .woocommerce .checkout .col-lg-7 #customer_details .col-2 {
  float: unset;
  width: 100%;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  h3 {
  font-size: 24px;
  font-family: Epilogue, sans-serif;
  border-bottom: 1px solid #d3d7de;
  border-radius: 4px 4px 0 0;
  background-color: #f8f8f8;
  padding: 16px 40px;
  margin: 0;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper {
  padding: 24px 24px 0 24px;
  color: #6b778c;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3%;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row {
  width: 100%;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  #billing_province_field,
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  #billing_district_field,
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  #billing_ward_field {
  width: 33%;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  #billing_province_field
  .woocommerce-input-wrapper
  select,
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  #billing_district_field
  .woocommerce-input-wrapper
  select,
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  #billing_ward_field
  .woocommerce-input-wrapper
  select {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #6b778c;
  padding: 10px;
  outline: none;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  label {
  line-height: 24px;
  margin-bottom: 4px;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  label
  .required {
  display: none;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .woocommerce-input-wrapper
  .input-text {
  border: 1px solid #d3d7de;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 8px 12px;
  color: #6b778c;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .woocommerce-input-wrapper
  .select2 {
  border: 1px solid #d3d7de;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 8px 12px;
  color: #6b778c;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .woocommerce-input-wrapper
  .select2
  .selection
  .select2-selection {
  border: none;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .woocommerce-input-wrapper
  .select2
  .selection
  .select2-selection
  span {
  color: #6b778c;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-1
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .woocommerce-input-wrapper
  .select2
  .selection
  .select2-selection
  .select2-selection__arrow {
  top: 8px;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .woocommerce-additional-fields
  h3 {
  display: none;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .woocommerce-additional-fields
  .woocommerce-additional-fields__field-wrapper {
  padding: 0 24px 24px 24px;
  color: #6b778c;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .woocommerce-additional-fields
  .woocommerce-additional-fields__field-wrapper
  .form-row
  label
  .optional {
  display: none;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .woocommerce-additional-fields
  .woocommerce-additional-fields__field-wrapper
  .form-row
  .input-text {
  width: 100%;
  min-height: 80px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 16px;
  color: #6b778c;
  padding: 10px;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .wc_payment_methods {
  border: 1px solid #d3d7de;
  border-radius: 4px;
  margin: 24px;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .wc_payment_methods
  .title {
  font-size: 24px;
  font-family: Epilogue, sans-serif;
  border-bottom: 1px solid #d3d7de;
  border-radius: 4px 4px 0 0;
  background-color: #f8f8f8;
  padding: 16px 40px;
  margin: 0;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .wc_payment_methods
  .list-payment {
  padding: 24px;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .wc_payment_methods
  .list-payment
  .wc_payment_method {
  list-style: none;
  position: relative;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .wc_payment_methods
  .list-payment
  .wc_payment_method
  .payment_method_cod {
  display: none;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .wc_payment_methods
  .list-payment
  .wc_payment_method
  .input-radio {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  position: relative;
}
#primary
  .woocommerce
  .checkout
  .col-lg-7
  #customer_details
  .col-2
  .wc_payment_methods
  .list-payment
  .wc_payment_method
  label {
  margin-bottom: 20px;
}
#primary .woocommerce .post-sidebar {
  padding: 32px 24px;
  background-color: #f8f8f8;
  border-radius: 4px;
  margin-bottom: 20px;
}
#primary .woocommerce .post-sidebar #order_review_heading {
  font-size: 24px;
  font-family: Epilogue, sans-serif;
  margin-bottom: 24px;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-review-order-table {
  border: none;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-review-order-table
  tbody
  .cart_item
  .product-name
  .name {
  margin-bottom: 2rem;
  font-family: Epilogue, sans-serif;
  font-size: 18px;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-review-order-table
  tbody
  .cart_item
  .product-name
  .price {
  font-size: 14px;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-review-order-table
  tbody
  .cart_item
  .product-total {
  text-align: right;
  padding-top: 34px;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-review-order-table
  tbody
  .cart_item
  .product-total
  .product-quantity {
  width: 50px;
  font-weight: 300;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-review-order-table
  tfoot
  .cart-subtotal
  th {
  font-weight: 300;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-review-order-table
  tfoot
  .cart-subtotal
  td {
  font-weight: 300;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-review-order-table
  tfoot
  .order-total
  th {
  font-weight: 300;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-review-order-table
  tfoot
  .order-total
  td {
  font-weight: 300;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-payment
  .place-order {
  background-color: #f8f8f8;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-payment
  .place-order
  .woocommerce-terms-and-conditions-wrapper {
  display: none;
}
#primary
  .woocommerce
  .post-sidebar
  .woocommerce-checkout-review-order
  .woocommerce-checkout-payment
  .place-order
  .button {
  width: 100%;
  color: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 13px 0;
  background-color: #000;
  border: 1px solid #000;
}
#primary .woocommerce #thank-you {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 40px;
}
#primary .woocommerce #thank-you .woocommerce-notice {
  font-family: Epilogue, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}
#primary .woocommerce #thank-you .woocommerce-order-overview {
  padding: 32px;
  background: #f8f8f8;
  border-radius: 4px;
}
#primary .woocommerce #thank-you .woocommerce-order-overview .title {
  font-size: 24px;
  font-family: Epilogue, sans-serif;
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 0.5px solid #d3d7de;
}
#primary .woocommerce #thank-you .woocommerce-order-overview div {
  margin-bottom: 16px;
}
#primary .woocommerce #thank-you .woocommerce-order-overview div strong {
  float: right;
}
#primary
  .woocommerce
  #thank-you
  .woocommerce-order-overview
  .woocommerce-order-overview__total {
  padding: 30px 0;
  margin: 24px 0;
  border-bottom: 0.5px solid #d3d7de;
  border-top: 0.5px solid #d3d7de;
}
#primary .woocommerce #thank-you .woocommerce-order-details {
  display: none;
}
#primary .woocommerce #thank-you .woocommerce-customer-details {
  display: none;
}
#primary .woocommerce #thank-you .button {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
#primary .woocommerce #thank-you .button a {
  display: block;
  padding: 9px 20px;
  width: -moz-max-content;
  width: max-content;
  background: #000;
  color: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
#primary .woocommerce #thank-you .button .back-home {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

@media (max-width: 540px) {
  #primary
    .woocommerce
    .checkout
    .col-lg-7
    #customer_details
    .col-1
    .woocommerce-billing-fields
    .woocommerce-billing-fields__field-wrapper {
    display: block;
  }
  #primary
    .woocommerce
    .checkout
    .col-lg-7
    #customer_details
    .col-1
    .woocommerce-billing-fields
    .woocommerce-billing-fields__field-wrapper
    #billing_province_field,
  #primary
    .woocommerce
    .checkout
    .col-lg-7
    #customer_details
    .col-1
    .woocommerce-billing-fields
    .woocommerce-billing-fields__field-wrapper
    #billing_district_field,
  #primary
    .woocommerce
    .checkout
    .col-lg-7
    #customer_details
    .col-1
    .woocommerce-billing-fields
    .woocommerce-billing-fields__field-wrapper
    #billing_ward_field {
    width: 100%;
  }
}
@media (max-width: 389px) {
  #primary .woocommerce #thank-you .button a {
    width: 60%;
    margin: auto;
    text-align: center;
    margin-top: 10px;
  }
}
.woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0;
}
.woocommerce
  .woocommerce-MyAccount-navigation
  ul
  .woocommerce-MyAccount-navigation-link {
  list-style: none;
  border-bottom: 1px solid #ddd;
}
.woocommerce
  .woocommerce-MyAccount-navigation
  ul
  .woocommerce-MyAccount-navigation-link
  a {
  padding: 8px 15px;
  display: block;
  transition: all 0.3s;
  text-decoration: none;
  color: #000;
}
.woocommerce .woocommerce-MyAccount-navigation ul .is-active {
  color: #000;
  font-weight: 700;
}
.woocommerce
  .woocommerce-MyAccount-navigation
  ul
  .woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}
.woocommerce .woocommerce-MyAccount-content p {
  color: #000;
  font-family: Manrope, sans-serif;
}
.woocommerce .woocommerce-MyAccount-content p a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-info {
  border-top-color: #000;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-info::before {
  color: #000;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-info
  .woocommerce-Button {
  color: #000;
  font-weight: 700;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-orders-table
  tr
  .woocommerce-orders-table__header
  span {
  font-weight: 400;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-orders-table
  tbody
  .woocommerce-orders-table__row
  .woocommerce-orders-table__cell
  a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .u-column2 {
  display: none;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-Addresses
  .u-column1
  .woocommerce-Address-title
  h3 {
  font-size: 2.75rem;
  font-weight: 500;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-Addresses
  .u-column1
  .woocommerce-Address-title
  a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.woocommerce .woocommerce-MyAccount-content form h3 {
  font-size: 2.75rem;
  font-weight: 500;
}
.woocommerce
  .woocommerce-MyAccount-content
  form
  .woocommerce-address-fields
  .woocommerce-address-fields__field-wrapper
  .form-row {
  width: 100%;
}
.woocommerce
  .woocommerce-MyAccount-content
  form
  .woocommerce-address-fields
  .woocommerce-address-fields__field-wrapper
  .form-row
  label {
  line-height: 2;
}
.woocommerce
  .woocommerce-MyAccount-content
  form
  .woocommerce-address-fields
  .woocommerce-address-fields__field-wrapper
  .form-row
  .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce
  .woocommerce-MyAccount-content
  form
  .woocommerce-address-fields
  .woocommerce-address-fields__field-wrapper
  .form-row
  .woocommerce-input-wrapper
  input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #e1dfdd;
  border-radius: 3px;
}
.woocommerce
  .woocommerce-MyAccount-content
  form
  .woocommerce-address-fields
  p
  .button {
  margin-top: 16px;
  padding: 11px 16px;
  font-weight: 500;
  color: #fff;
  background: #000;
  width: 100%;
  text-transform: uppercase;
  border: 2px solid #000;
}
.woocommerce
  .woocommerce-MyAccount-content
  form
  .woocommerce-address-fields
  p
  .button:hover {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  .woocommerce-form-row {
  width: 100%;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  .woocommerce-form-row
  label {
  line-height: 2;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  .woocommerce-form-row
  input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #e1dfdd;
  border-radius: 3px;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  fieldset {
  padding: 16px;
  border-radius: 3px;
  border: 1px solid #e1dfdd;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  fieldset
  legend {
  font-size: 2.75rem;
  font-weight: 500;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  p
  .woocommerce-Button {
  margin-top: 16px;
  padding: 11px 16px;
  font-weight: 500;
  color: #fff;
  background: #000;
  width: 100%;
  text-transform: uppercase;
  border: 2px solid #000;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  p
  .woocommerce-Button:hover {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
}
.woocommerce .woocommerce-MyAccount-content .epal-favorite-products {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.woocommerce .woocommerce-MyAccount-content .epal-favorite-products__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.woocommerce .woocommerce-MyAccount-content .epal-favorite-products__title {
  margin: 0;
  color: #437127;
  font-size: 32px;
  line-height: 1.2;
}

.woocommerce
  .woocommerce-MyAccount-content
  .epal-favorite-products__description,
.woocommerce
  .woocommerce-MyAccount-content
  .epal-favorite-products__empty-description {
  margin: 0;
  color: #616161;
}

.woocommerce .woocommerce-MyAccount-content .epal-favorite-products__grid {
  margin-top: 0;
}

.woocommerce .woocommerce-MyAccount-content .epal-favorite-products__empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
  border: 1px solid #e7eddc;
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfef7 0%, #f2fee4 100%);
}

.woocommerce
  .woocommerce-MyAccount-content
  .epal-favorite-products__empty-title {
  margin: 0;
  color: #437127;
  font-size: 24px;
  line-height: 1.3;
}

.woocommerce
  .woocommerce-MyAccount-content
  .epal-favorite-products__empty-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f8c08 0%, #93d500 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.woocommerce
  .woocommerce-MyAccount-content
  .epal-favorite-products__empty-link:hover {
  color: #fff;
  filter: saturate(1.08);
}

@media (max-width: 1024px) {
  .woocommerce .woocommerce-MyAccount-content .epal-favorite-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .woocommerce .woocommerce-MyAccount-content .epal-favorite-products__title {
    font-size: 26px;
  }

  .woocommerce .woocommerce-MyAccount-content .epal-favorite-products__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .woocommerce .woocommerce-MyAccount-content .epal-favorite-products__empty {
    padding: 20px;
  }
}
.woocommerce #customer_login .u-column h2 {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
}
.woocommerce #customer_login .u-column .woocommerce-form {
  margin: 16px 0;
  border: 1px solid #e1dfdd;
  padding: 20px;
  text-align: left;
  border-radius: 5px;
}
.woocommerce
  #customer_login
  .u-column
  .woocommerce-form
  .woocommerce-form-row
  label {
  line-height: 2.5;
}
.woocommerce
  #customer_login
  .u-column
  .woocommerce-form
  .woocommerce-form-row
  input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #e1dfdd;
  border-radius: 3px;
}
.woocommerce
  #customer_login
  .u-column
  .woocommerce-form
  .woocommerce-form-row-password {
  position: relative;
}
.woocommerce
  #customer_login
  .u-column
  .woocommerce-form
  .woocommerce-form-row-password
  .epal-password-toggle {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #878787;
  appearance: none;
}
.woocommerce
  #customer_login
  .u-column
  .woocommerce-form
  .woocommerce-form-row-password
  .epal-password-toggle__icon {
  display: block;
  width: 20px;
  height: 20px;
}
.woocommerce #customer_login .u-column .woocommerce-form .form-row-checkbox {
  margin-top: 2.5rem;
}
.woocommerce
  #customer_login
  .u-column
  .woocommerce-form
  .form-row
  .woocommerce-button {
  padding: 11px 16px;
  font-weight: 500;
  color: #fff;
  background: #000;
  width: 100%;
  text-transform: uppercase;
  border: 1px solid #000;
}
.woocommerce
  #customer_login
  .u-column
  .woocommerce-form
  .woocommerce-LostPassword
  a {
  text-decoration: none;
  color: #000;
}
.woocommerce
  #customer_login
  .u-column
  .woocommerce-form
  .woocommerce-privacy-policy-text {
  display: none;
}
.woocommerce #customer_login .u-column .woocommerce-form .form-row-register {
  margin-top: 2.5rem;
}

.woocommerce-breadcrumb {
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 145%;
  letter-spacing: 1%;
  vertical-align: middle;
  color: #4f8c08 !important;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto !important;
}
.woocommerce-breadcrumb a {
  color: #bdbdbd !important;
  text-decoration: none;
}

#call-phone {
  position: fixed;
  right: 5px;
  bottom: 80px;
  z-index: 9999;
}
#call-phone .phonering-alo-phone {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#call-phone .phonering-alo-phone .phonering-alo-ph-circle {
  width: 100%;
  height: 100%;
  background: #111;
  border: 2px solid #111;
  border-radius: 50%;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
}
#call-phone .phonering-alo-phone .phonering-alo-ph-circle-fill {
  width: 85px;
  height: 85px;
  position: absolute;
  background: #111;
  border-radius: 50%;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
}
#call-phone .phonering-alo-phone .phonering-alo-ph-img-circle {
  width: 60px;
  background: #111;
  height: 60px;
  position: absolute;
  border-radius: 50%;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}
#call-phone .phonering-alo-phone .phonering-alo-ph-img-circle .link-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#call-phone .phonering-alo-phone .numberphone {
  width: 130px;
  background: #111;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(-30%, -50%);
  padding: 6px 12px;
  border-radius: 10px;
  transition:
    visibility 0s linear 0.25s,
    opacity 0.25s;
}
#call-phone .phonering-alo-phone .numberphone .link-phone {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}
#call-phone .phonering-alo-phone .numberphone .phone-arrow__icon-svg {
  position: absolute;
  right: -5px;
  top: 8px;
  width: 10px;
  height: 10px;
  color: #111;
}

@keyframes phonering-alo-circle-anim {
  0% {
    transform: rotate(0) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@keyframes phonering-alo-circle-fill-anim {
  0% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@keyframes phonering-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
#zalo {
  position: fixed;
  right: 20px;
  bottom: 175px;
  z-index: 9999;
}
#zalo .zalo-icon img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
}

.header-top {
  background: #4c7b20;
  color: #fff;
  font-size: 14px;
}
.header-top .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.topbar-left {
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  letter-spacing: 1%;
}
.topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}
.topbar-subnav {
  width: 467px;
  max-width: 100%;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  opacity: 1;
}
.header-top .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.header-top .menu li {
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
}
.header-top .menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.header-top .menu li:after {
  content: "|";
  position: absolute;
  right: -2px;
  color: rgba(255, 255, 255, 0.6);
}
.header-top .menu li:last-child:after {
  content: "";
}
.header-top .menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.header-top .menu a:hover {
  color: #e6f2d5;
}
.header-top .topbar-subnav .topbar-menu--submenu {
  gap: 16px;
  flex-wrap: nowrap;
}

.header-top .topbar-subnav .topbar-menu--submenu li {
  display: inline-flex;
  align-items: center;
  padding-right: 0;
  margin-right: 0;
}

.header-top .topbar-subnav .topbar-menu--submenu li::after {
  content: "";
}

.header-top .topbar-subnav .topbar-menu--submenu li + li::before,
.header-top .topbar-subnav.has-submenu .lang-switch::before {
  content: "";
  width: 0;
  height: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
}

.header-top .topbar-subnav .topbar-menu--submenu li + li::before {
  margin-right: 16px;
}

.header-top .topbar-subnav.has-submenu .lang-switch::before {
  margin-right: 16px;
}

.header-top .topbar-subnav .topbar-menu--submenu a,
.header-top .topbar-subnav .lang-switch__toggle,
.header-top .topbar-subnav .lang-switch .flag {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 145%;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-top .topbar-subnav .topbar-menu--submenu a {
  font-weight: 400;
}

.header-top .topbar-subnav .lang-switch {
  gap: 8px;
  flex-shrink: 0;
}

.header-top .topbar-subnav .lang-switch__toggle {
  gap: 8px;
}

.header-top .topbar-subnav .lang-switch img {
  width: 16px;
  height: 16px;
}
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 1;
}

.lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  padding: 6px 0;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.lang-switch__item {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #212121;
  font-weight: 500;
}

.lang-switch__item:hover {
  background: #f5f5f5;
}

.lang-switch__item.is-active {
  opacity: 0.6;
  pointer-events: none;
}

.lang-switch img {
  width: 16px;
  height: 16px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.lang-switch .flag {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.menu-menu {
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
}
.menu-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 0;
}
.menu-category {
  position: relative;
}
.menu-category-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #78c415;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.menu-category-btn i {
  font-size: 14px;
}
.menu-category .menu {
  list-style: none;
  margin: 10px 0 0;
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 240px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 20;
}
.menu-category:hover .menu {
  display: block;
}
.menu-category .menu li a {
  display: block;
  padding: 8px 14px;
  color: #2c2c2c;
  text-decoration: none;
}
.menu-category .menu li a:hover {
  background: #f6f6f6;
}

#menu-main .menu-active {
  flex: 1;
}
#menu-main .menu {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
#menu-main .menu > li > a {
  color: #1b1b1b;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 4px;
}
#menu-main .menu > li.active > a {
  background: #78c415;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .menu-category {
    display: none;
  }
  .header-actions {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

/* Footer */
.site-footer {
  background: #437127;
  color: #d7e4cb;
  padding: 72px 0 24px;
}

.site-footer__content {
  display: flex;
  gap: 80px;
  padding-bottom: 72px;
}

.site-footer__col--info {
  display: flex;
  gap: 32px;
  width: 100%;
}
.site-footer__col--divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.site-footer__logo {
  display: inline-flex;
  text-decoration: none;
}

.site-footer__logo img {
  display: block;
}

.site-footer__col--company {
  display: flex;
  gap: 16px;
  flex-direction: column;
  max-width: 423px !important;
  width: 100%;
}
.site-footer__col--connect {
  display: flex !important;
  gap: 32px;
  flex-direction: column;
  max-width: 423px !important;
  width: 100%;
}

.site-footer__brand-note {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 1%;
  color: #ffffff;
}

.site-footer__col-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 146%;
  letter-spacing: 1%;
  vertical-align: middle;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}

.site-footer__company-list {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0.7;
}

.site-footer__company-list li {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 1%;
  vertical-align: middle;
  color: #ffffff;
}

.site-footer__company-list li:last-child {
  margin-bottom: 0;
}

.site-footer__company-list li strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 1%;
}

.site-footer__text {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  vertical-align: middle;
  color: #d7e4cb;
}

.site-footer__socials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer__social-links {
  display: flex;
  align-items: start;
  gap: 16px;
  opacity: 0.7;
}

.site-footer__subscribe-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__socials a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.epal-svg-icon {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
}

.site-footer__icon-svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.site-footer__socials .site-footer__social-zalo {
  width: auto;
  min-width: 52px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.site-footer__subscribe {
  background: #ffffff;
  border-radius: 32px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__subscribe input {
  flex: 1;
  border: 0;
  background: transparent;
  padding:4px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #666666;
}

.site-footer__subscribe input:focus {
  outline: none;
}

.site-footer__subscribe button {
  min-width: 136px;
  border: 0;
  border-radius: 24px;
  padding: 8px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(90deg, #4f8c08 0%, #93d500 100%);
}

.site-footer__copyright {
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__copyright a {
  color: inherit;
  text-decoration: underline;
}

.site-footer__text,
.site-footer__text--subscribe,
.site-footer__social-links a {
  color: rgba(255, 255, 255, 0.94);
}

@media (max-width: 1268px) {
  .site-footer {
    padding: 56px 0 28px;
  }

  .site-footer__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    padding-bottom: 40px;
  }

  .site-footer__col--brand {
    grid-column: span 2;
  }

  .site-footer__col--connect {
    border-left: 0;
    padding-left: 0;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 44px 0 24px;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 30px;
  }

  .site-footer__col--brand,
  .site-footer__col--connect {
    grid-column: span 1;
  }

  .site-footer__logo img {
    max-width: 240px;
  }

  .site-footer__socials {
    margin: 16px 0 20px;
  }

  .site-footer__subscribe {
    flex-direction: column;
    border-radius: 24px;
    padding: 10px;
    align-items: stretch;
  }

  .site-footer__subscribe input {
    padding: 10px 12px;
    text-align: center;
  }

  .site-footer__subscribe button {
    width: 100%;
    font-size: 16px;
    padding: 12px 14px;
  }

  .site-footer__copyright {
    margin-top: 20px;
    font-size: 14px;
  }
}

#primary .woocommerce .epal-checkout-layout {
  --epal-checkout-ink: #22311b;
  --epal-checkout-brand: #437127;
  --epal-checkout-accent: #4f8c08;
  --epal-checkout-accent-soft: #93d500;
  --epal-checkout-border: #dbe7d2;
  --epal-checkout-border-strong: #c7d9ba;
  --epal-checkout-surface: #ffffff;
  --epal-checkout-surface-soft: #fbfef7;
  --epal-checkout-surface-soft-alt: #f2ffe5;
  --epal-checkout-muted: #64785a;
  margin: 0 -14px;
  align-items: flex-start;
}

#primary .woocommerce .epal-checkout-layout .epal-checkout-layout__form,
#primary .woocommerce .epal-checkout-layout .epal-checkout-sidebar {
  padding: 0 14px;
}

#primary .woocommerce .epal-checkout-form {
  margin-bottom: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#primary .woocommerce .epal-checkout-form .woocommerce-billing-fields {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--epal-checkout-border);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--epal-checkout-surface) 0%, var(--epal-checkout-surface-soft) 100%);
  box-shadow: 0 18px 36px rgba(67, 113, 39, 0.08);
  padding: 30px 28px 28px;
}

#primary .woocommerce .epal-checkout-form .woocommerce-billing-fields::before {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--epal-checkout-accent) 0%, var(--epal-checkout-accent-soft) 100%);
}

#primary .woocommerce .epal-checkout-form .woocommerce-billing-fields > h3 {
  display: none;
}

#primary .woocommerce .epal-checkout-form .woocommerce-billing-fields__field-wrapper,
#primary .woocommerce .epal-checkout-form .woocommerce-additional-fields__field-wrapper {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

#primary .woocommerce .epal-checkout-form .woocommerce-additional-fields {
  padding-top: 12px;
}

#primary .woocommerce .epal-checkout-form .form-row {
  width: 100%;
  margin: 0;
}

#primary .woocommerce .epal-checkout-form .form-row-first,
#primary .woocommerce .epal-checkout-form .form-row-last {
  width: calc(50% - 11px);
}

#primary .woocommerce .epal-checkout-form .input-text,
#primary .woocommerce .epal-checkout-form select,
#primary .woocommerce .epal-checkout-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--epal-checkout-border);
  border-radius: 14px;
  background-color: #fff;
  color: var(--epal-checkout-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: none;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#primary .woocommerce .epal-checkout-form .input-text,
#primary .woocommerce .epal-checkout-form textarea {
  padding: 11px 14px 11px 44px;
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 18px 18px;
}

#primary .woocommerce .epal-checkout-form select {
  padding: 11px 44px 11px 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23437127' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
}

#primary .woocommerce .epal-checkout-form textarea {
  min-height: 154px;
  resize: vertical;
  padding-top: 14px;
  background-position: 14px 14px;
}

#primary .woocommerce .epal-checkout-form .input-text::placeholder,
#primary .woocommerce .epal-checkout-form textarea::placeholder {
  color: rgba(100, 120, 90, 0.75);
}

#primary .woocommerce .epal-checkout-form .input-text:hover,
#primary .woocommerce .epal-checkout-form select:hover,
#primary .woocommerce .epal-checkout-form textarea:hover,
#primary .woocommerce .epal-checkout-form .input-text:focus,
#primary .woocommerce .epal-checkout-form select:focus,
#primary .woocommerce .epal-checkout-form textarea:focus {
  border-color: var(--epal-checkout-brand);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(147, 213, 0, 0.16);
}

#primary .woocommerce .epal-checkout-form .epal-checkout-field--name .input-text {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2379a55a' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3C/svg%3E");
}

#primary .woocommerce .epal-checkout-form .epal-checkout-field--phone .input-text {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2379a55a' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.35 1.78.68 2.62a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.46-1.25a2 2 0 0 1 2.11-.45c.84.33 1.72.56 2.62.68A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

#primary .woocommerce .epal-checkout-form .epal-checkout-field--email .input-text {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2379a55a' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

#primary .woocommerce .epal-checkout-form .epal-checkout-field--address .input-text {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2379a55a' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6-5.69-6-11a6 6 0 1 1 12 0c0 5.31-6 11-6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

#primary .woocommerce .epal-checkout-form .epal-checkout-field--note textarea {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2379a55a' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5a2.12 2.12 0 1 1 3 3L7 19l-4 1 1-4 12.5-12.5Z'/%3E%3C/svg%3E");
}

#primary .woocommerce .epal-checkout-form .woocommerce-invalid .input-text,
#primary .woocommerce .epal-checkout-form .woocommerce-invalid select,
#primary .woocommerce .epal-checkout-form .woocommerce-invalid textarea {
  border-color: #d92707;
  box-shadow: 0 0 0 4px rgba(233, 56, 24, 0.12);
}

#primary .woocommerce .epal-checkout-form .woocommerce-validated .input-text,
#primary .woocommerce .epal-checkout-form .woocommerce-validated select,
#primary .woocommerce .epal-checkout-form .woocommerce-validated textarea {
  border-color: #8fbe55;
}

#primary .woocommerce .epal-checkout-form #billing_country_field {
  display: none !important;
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(67, 113, 39, 0.1);
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .woocommerce-checkout-payment {
  background: transparent;
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .wc_payment_methods {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  display: grid;
  gap: 14px;
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .title {
  padding: 0;
  margin: 0 0 14px;
  border: 0;
  background: transparent;
  color: var(--epal-checkout-brand);
  font-size: 24px;
  line-height: 1.25;
  font-family: Epilogue, sans-serif;
  font-weight: 700;
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .list-payment {
  padding: 0;
  margin: 0;
  list-style: none;
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .wc_payment_method {
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--epal-checkout-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(67, 113, 39, 0.04);
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .wc_payment_method .input-radio {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--epal-checkout-brand);
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .wc_payment_method label {
  flex: 1;
  margin: 0;
  color: var(--epal-checkout-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .wc_payment_method .input-radio:checked + label {
  color: var(--epal-checkout-brand);
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .wc_payment_method .payment_box {
  flex: 0 0 100%;
  margin: 4px 0 0 30px;
  padding: 14px 16px;
  border: 1px solid var(--epal-checkout-border);
  border-radius: 14px;
  background: var(--epal-checkout-surface-soft-alt);
  font-size: 13px;
  color: var(--epal-checkout-muted);
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .wc_payment_method .payment_box::before,
#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .wc_payment_method .payment_box::after {
  display: none;
}

#primary .woocommerce .epal-checkout-form .epal-checkout-payment-methods .wc_payment_method .payment_box p {
  margin: 0;
}

#primary .woocommerce .epal-checkout-form .woocommerce-checkout-payment .place-order {
  margin-top: 20px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(67, 113, 39, 0.1);
  background: transparent;
}

#primary .woocommerce .epal-checkout-form .woocommerce-checkout-payment .place-order::before,
#primary .woocommerce .epal-checkout-form .woocommerce-checkout-payment .place-order::after {
  display: none;
}

#primary .woocommerce .epal-checkout-form .epal-checkout-required-note {
  margin: 0 0 10px;
  color: var(--epal-checkout-muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#primary .woocommerce .epal-checkout-form .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 14px;
  color: var(--epal-checkout-muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

#primary .woocommerce .epal-checkout-form .woocommerce-terms-and-conditions-wrapper a {
  color: var(--epal-checkout-brand);
  text-decoration: underline;
}

#primary .woocommerce .epal-checkout-form .epal-checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

#primary .woocommerce .epal-checkout-form .woocommerce-checkout-payment .place-order .button,
#primary .woocommerce .epal-checkout-form .epal-checkout-reset {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#primary .woocommerce .epal-checkout-form .woocommerce-checkout-payment .place-order .button {
  flex: 1 1 240px;
  max-width: none;
  border: 0;
  background: linear-gradient(90deg, var(--epal-checkout-accent) 0%, var(--epal-checkout-accent-soft) 100%);
  box-shadow: 0 14px 28px rgba(79, 140, 8, 0.18);
}

#primary .woocommerce .epal-checkout-form .woocommerce-checkout-payment .place-order .button:hover,
#primary .woocommerce .epal-checkout-form .epal-checkout-reset:hover,
#primary .woocommerce .epal-checkout-sidebar .epal-checkout-summary__continue:hover,
#primary .woocommerce .epal-checkout-sidebar .epal-checkout-summary__coupon .button:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

#primary .woocommerce .epal-checkout-form .epal-checkout-reset {
  flex: 0 1 156px;
  border: 1px solid var(--epal-checkout-border-strong);
  background: var(--epal-checkout-surface-soft-alt);
  color: var(--epal-checkout-brand);
}

#primary .woocommerce .epal-checkout-sidebar {
  position: sticky;
  top: 24px;
  padding: 0 14px;
  margin-bottom: 0;
  background: transparent;
  border-radius: 0;
}

#primary .woocommerce .epal-checkout-summary__continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-bottom: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--epal-checkout-border);
  background: var(--epal-checkout-surface-soft-alt);
  box-shadow: none;
  color: var(--epal-checkout-brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#primary .woocommerce .epal-checkout-summary__card {
  position: relative;
  overflow: hidden;
  padding: 26px 24px 22px;
  background: linear-gradient(180deg, var(--epal-checkout-surface-soft) 0%, #fff 100%);
  border: 1px solid var(--epal-checkout-border);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(67, 113, 39, 0.08);
}

#primary .woocommerce .epal-checkout-summary__card::before {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--epal-checkout-accent) 0%, var(--epal-checkout-accent-soft) 100%);
}

#primary .woocommerce .epal-checkout-summary__heading {
  margin: 0 0 16px;
  color: var(--epal-checkout-brand);
  font-size: 24px;
  line-height: 1.2;
  font-family: Epilogue, sans-serif;
  font-weight: 700;
}

#primary .woocommerce .epal-checkout-review-order .woocommerce-checkout-review-order-table {
  margin: 0;
  border: 0;
}

#primary .woocommerce .epal-checkout-review-order .woocommerce-checkout-review-order-table th,
#primary .woocommerce .epal-checkout-review-order .woocommerce-checkout-review-order-table td {
  padding: 10px 0;
  border: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

#primary .woocommerce .epal-checkout-review-order .woocommerce-checkout-review-order-table th {
  color: var(--epal-checkout-muted);
  font-weight: 600;
  text-align: left;
}

#primary .woocommerce .epal-checkout-review-order .woocommerce-checkout-review-order-table td {
  color: var(--epal-checkout-ink);
  font-weight: 700;
  text-align: right;
}

#primary .woocommerce .epal-checkout-review-order .woocommerce-checkout-review-order-table .order-total th,
#primary .woocommerce .epal-checkout-review-order .woocommerce-checkout-review-order-table .order-total td {
  padding-top: 16px;
  border-top: 1px solid var(--epal-checkout-border);
  color: var(--epal-checkout-brand);
  font-family: Epilogue, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

#primary .woocommerce .epal-checkout-summary__coupon {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--epal-checkout-border-strong);
}

#primary .woocommerce .epal-checkout-summary__coupon .input-text {
  flex: 1;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--epal-checkout-border);
  border-radius: 14px;
  background: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  color: var(--epal-checkout-ink);
}

#primary .woocommerce .epal-checkout-summary__coupon .button {
  min-width: 120px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--epal-checkout-accent) 0%, var(--epal-checkout-accent-soft) 100%);
  box-shadow: 0 14px 28px rgba(79, 140, 8, 0.18);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#primary .woocommerce .checkout .woocommerce-NoticeGroup,
#primary .woocommerce .checkout .woocommerce-error,
#primary .woocommerce .checkout .woocommerce-info,
#primary .woocommerce .checkout .woocommerce-message {
  margin-bottom: 18px;
}

#primary .woocommerce .checkout .woocommerce-error,
#primary .woocommerce .checkout .woocommerce-info,
#primary .woocommerce .checkout .woocommerce-message {
  border: 1px solid var(--epal-checkout-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(67, 113, 39, 0.06);
}

#primary .woocommerce .checkout .woocommerce-error a,
#primary .woocommerce .checkout .woocommerce-info a,
#primary .woocommerce .checkout .woocommerce-message a {
  color: var(--epal-checkout-brand);
}

@media (max-width: 767px) {
  #primary .woocommerce .epal-checkout-layout {
    margin: 0;
  }

  #primary .woocommerce .epal-checkout-layout .epal-checkout-layout__form,
  #primary .woocommerce .epal-checkout-layout .epal-checkout-sidebar {
    padding: 0;
  }

  #primary .woocommerce .epal-checkout-form .woocommerce-billing-fields {
    padding: 24px 18px 22px;
    border-radius: 20px;
  }

  #primary .woocommerce .epal-checkout-form .woocommerce-billing-fields::before {
    margin-bottom: 18px;
  }

  #primary .woocommerce .epal-checkout-form .woocommerce-billing-fields__field-wrapper,
  #primary .woocommerce .epal-checkout-form .woocommerce-additional-fields__field-wrapper {
    gap: 12px;
  }

  #primary .woocommerce .epal-checkout-form .form-row-first,
  #primary .woocommerce .epal-checkout-form .form-row-last {
    width: 100%;
  }

  #primary .woocommerce .epal-checkout-form .input-text,
  #primary .woocommerce .epal-checkout-form select,
  #primary .woocommerce .epal-checkout-form textarea {
    font-size: 14px;
  }

  #primary .woocommerce .epal-checkout-form .woocommerce-checkout-payment .place-order .button,
  #primary .woocommerce .epal-checkout-form .epal-checkout-reset {
    width: 100%;
  }

  #primary .woocommerce .epal-checkout-sidebar {
    position: static;
    margin-top: 24px;
  }

  #primary .woocommerce .epal-checkout-summary__card {
    padding: 24px 18px 20px;
    border-radius: 20px;
  }

  #primary .woocommerce .epal-checkout-summary__heading {
    font-size: 22px;
  }

  #primary .woocommerce .epal-checkout-summary__coupon {
    flex-direction: column;
  }

  #primary .woocommerce .epal-checkout-summary__coupon .button {
    width: 100%;
  }
}
