/**
 * Trailoka custom theme overrides
 *
 * Prefer SCSS source files for layout/styles. Rebuild with: npx gulp styles
 * Keep only lightweight runtime overrides here.
 */

/* Homepage scroll reveal animations */
html:has(body.page-template-template-home),
html:has(body.home) {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-section .reveal-child {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
  }

  .reveal-section.is-revealed .reveal-child {
    opacity: 1;
    transform: none;
  }

  .reveal-section.reveal-section--self {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-section.reveal-section--self.is-revealed {
    opacity: 1;
    transform: none;
  }

  .home_hero .hero-reveal-item {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  .home_hero.hero-animated .hero-reveal-item {
    animation: heroRevealUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--hero-delay, 0s);
  }
}

@keyframes heroRevealUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section .reveal-child,
  .reveal-section.reveal-section--self {
    opacity: 1;
    transform: none;
  }

  .home_hero .hero-reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* Header icon contrast */
@media (min-width: 1024px) {
  .header_main.transparent-home:not(.is-sticky) .item_right svg *,
  .header_main.transparent-home:not(.is-sticky) .item_right svg path {
    stroke: #fff;
  }

  .header_main.transparent-home:not(.is-sticky) .item_right svg path[fill]:not([fill="none"]) {
    fill: #fff;
  }
}

@media (max-width: 1023.98px) {
  .header_main.is-sticky .mobile_nav_icon .line {
    stroke: #fff;
  }

  /* Mobile header actions — more breathing room between icons */
  .header_main .right_headr {
    gap: 16px !important;
    max-width: 44% !important;
  }

  .header_main .right_headr .item_right {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
  }

  .header_main .right_headr .tour-search-trigger,
  .header_main .right_headr .cart_count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 767.98px) {
  .header_main .navigation {
    max-width: 26% !important;
  }

  .header_main .logo {
    max-width: 28% !important;
  }

  .header_main .right_headr {
    gap: 16px !important;
    max-width: 46% !important;
  }
}

/* ==========================================================
   Single tour page — responsive travel-product experience
   ========================================================== */
body.single-product {
  background: #f8faf9;
  color: #1a2421;
}

body.single-product .shop_wrap {
  padding: 22px 0 64px;
}

body.single-product .shop_wrap > .container {
  width: min(100% - 48px, 1520px);
  max-width: 1520px;
  margin-inline: auto;
}

body.single-product .shop_wrap .woocommerce-breadcrumb {
  margin: 0 0 18px;
  color: #71817b;
  font-size: 12px;
  line-height: 1.5;
}

body.single-product .shop_wrap .woocommerce-breadcrumb a {
  color: #106343;
  font-weight: 500;
}

body.single-product .product-hero-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

body.single-product .product-hero-heading__eyebrow,
body.single-product .booking-card-heading__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #148369;
  font: 600 11px/1.2 "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.single-product .shop_wrap .product_title {
  max-width: 820px;
  margin: 0;
  color: #17231f;
  font: 700 clamp(25px, 3vw, 38px)/1.16 "Poppins", sans-serif;
  letter-spacing: -0.035em;
}

body.single-product .product-hero-heading__support {
  max-width: 650px;
  margin-top: 9px;
  color: #667770;
  font: 400 13px/1.55 "Poppins", sans-serif;
}

body.single-product .shop_wrap .product_inner_wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 500px);
  align-items: start;
  gap: clamp(28px, 3vw, 44px);
}

body.single-product .product-gallery-panel,
body.single-product .shop_wrap div.product div.images,
body.single-product.woocommerce-page div.product div.images {
  width: 100% !important;
  min-width: 0;
  float: none !important;
  margin: 0 !important;
}

body.single-product .woocommerce-product-gallery {
  position: relative;
}

body.single-product .woocommerce-product-gallery__wrapper {
  overflow: hidden;
  border-radius: 20px;
  background: #e9efec;
  box-shadow: 0 1px 2px rgba(15, 46, 33, 0.04);
}

body.single-product .woocommerce-product-gallery__image a {
  display: block;
  aspect-ratio: 16 / 10;
}

body.single-product .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 35, 31, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(15, 46, 33, 0.12);
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li {
  width: auto;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0.62;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs img.flex-active,
body.single-product .woocommerce-product-gallery .flex-control-thumbs img:hover {
  border-color: #15a785;
  opacity: 1;
}

body.single-product .shop_wrap div.product div.summary,
body.single-product.woocommerce-page div.product div.summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

body.single-product .entry-summary > .wrap {
  position: sticky;
  top: 96px;
  padding: 28px !important;
  overflow: visible;
  border: 1px solid rgba(28, 59, 51, 0.1);
  border-radius: 18px !important;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 46, 33, 0.09) !important;
}

body.single-product .booking-card-heading {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8eeeb;
}

body.single-product .booking-card-heading h2 {
  margin: 0 0 6px;
  color: #17231f;
  font: 700 21px/1.25 "Poppins", sans-serif;
  letter-spacing: -0.02em;
}

body.single-product .booking-card-heading p {
  margin: 0;
  color: #71817b;
  font: 400 12px/1.5 "Poppins", sans-serif;
}

body.single-product .custom-booking-fields {
  gap: 22px !important;
}

body.single-product .custom-booking-fields .label,
body.single-product .variations .label label,
body.single-product .triloka-booking-container label {
  margin-bottom: 9px !important;
  color: #2e3e38 !important;
  font: 600 12px/1.35 "Poppins", sans-serif !important;
}

body.single-product .radio-group {
  gap: 8px !important;
}

@media (min-width: 1024px) {
  body.single-product .radio-group.package-type {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex-wrap: nowrap !important;
    gap: 8px !important;
  }

  body.single-product .radio-group.package-type .radio-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding: 8px 6px !important;
    text-align: center;
  }

  body.single-product .radio-group.package-type .radio-block span {
    font-size: 11px !important;
    line-height: 1.35 !important;
    white-space: normal;
    word-break: break-word;
  }
}

body.single-product .radio-group .radio-block {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px !important;
  overflow: hidden;
  border: 1px solid #dce5e1 !important;
  border-radius: 10px !important;
  background: #fff;
  color: #40514b;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.single-product .radio-group .radio-block:hover {
  border-color: rgba(21, 167, 133, 0.5) !important;
  background: #f7fbf9;
}

body.single-product .radio-group .radio-block:has(input:checked) {
  border-color: #15a785 !important;
  background: #edf8f4;
  box-shadow: inset 0 0 0 1px #15a785;
}

body.single-product .radio-group .radio-block input:checked + span {
  color: #106343 !important;
  font-weight: 600;
}

body.single-product .radio-group .radio-block i {
  display: none;
}

body.single-product .count_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.single-product .shop_wrap .item_count_wrap {
  display: flex;
  flex-direction: column-reverse !important;
  align-items: stretch !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 12px;
  border: 1px solid #e1e8e5;
  border-radius: 12px;
  background: #fafcfb;
}

body.single-product .item_count_wrap > span {
  min-height: 30px;
  padding: 0 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

body.single-product .shop_wrap .qty-control {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  padding: 3px !important;
  border: 1px solid #d9e3df;
  border-radius: 10px !important;
  background: #fff !important;
}

body.single-product .shop_wrap .qty-control button {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  background: #f0f6f3 !important;
  color: #106343 !important;
  line-height: 1 !important;
}

body.single-product .shop_wrap .qty-control input {
  width: 100% !important;
  height: 34px;
}

body.single-product .triloka-booking-container {
  position: relative;
  margin: 0 0 18px !important;
  padding: 14px !important;
  border: 1px solid #dfe8e4 !important;
  border-radius: 12px !important;
  background: #f7faf8 !important;
}

body.single-product #booking-date {
  width: 100% !important;
  min-height: 46px;
  padding: 11px 13px !important;
  border: 1px solid #ccd9d3 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #20312b;
  font: 500 13px/1.3 "Poppins", sans-serif;
}

body.single-product #booking-date:focus {
  border-color: #15a785 !important;
  outline: 3px solid rgba(21, 167, 133, 0.12);
}

body.single-product #booking-date[aria-invalid="true"] {
  border-color: #d55d5d !important;
  outline: 3px solid rgba(213, 93, 93, 0.1);
}

body.single-product .booking-date-error {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(190, 57, 57, 0.18);
  border-radius: 8px;
  background: #fff4f4;
  color: #a23838;
  font: 500 11px/1.4 "Poppins", sans-serif;
  box-shadow: 0 5px 14px rgba(91, 27, 27, 0.07);
  animation: bookingErrorIn 0.2s ease-out;
}

body.single-product .booking-date-error svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

@keyframes bookingErrorIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.single-product .shop_wrap .dd_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 !important;
  padding: 18px 0 4px !important;
  border-top: 1px solid #e8eeeb;
  border-bottom: 0 !important;
  color: #106343;
  font-size: 25px !important;
  letter-spacing: -0.025em;
}

body.single-product .entry-summary form.cart > .dd_price {
  margin-bottom: 12px !important;
  padding-top: 0 !important;
  border-top: 0;
}

body.single-product .booking-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 12px;
  padding: 12px 13px;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  background: #f8fbf9;
  color: #5d6e67;
  font: 400 11px/1.55 "Poppins", sans-serif;
  cursor: pointer;
}

body.single-product .booking-consent input {
  appearance: none;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  border: 1.5px solid #aebdb7;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
}

body.single-product .booking-consent input:checked {
  border-color: #15a785;
  background: #15a785
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4L19 6' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
}

body.single-product .booking-consent input:focus-visible {
  outline: 3px solid rgba(21, 167, 133, 0.16);
  outline-offset: 2px;
}

body.single-product .booking-consent a {
  color: #106343;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.single-product .shop_wrap .single_add_to_cart_button,
body.single-product #direct_cart,
body.single-product .whatsapp-chat-button {
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 10px 0 0 !important;
  border-radius: 10px !important;
  font: 600 13px/1.2 "Poppins", sans-serif !important;
}

body.single-product .shop_wrap .single_add_to_cart_button {
  border: 1px solid #106343 !important;
}

body.single-product #direct_cart {
  background: #106343;
  box-shadow: 0 7px 18px rgba(16, 99, 67, 0.18);
}

body.single-product .whatsapp-chat-button {
  min-height: 44px;
  border-width: 1px;
  gap: 10px;
}

body.single-product .yith-add-to-wishlist-button-block--single {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 10px 0 0;
  border: 1px solid #e0e7e4;
  box-shadow: none;
}

body.single-product .pay_methords {
  margin-top: 18px;
  padding-top: 16px;
}

body.single-product .pay_methords svg {
  max-width: 190px;
  height: auto;
}

body.single-product table.variations,
body.single-product table.variations tbody,
body.single-product table.variations tr,
body.single-product table.variations th,
body.single-product table.variations td {
  display: block;
  width: 100%;
}

body.single-product table.variations {
  margin: 0 0 18px;
}

body.single-product table.variations tr + tr {
  margin-top: 14px;
}

body.single-product table.variations th {
  padding: 0;
  text-align: left;
}

body.single-product table.variations td {
  position: relative;
  padding: 0;
}

body.single-product table.variations .tl-select__trigger,
body.single-product table.variations select {
  min-height: 46px;
  border-color: #d7e2dd;
  border-radius: 10px;
}

body.single-product table.variations .reset_variations {
  display: inline-block;
  margin-top: 7px;
  color: #6b7c76;
  font: 500 11px/1.3 "Poppins", sans-serif;
}

body.single-product .woocommerce-variation-description,
body.single-product .woocommerce-variation-availability {
  margin-bottom: 10px;
  color: #65766f;
  font: 400 12px/1.55 "Poppins", sans-serif;
}

body.single-product .woocommerce-variation-price {
  margin-bottom: 12px;
  color: #106343;
  font: 700 20px/1.3 "Poppins", sans-serif;
}

body.single-product .product_info_wrapper {
  width: calc(100% - 544px);
  margin-top: 42px;
}

body.single-product .shop_wrap .package {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-bottom: 38px;
}

body.single-product .shop_wrap .package .package_info_item {
  min-width: 0;
  padding: 14px !important;
  border: 1px solid #e0e8e4;
  border-radius: 12px !important;
  background: #fff;
}

body.single-product .package_info_item .icon {
  flex: 0 0 auto;
  color: #148369;
}

body.single-product .package_info_item .icon svg {
  width: 21px;
  height: 21px;
}

body.single-product .package_info_item .content span {
  color: #7b8984 !important;
  font-size: 10px !important;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

body.single-product .package_info_item .content h6 {
  margin-top: 4px !important;
  color: #20312b !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

body.single-product .shop_wrap .package_infomations {
  gap: 0;
}

body.single-product .package_infomations > .infor_item {
  padding: 30px 0;
  border-top: 1px solid #dfe7e3;
}

body.single-product .package_infomations > .infor_item:first-child {
  border-top: 0;
  padding-top: 0;
}

body.single-product .shop_wrap .package_infomations h3 {
  margin-bottom: 12px;
  color: #17231f;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

body.single-product .tl-markdown-content {
  color: #5e6f68;
  font: 400 14px/1.75 "Poppins", sans-serif;
}

body.single-product .tl-markdown-content > * + * {
  margin-top: 12px;
}

body.single-product .tl-markdown-content p {
  margin: 0 0 12px;
  color: #5e6f68;
  font: 400 14px/1.75 "Poppins", sans-serif;
}

body.single-product .tl-markdown-content p:last-child {
  margin-bottom: 0;
}

body.single-product .tl-markdown-content .tl-info-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 4px;
}

body.single-product .tl-markdown-content .tl-info-row {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #e5ece8;
  border-radius: 10px;
  background: #f8fbf9;
  color: #3f524b;
  font-size: 13px;
  line-height: 1.6;
}

body.single-product .tl-markdown-content .tl-info-row strong {
  display: inline-block;
  margin-right: 4px;
  color: #17231f;
  font-weight: 600;
}

body.single-product .tl-markdown-content h4.tl-content-label,
body.single-product .tl-markdown-content h4.tl-content-subtitle {
  margin: 0 0 8px;
  color: #17231f;
  font: 600 15px/1.4 "Poppins", sans-serif;
}

body.single-product .tl-markdown-content .tl-content-subtitle {
  margin-top: 2px;
  padding-left: 12px;
  border-left: 3px solid #15a785;
}

body.single-product .tl-markdown-content .tl-content-block {
  padding: 12px 0 4px;
  border-bottom: 1px solid #eef3f0;
}

body.single-product .tl-markdown-content .tl-content-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

body.single-product .tl-markdown-content ul.tl-content-list,
body.single-product .tl-markdown-content ol {
  margin: 0 0 14px;
  padding-left: 22px;
  list-style: disc;
}

body.single-product .tl-markdown-content ol {
  list-style: decimal;
}

body.single-product .tl-markdown-content ul.tl-content-list {
  padding-left: 0;
  list-style: none;
}

body.single-product .tl-markdown-content ul.tl-content-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: #5e6f68;
}

body.single-product .tl-markdown-content ul.tl-content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #15a785;
}

body.single-product .tl-markdown-content ul.tl-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}

body.single-product .tl-markdown-content ul.tl-highlight-list li {
  margin: 0;
  padding: 7px 12px;
  border: 1px solid #dce7e2;
  border-radius: 999px;
  background: #fff;
  color: #3f524b;
  font-size: 13px;
  line-height: 1.35;
}

body.single-product .tl-markdown-content h2,
body.single-product .tl-markdown-content h3,
body.single-product .tl-markdown-content h4,
body.single-product .tl-markdown-content h5 {
  color: #17231f;
  font-weight: 600;
  line-height: 1.35;
  margin: 16px 0 8px;
}

body.single-product .tl-markdown-content h2 {
  font-size: 20px;
}

body.single-product .tl-markdown-content h3 {
  font-size: 17px;
}

body.single-product .tl-markdown-content h4 {
  font-size: 15px;
}

body.single-product .tl-markdown-content strong,
body.single-product .tl-markdown-content b {
  color: #17231f;
  font-weight: 600;
}

body.single-product .tl-markdown-content a {
  color: #148369;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.single-product .tl-markdown-content blockquote {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 3px solid #15a785;
  border-radius: 0 8px 8px 0;
  background: #f3faf7;
  color: #3f524b;
}

body.single-product .pk_info .pk_info__intro {
  margin-bottom: 18px;
  color: #148369;
  font-weight: 500;
}

body.single-product .pk_info .pk_info__intro p {
  color: #148369;
}

body.single-product .package_infomations p,
body.single-product .product_info,
body.single-product .product_info p,
body.single-product .product_info li,
body.single-product .notes-list li {
  color: #5e6f68;
  font: 400 14px/1.75 "Poppins", sans-serif;
}

body.single-product .product_info p {
  margin-bottom: 14px;
}

body.single-product .shop_wrap .wrap_pac {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.single-product .shop_wrap .wrap_pac .item_package {
  padding: 20px !important;
  border: 1px solid #dce7e2 !important;
  border-radius: 14px !important;
  box-shadow: 0 3px 14px rgba(15, 46, 33, 0.04);
}

body.single-product .wrap_pac .item_package h2 {
  margin: 8px 0 14px !important;
  color: #106343;
  font-size: 28px !important;
  line-height: 1.2 !important;
}

body.single-product .notes-list {
  padding-left: 20px !important;
}

body.single-product .notes-list li {
  margin-bottom: 8px;
}

body.single-product .related.products {
  width: 100%;
  margin-top: 68px !important;
  padding-top: 38px;
  border-top: 1px solid #dfe7e3;
}

body.single-product .related.products > h2 {
  margin-bottom: 20px !important;
  color: #17231f !important;
  font-size: 24px !important;
  letter-spacing: -0.02em;
}

body.single-product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px !important;
}

body.single-product .related.products ul.products::before,
body.single-product .related.products ul.products::after {
  display: none !important;
}

body.single-product .related.products ul.products .package-card {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid #e0e8e4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(15, 46, 33, 0.045);
}

body.single-product .related.products .card-image {
  height: auto !important;
  aspect-ratio: 16 / 10;
}

body.single-product .related.products .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.single-product .related.products .card-content {
  gap: 10px !important;
  padding: 14px !important;
}

body.single-product .related.products .card-content h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: #20312b !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.single-product .related.products .short-desc {
  display: none;
}

body.single-product .related.products .card-footer {
  gap: 8px;
}

body.single-product .related.products .price_wrap {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 0 !important;
}

body.single-product .related.products .price_wrap i {
  font-size: 10px !important;
  line-height: 1.4 !important;
}

body.single-product .product-mobile-booking-bar {
  display: none;
}

@media (min-width: 768px) {
  body.single-product .entry-summary form.cart {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 46px;
    gap: 8px;
    align-items: stretch;
  }

  body.single-product .entry-summary form.cart > .dd_price,
  body.single-product .entry-summary form.cart > .custom-booking-fields,
  body.single-product .entry-summary form.cart > .triloka-booking-container,
  body.single-product .entry-summary form.cart > .booking-consent,
  body.single-product .entry-summary form.cart > .quantity,
  body.single-product .entry-summary form.cart > .whatsapp-chat-button {
    grid-column: 1 / -1;
  }

  body.single-product .entry-summary form.cart > .single_add_to_cart_button {
    grid-column: 1;
  }

  body.single-product .entry-summary form.cart > .dd_price {
    grid-row: 1;
  }

  body.single-product .entry-summary form.cart > .triloka-booking-container {
    grid-row: 2;
  }

  body.single-product .entry-summary form.cart > .custom-booking-fields {
    grid-row: 3;
  }

  body.single-product .entry-summary form.cart > .booking-consent {
    grid-row: 4;
  }

  body.single-product .entry-summary form.cart > #direct_cart {
    grid-column: 2;
  }

  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single {
    grid-column: 3;
  }

  body.single-product .entry-summary form.cart > .single_add_to_cart_button,
  body.single-product .entry-summary form.cart > #direct_cart,
  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single {
    grid-row: 6;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    margin: 0 !important;
  }

  body.single-product .entry-summary form.cart > .single_add_to_cart_button,
  body.single-product .entry-summary form.cart > #direct_cart {
    gap: 7px;
    justify-content: center;
    padding: 8px 10px !important;
    font-size: 11px !important;
    white-space: nowrap;
  }

  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 10px;
  }

  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single a,
  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 0 !important;
  }

  body.single-product .entry-summary form.cart > .whatsapp-chat-button {
    grid-row: 5;
    margin-top: 0 !important;
  }
}

@media (min-width: 1024px) {
  body.single-product .shop_wrap div.product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 500px);
    column-gap: clamp(28px, 3vw, 44px);
    align-items: start;
  }

  body.single-product .shop_wrap div.product::before,
  body.single-product .shop_wrap div.product::after {
    display: none;
    content: none;
  }

  body.single-product .product-hero-heading {
    grid-column: 1 / -1;
  }

  body.single-product .shop_wrap .product_inner_wrap {
    display: contents;
  }

  body.single-product .product-gallery-panel {
    grid-column: 1;
    grid-row: 2;
  }

  body.single-product .shop_wrap div.product .entry-summary {
    position: sticky;
    top: 88px;
    z-index: 5;
    grid-column: 2;
    grid-row: 2 / span 3;
    align-self: start;
  }

  body.single-product .entry-summary > .wrap {
    position: static;
    top: auto;
  }

  body.single-product .product_info_wrapper {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    margin-top: 32px;
  }

  body.single-product .related.products {
    grid-column: 1;
    grid-row: 4;
    min-width: 0;
  }
}

.single-product .flatpickr-calendar {
  border: 1px solid rgba(28, 59, 51, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(15, 46, 33, 0.18);
  font-family: "Poppins", sans-serif;
}

.single-product .flatpickr-day.selected,
.single-product .flatpickr-day.startRange,
.single-product .flatpickr-day.endRange {
  border-color: #15a785;
  background: #15a785;
}

.single-product .flatpickr-day:hover {
  border-color: #edf8f4;
  background: #edf8f4;
}

@media (min-width: 1024px) and (max-width: 1199.98px) {
  body.single-product .shop_wrap div.product {
    grid-template-columns: minmax(0, 1fr) 400px;
    column-gap: 28px;
  }

  body.single-product .product_info_wrapper {
    width: 100%;
  }

  body.single-product .entry-summary > .wrap {
    padding: 22px !important;
  }

  body.single-product .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023.98px) {
  body.single-product {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  body.single-product .shop_wrap {
    padding: 16px 0 40px;
  }

  body.single-product .shop_wrap > .container {
    width: min(100% - 24px, 760px);
  }

  body.single-product .shop_wrap .woocommerce-breadcrumb {
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.single-product .product-hero-heading {
    margin-bottom: 14px;
  }

  body.single-product .product-hero-heading__support {
    display: none;
  }

  body.single-product .shop_wrap .product_title {
    font-size: clamp(22px, 6vw, 30px);
  }

  body.single-product .shop_wrap .product_inner_wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  body.single-product .product-gallery-panel,
  body.single-product .shop_wrap div.product div.images,
  body.single-product .shop_wrap div.product div.summary,
  body.single-product.woocommerce-page div.product div.images,
  body.single-product.woocommerce-page div.product div.summary {
    width: 100% !important;
  }

  body.single-product .woocommerce-product-gallery__wrapper {
    border-radius: 16px;
  }

  body.single-product .entry-summary > .wrap {
    position: static;
    top: auto;
    padding: 20px !important;
    border-radius: 16px !important;
    box-shadow: 0 5px 22px rgba(15, 46, 33, 0.07) !important;
  }

  body.single-product .product_info_wrapper {
    width: 100%;
    margin-top: 32px;
  }

  body.single-product .shop_wrap .package {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: -4px;
    margin-bottom: 28px !important;
    padding: 0 4px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.single-product .shop_wrap .package::-webkit-scrollbar {
    display: none;
  }

  body.single-product .shop_wrap .package .package_info_item {
    flex: 0 0 min(72vw, 168px) !important;
    width: min(72vw, 168px) !important;
    min-width: min(72vw, 168px) !important;
    max-width: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.single-product .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.single-product .product-mobile-booking-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 72px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(28, 59, 51, 0.1);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 28px rgba(15, 46, 33, 0.1);
    backdrop-filter: blur(12px);
  }

  body.single-product .product-mobile-booking-bar__price {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: #75847e;
    font: 500 10px/1.2 "Poppins", sans-serif;
  }

  body.single-product .product-mobile-booking-bar__price strong {
    margin-top: 3px;
    overflow: hidden;
    color: #106343;
    font-size: 17px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.single-product .product-mobile-booking-bar__button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: #106343;
    color: #fff;
    font: 600 13px/1 "Poppins", sans-serif;
    box-shadow: 0 6px 16px rgba(16, 99, 67, 0.2);
  }

  body.tl-select-open.single-product .product-mobile-booking-bar,
  body.mobile-nav-open.single-product .product-mobile-booking-bar {
    pointer-events: none;
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  body.single-product .shop_wrap > .container {
    width: min(100% - 16px, 600px);
  }

  body.single-product .product-hero-heading__eyebrow {
    margin-bottom: 5px;
    font-size: 9px;
  }

  body.single-product .woocommerce-product-gallery__image a {
    aspect-ratio: 4 / 3;
  }

  body.single-product .woocommerce-product-gallery .flex-control-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    margin-top: 8px;
  }

  body.single-product .booking-card-heading {
    margin-bottom: 18px;
  }

  body.single-product .booking-card-heading h2 {
    font-size: 19px;
  }

  body.single-product .entry-summary form.cart {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 46px;
    gap: 8px;
    align-items: stretch;
  }

  body.single-product .entry-summary form.cart > .custom-booking-fields,
  body.single-product .entry-summary form.cart > .dd_price,
  body.single-product .entry-summary form.cart > .triloka-booking-container,
  body.single-product .entry-summary form.cart > .booking-consent,
  body.single-product .entry-summary form.cart > .quantity,
  body.single-product .entry-summary form.cart > .whatsapp-chat-button {
    grid-column: 1 / -1;
  }

  body.single-product .entry-summary form.cart > .single_add_to_cart_button {
    grid-column: 1;
  }

  body.single-product .entry-summary form.cart > .dd_price {
    grid-row: 1;
  }

  body.single-product .entry-summary form.cart > .triloka-booking-container {
    grid-row: 2;
  }

  body.single-product .entry-summary form.cart > .custom-booking-fields {
    grid-row: 3;
  }

  body.single-product .entry-summary form.cart > .booking-consent {
    grid-row: 4;
  }

  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single {
    grid-column: 3;
  }

  body.single-product .entry-summary form.cart > #direct_cart {
    grid-column: 2;
  }

  body.single-product .entry-summary form.cart > .single_add_to_cart_button,
  body.single-product .entry-summary form.cart > #direct_cart,
  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single {
    grid-row: 6;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    margin: 0 !important;
  }

  body.single-product .entry-summary form.cart > .single_add_to_cart_button,
  body.single-product .entry-summary form.cart > #direct_cart {
    gap: 7px;
    padding: 8px 10px !important;
    font-size: 11px !important;
    white-space: nowrap;
  }

  body.single-product .entry-summary form.cart > .single_add_to_cart_button svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 10px;
  }

  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single a,
  body.single-product .entry-summary form.cart > .yith-add-to-wishlist-button-block--single button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 0 !important;
  }

  body.single-product .entry-summary form.cart > .whatsapp-chat-button {
    grid-row: 5;
    margin-top: 0 !important;
  }

  body.single-product .count_wrap {
    grid-template-columns: 1fr;
  }

  body.single-product .shop_wrap .item_count_wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    grid-template-areas: "label controls";
    align-items: center !important;
  }

  body.single-product .item_count_wrap > span {
    grid-area: label;
    min-height: 0;
  }

  body.single-product .item_count_wrap .qty-control {
    grid-area: controls;
  }

  body.single-product .shop_wrap .package .package_info_item {
    flex: 0 0 min(78vw, 170px) !important;
    width: min(78vw, 170px) !important;
    min-width: min(78vw, 170px) !important;
  }

  body.single-product .package_infomations > .infor_item {
    padding: 24px 0;
  }

  body.single-product .shop_wrap .package_infomations h3 {
    font-size: 20px;
  }

  body.single-product .shop_wrap .wrap_pac {
    grid-template-columns: 1fr;
  }

  body.single-product .related.products {
    margin-top: 44px !important;
    padding-top: 28px;
  }

  body.single-product .related.products ul.products {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin-right: -8px !important;
    padding: 0 8px 10px 0 !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scrollbar-width: none;
  }

  body.single-product .related.products ul.products::-webkit-scrollbar {
    display: none;
  }

  body.single-product .related.products ul.products .package-card {
    flex: 0 0 min(78vw, 290px) !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.single-product .related.products .card-content {
    padding: 13px !important;
  }

  body.single-product .product-mobile-booking-bar__button {
    padding-inline: 16px;
  }

  .single-product .flatpickr-calendar {
    width: min(328px, calc(100vw - 20px));
  }

  .single-product .flatpickr-days,
  .single-product .dayContainer {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  body.single-product .shop_wrap .item_count_wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "controls";
  }

  body.single-product .product-mobile-booking-bar__button {
    padding-inline: 12px;
    font-size: 12px;
  }

  body.single-product .entry-summary form.cart {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 42px;
    gap: 6px;
  }

  body.single-product .entry-summary form.cart > .single_add_to_cart_button,
  body.single-product .entry-summary form.cart > #direct_cart {
    padding-inline: 6px !important;
    font-size: 10px !important;
  }

  body.single-product .entry-summary form.cart > .single_add_to_cart_button svg {
    display: none;
  }
}

/* ==========================================================
   Wishlist page — card grid layout
   ========================================================== */
body.woocommerce-wishlist.page-default {
  background: #f8faf9;
}

body.page-default--wishlist .page-default__content {
  width: min(100%, 1240px);
  padding: clamp(24px, 4vw, 36px);
  border-color: #e5ece8;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(15, 46, 33, 0.06);
}

body.woocommerce-wishlist .wishlist-title-container {
  display: none !important;
}

body.woocommerce-wishlist .triloka-wishlist-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.woocommerce-wishlist .triloka-wishlist-grid .wishlist-card.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(28, 59, 51, 0.06);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 46, 33, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

@media (min-width: 1024px) {
  body.woocommerce-wishlist .triloka-wishlist-grid .wishlist-card.package-card:hover {
    transform: translateY(-3px);
    border-color: rgba(21, 167, 133, 0.16);
    box-shadow: 0 12px 32px rgba(15, 46, 33, 0.09);
  }
}

body.woocommerce-wishlist .wishlist-card__remove {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
}

body.woocommerce-wishlist .wishlist-card__remove .remove_from_wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 8px rgba(15, 46, 33, 0.12);
  color: #d64545 !important;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}

body.woocommerce-wishlist .wishlist-card__remove .remove_from_wishlist:hover {
  background: #fff;
  color: #b52f2f !important;
}

body.woocommerce-wishlist .triloka-wishlist-grid .card-image,
body.woocommerce-wishlist .triloka-wishlist-grid .product-thumbnail {
  width: 100% !important;
  max-width: none !important;
}

body.woocommerce-wishlist .triloka-wishlist-grid .card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f0;
}

body.woocommerce-wishlist .triloka-wishlist-grid .card-image a {
  display: block;
  height: 100%;
}

body.woocommerce-wishlist .triloka-wishlist-grid .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

body.woocommerce-wishlist .triloka-wishlist-grid .wishlist-card:hover .card-image img {
  transform: scale(1.03);
}

body.woocommerce-wishlist .triloka-wishlist-grid .card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
}

body.woocommerce-wishlist .triloka-wishlist-grid .product-name {
  margin: 0;
}

body.woocommerce-wishlist .triloka-wishlist-grid .product-name a {
  color: #17231f !important;
  font: 600 15px/1.35 "Poppins", sans-serif;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

body.woocommerce-wishlist .triloka-wishlist-grid .product-name a:hover {
  color: #148369 !important;
}

body.woocommerce-wishlist .triloka-wishlist-grid .product_infor_du {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #7b8984;
  font: 400 12px/1.4 "Poppins", sans-serif;
}

body.woocommerce-wishlist .triloka-wishlist-grid .product_infor_du svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

body.woocommerce-wishlist .triloka-wishlist-grid .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

body.woocommerce-wishlist .triloka-wishlist-grid .price_wrap {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

body.woocommerce-wishlist .triloka-wishlist-grid .price_wrap .price {
  color: #106343 !important;
  font: 700 18px/1.2 "Poppins", sans-serif;
  letter-spacing: -0.01em;
}

body.woocommerce-wishlist .triloka-wishlist-grid .price_wrap .price .woocommerce-Price-amount {
  color: inherit !important;
  font: inherit !important;
}

body.woocommerce-wishlist .triloka-wishlist-grid .price_wrap i {
  color: #8a9892;
  font: 400 11px/1.3 "Poppins", sans-serif;
  font-style: normal;
}

body.woocommerce-wishlist .triloka-wishlist-grid .wishlist-in-stock,
body.woocommerce-wishlist .triloka-wishlist-grid .wishlist-out-of-stock {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  font: 600 10px/1.2 "Poppins", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.woocommerce-wishlist .triloka-wishlist-grid .wishlist-in-stock {
  background: #edf8f4;
  color: #148369;
}

body.woocommerce-wishlist .triloka-wishlist-grid .wishlist-out-of-stock {
  background: #fff0f0;
  color: #c0392b;
}

body.woocommerce-wishlist .triloka-wishlist-grid .product-add-to-cart {
  flex: 0 0 auto;
}

body.woocommerce-wishlist .triloka-wishlist-grid .product-add-to-cart .button,
body.woocommerce-wishlist .triloka-wishlist-grid .product-add-to-cart .tl-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0 !important;
  white-space: nowrap;
}

body.woocommerce-wishlist .triloka-wishlist-grid .wishlist-empty {
  grid-column: 1 / -1;
  padding: 56px 24px;
  border: 1px dashed #dce7e2;
  border-radius: 16px;
  background: #f8fbf9;
  color: #7b8984;
  font: 500 15px/1.6 "Poppins", sans-serif;
  text-align: center;
}

body.woocommerce-wishlist .triloka-wishlist-grid .wishlist-pagination {
  grid-column: 1 / -1;
  padding: 24px 0 0;
  text-align: center;
}

body.woocommerce-wishlist .wishlist-card__checkbox {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

body.woocommerce-wishlist .yith_wcwl_wishlist_footer,
body.woocommerce-wishlist .yith-wcwl-share {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dfe7e3;
}

body.woocommerce-wishlist .yith-wcwl-share-title {
  margin: 0 0 12px;
  color: #17231f;
  font: 600 14px/1.4 "Poppins", sans-serif;
}

body.woocommerce-wishlist .yith-wcwl-share ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.woocommerce-wishlist .yith-wcwl-share ul li {
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-wishlist .yith-wcwl-share ul li a,
body.woocommerce-wishlist .yith-wcwl-share .share-button a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dce7e2;
  border-radius: 50%;
  background: #fff;
  color: #5e6f68 !important;
  text-decoration: none !important;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

body.woocommerce-wishlist .yith-wcwl-share ul li a:hover,
body.woocommerce-wishlist .yith-wcwl-share .share-button a:hover {
  border-color: rgba(21, 167, 133, 0.45);
  background: #f7fbf9;
  color: #148369 !important;
}

@media (max-width: 1023.98px) {
  body.woocommerce-wishlist .triloka-wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639.98px) {
  body.page-default--wishlist .page-default__hero {
    min-height: 220px;
    padding: 56px 0 88px;
  }

  body.page-default--wishlist .page-default__hero h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  body.page-default--wishlist .page-default__content {
    margin-top: -52px;
    padding: 20px 16px 24px;
    border-radius: 16px;
  }

  body.woocommerce-wishlist .triloka-wishlist-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.woocommerce-wishlist .triloka-wishlist-grid .card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  body.woocommerce-wishlist .triloka-wishlist-grid .product-add-to-cart .button,
  body.woocommerce-wishlist .triloka-wishlist-grid .product-add-to-cart .tl-btn {
    width: 100%;
  }
}

/* ==========================================================
   Wishlist — YITH default template, lightly restyled
   (uses the plugin's own markup; we only moderate the look)
   ========================================================== */
body.woocommerce-wishlist .wishlist_table {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse !important;
  background: transparent !important;
}

/* Mobile / responsive list: turn each row into a clean card */
body.woocommerce-wishlist .wishlist_table.mobile {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 0 !important;
  list-style: none !important;
}

body.woocommerce-wishlist .wishlist_table.mobile > li {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 14px 16px !important;
  background: #fff !important;
  border: 1px solid #e8eeeb !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 10px rgba(15, 46, 33, 0.05) !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .item-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .product-thumbnail {
  flex: 0 0 auto !important;
  width: 64px !important;
  margin: 0 !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .product-thumbnail img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 12px !important;
  object-fit: cover !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .item-details {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .product-name h3 {
  margin: 0 !important;
  font: 600 15px/1.35 "Poppins", sans-serif !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .product-name a {
  color: #173d38 !important;
  text-decoration: none !important;
}

/* Price mini-table inside the card */
body.woocommerce-wishlist .wishlist_table.mobile .item-details-table {
  margin: 6px 0 0 !important;
  border: 0 !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .item-details-table td {
  padding: 0 !important;
  border: 0 !important;
  vertical-align: middle !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .item-details-table .label {
  padding-right: 6px !important;
  color: #8a9691 !important;
  font: 600 10px/1.4 "Poppins", sans-serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.woocommerce-wishlist .wishlist_table.mobile .item-details-table .value,
body.woocommerce-wishlist .wishlist_table.mobile .item-details-table .value .amount {
  color: #106343 !important;
  font: 700 15px/1.3 "Poppins", sans-serif !important;
}

/* Bottom row: stock pill + add-to-cart + remove */
body.woocommerce-wishlist .wishlist_table.mobile .additional-info-wrapper {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .additional-info {
  margin: 0 !important;
  border: 0 !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .additional-info td {
  padding: 0 !important;
  border: 0 !important;
}

body.woocommerce-wishlist .wishlist_table.mobile .additional-info .label {
  display: none !important;
}

/* Stock pills (both layouts) */
body.woocommerce-wishlist .wishlist-in-stock,
body.woocommerce-wishlist .wishlist-out-of-stock {
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  font: 600 10px/1.2 "Poppins", sans-serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.woocommerce-wishlist .wishlist-in-stock {
  background: #edf8f4 !important;
  color: #148369 !important;
}

body.woocommerce-wishlist .wishlist-out-of-stock {
  background: #fff0f0 !important;
  color: #c0392b !important;
}

/* Add-to-cart / Book Now button (both layouts) */
body.woocommerce-wishlist .product-add-to-cart {
  margin: 0 !important;
}

body.woocommerce-wishlist .product-add-to-cart .button,
body.woocommerce-wishlist .product-add-to-cart .tl-btn,
body.woocommerce-wishlist .product-add-to-cart a.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  font: 600 12px/1 "Poppins", sans-serif !important;
  white-space: nowrap !important;
}

/* Remove (trash) button — always-visible crisp icon (both layouts) */
body.woocommerce-wishlist .wishlist_table.mobile .additional-info-wrapper .product-remove {
  margin-left: auto !important;
}

body.woocommerce-wishlist .product-remove {
  margin: 0 !important;
}

body.woocommerce-wishlist .product-remove .remove_from_wishlist {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1.5px solid #e9b7b7 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #d64545 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(180, 40, 40, 0.12) !important;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

body.woocommerce-wishlist .product-remove .remove_from_wishlist i {
  display: none !important;
}

body.woocommerce-wishlist .product-remove .remove_from_wishlist::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 6 5 6 21 6'/%3E%3Cpath d='M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6'/%3E%3Cpath d='M10 11v6M14 11v6'/%3E%3Cpath d='M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 6 5 6 21 6'/%3E%3Cpath d='M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6'/%3E%3Cpath d='M10 11v6M14 11v6'/%3E%3Cpath d='M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E") no-repeat center / contain;
}

body.woocommerce-wishlist .product-remove .remove_from_wishlist:hover {
  background: #d64545 !important;
  border-color: #d64545 !important;
  color: #fff !important;
}

/* ==========================================================
   Wishlist heart button + toast notifications
   ========================================================== */
.package-card .favorite,
.related.products .favorite,
.top_packages .favorite {
  top: 10px !important;
  right: 10px !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  border: 1px solid rgba(28, 59, 51, 0.08);
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 10px rgba(15, 46, 33, 0.12);
}

@media (min-width: 768px) {
  .package-card .favorite,
  .related.products .favorite,
  .top_packages .favorite {
    top: 12px !important;
    right: 12px !important;
    width: 44px !important;
    height: 44px !important;
  }
}

.package-card .favorite .yith-add-to-wishlist-button-block,
.related.products .favorite .yith-add-to-wishlist-button-block,
.top_packages .favorite .yith-add-to-wishlist-button-block {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.package-card .favorite .yith-wcwl-add-to-wishlist-button,
.related.products .favorite .yith-wcwl-add-to-wishlist-button,
.top_packages .favorite .yith-wcwl-add-to-wishlist-button,
.package-card .favorite .yith-wcwl-add-to-wishlist-button:is(button),
.related.products .favorite .yith-wcwl-add-to-wishlist-button:is(button),
.top_packages .favorite .yith-wcwl-add-to-wishlist-button:is(button) {
  width: 100% !important;
  height: 100% !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.package-card .favorite .yith-wcwl-add-to-wishlist-button svg,
.package-card .favorite .yith-wcwl-icon-svg,
.package-card .favorite img.yith-wcwl-custom-icon,
.related.products .favorite .yith-wcwl-add-to-wishlist-button svg,
.related.products .favorite .yith-wcwl-icon-svg,
.top_packages .favorite .yith-wcwl-add-to-wishlist-button svg,
.top_packages .favorite .yith-wcwl-icon-svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .package-card .favorite .yith-wcwl-add-to-wishlist-button svg,
  .package-card .favorite .yith-wcwl-icon-svg,
  .related.products .favorite .yith-wcwl-add-to-wishlist-button svg,
  .top_packages .favorite .yith-wcwl-add-to-wishlist-button svg {
    width: 20px !important;
    height: 20px !important;
  }
}

.package-card .favorite .yith-wcwl-add-to-wishlist-button__label,
.related.products .favorite .yith-wcwl-add-to-wishlist-button__label,
.top_packages .favorite .yith-wcwl-add-to-wishlist-button__label,
.package-card .favorite .yith-wcwl-add-to-wishlist-button span:not(.yith-wcwl-icon-svg__wrapper),
.related.products .favorite .yith-wcwl-add-to-wishlist-button span:not(.yith-wcwl-icon-svg__wrapper) {
  display: none !important;
}

.package-card .favorite .yith-wcwl-add-to-wishlist-button--added svg,
.related.products .favorite .yith-wcwl-add-to-wishlist-button--added svg,
.top_packages .favorite .yith-wcwl-add-to-wishlist-button--added svg {
  color: #15a785 !important;
  fill: #15a785 !important;
}

.package-card .favorite .yith-wcwl-tooltip,
.related.products .favorite .yith-wcwl-tooltip,
.top_packages .favorite .yith-wcwl-tooltip {
  display: none !important;
}

.package-card,
.related.products .package-card,
.top_packages .package-card,
.triloka-wishlist-grid .package-card {
  cursor: pointer;
}

.package-card .favorite,
.package-card .wishlist-card__remove,
.package-card .wishlist-card__checkbox,
.package-card .product-add-to-cart,
.package-card a,
.package-card button {
  cursor: pointer;
}

/* ==========================================================
   Shop sidebar filters — Apply / Clear actions
   ========================================================== */
.shop_wrapper .shop-sidebar-panel {
  display: flex;
  flex-direction: column;
}

.shop_wrapper .shop-sidebar-panel__body {
  flex: 1 1 auto;
  min-height: 0;
}

.shop_wrapper .shop-sidebar-panel__foot {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 59, 51, 0.08);
  flex-shrink: 0;
}

.shop_wrapper .shop-sidebar-panel__foot .shop-filter-clear {
  flex: 1 1 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(28, 59, 51, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #5c6b66;
  font: 500 14px/1 "Poppins", sans-serif;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.shop_wrapper .shop-sidebar-panel__foot .shop-filter-clear:hover {
  border-color: #106343;
  color: #106343;
  background: #f7fbf9;
}

.shop_wrapper .shop-sidebar-panel__foot .shop-filter-apply,
.shop_wrapper .shop-sidebar-panel__foot .shop-filter-apply.tl-btn {
  flex: 1 1 auto;
  justify-content: center;
  min-height: 42px;
  margin: 0 !important;
}

@media (max-width: 1023.98px) {
  .shop_wrapper .shop-sidebar-panel__foot {
    margin-top: 0;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    box-shadow: 0 -4px 16px rgba(15, 46, 33, 0.06);
  }
}

/* ==========================================================
   Package cards — refined UX + readability (global)
   ========================================================== */
.shop_wrapper .product_wrap ul.products .package-card,
.top_packages .package-card,
.related.products ul.products .package-card,
.triloka-wishlist-grid .package-card {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid rgba(23, 61, 56, 0.1) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  transition: border-color 0.24s ease !important;
}

@media (min-width: 768px) {
  .shop_wrapper .product_wrap ul.products .package-card:hover,
  .top_packages .package-card:hover,
  .related.products ul.products .package-card:hover,
  .triloka-wishlist-grid .package-card:hover {
    border-color: rgba(21, 155, 120, 0.4) !important;
    box-shadow: none !important;
  }
}

/* Image — consistent framing + subtle zoom on hover */
.shop_wrapper .product_wrap ul.products .package-card .card-image,
.top_packages .package-card .card-image,
.related.products ul.products .package-card .card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f0;
}

.shop_wrapper .product_wrap ul.products .package-card .card-image img,
.top_packages .package-card .card-image img,
.related.products ul.products .package-card .card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

@media (min-width: 768px) {
  .shop_wrapper .product_wrap ul.products .package-card:hover .card-image img,
  .top_packages .package-card:hover .card-image img,
  .related.products ul.products .package-card:hover .card-image img {
    transform: scale(1.05) !important;
  }
}

/* Sale badge */
.package-card .card-image .badge {
  top: 10px !important;
  left: 10px !important;
  padding: 4px 10px !important;
  background: #159b78 !important;
  border-radius: 999px !important;
  color: #fff !important;
  font: 700 10px/1 "Poppins", sans-serif !important;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(21, 155, 120, 0.3) !important;
}

/* Content */
.shop_wrapper .product_wrap ul.products .package-card .card-content,
.top_packages .package-card .card-content,
.related.products ul.products .package-card .card-content {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 16px !important;
}

.package-card .card-content .text_container {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

/* Title — readable, 2-line clamp for even card heights */
.shop_wrapper .product_wrap ul.products .package-card .card-content h3 a,
.top_packages .package-card .card-content h3 a,
.related.products ul.products .package-card .card-content h3 a {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  color: #14261f !important;
  font: 600 15.5px/1.4 "Poppins", sans-serif !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  transition: color 0.18s ease !important;
}

.package-card .card-content h3 a:hover {
  color: #159b78 !important;
}

/* Short description — muted, 2 lines */
.package-card .card-content .short-desc {
  margin: 0 !important;
  color: #6b7c76 !important;
  font: 400 12.5px/1.5 "Poppins", sans-serif !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Duration pill */
.package-card .card-content .product_infor_du {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: fit-content !important;
  padding: 5px 11px !important;
  background: #f1f7f4 !important;
  border-radius: 999px !important;
  color: #2f5d4e !important;
  font: 600 11px/1.2 "Poppins", sans-serif !important;
}

.package-card .card-content .product_infor_du svg {
  width: 13px !important;
  height: 13px !important;
  flex: 0 0 auto;
  opacity: 0.8;
}

/* Footer — separated with a hairline, price left, CTA right */
.shop_wrapper .product_wrap ul.products .package-card .card-content .card-footer,
.top_packages .package-card .card-content .card-footer,
.top_packages .container .product_wraper ul.products .package-card .card-content .card-footer,
.related.products ul.products .package-card .card-content .card-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-top: auto !important;
  padding-top: 14px !important;
  border-top: 1px solid #eef2f0 !important;
}

.shop_wrapper .product_wrap ul.products .package-card .card-content .card-footer .price_wrap,
.top_packages .package-card .card-content .card-footer .price_wrap,
.top_packages .container .product_wraper ul.products .package-card .card-content .card-footer .price_wrap,
.related.products ul.products .package-card .card-content .card-footer .price_wrap,
.package-card .card-footer .price_wrap {
  flex: 0 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 1px !important;
  min-width: 0 !important;
}

.package-card .card-footer .price_wrap .price {
  color: #0f5a3f !important;
  font: 800 20px/1.15 "Poppins", sans-serif !important;
  letter-spacing: -0.02em !important;
}

.package-card .card-footer .price_wrap .price del {
  color: #a8b4ae !important;
  font-weight: 500 !important;
  font-size: 13px !important;
}

.package-card .card-footer .price_wrap .price ins {
  text-decoration: none !important;
}

.package-card .card-footer .price_wrap i {
  color: #94a19b !important;
  font: 400 11px/1.3 "Poppins", sans-serif !important;
  font-style: normal !important;
}

/* Book Now button */
.shop_wrapper .product_wrap ul.products .package-card .card-content .card-footer .tl-btn,
.top_packages .package-card .card-content .card-footer .tl-btn,
.top_packages .container .product_wraper ul.products .package-card .card-content .card-footer .tl-btn,
.related.products ul.products .package-card .card-content .card-footer .tl-btn,
.shop_wrapper .product_wrap ul.products .package-card .card-footer .tl-btn,
.top_packages .package-card .card-footer .tl-btn,
.related.products ul.products .package-card .card-footer .tl-btn {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px !important;
  padding: 9px 18px !important;
  border: 1px solid #159b78 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #0f5a3f !important;
  font: 700 11px/1 "Poppins", sans-serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease !important;
}

.package-card .card-footer .tl-btn:hover {
  background: #159b78 !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(21, 155, 120, 0.25) !important;
}

body.single-product .yith-add-to-wishlist-button-block--single .yith-wcwl-add-to-wishlist-button svg,
body.single-product .yith-add-to-wishlist-button-block--single .yith-wcwl-icon-svg {
  width: 20px !important;
  height: 20px !important;
}

.triloka-wishlist-toast-host,
.yith-wcwl-feedback-messages-container {
  position: fixed !important;
  z-index: 1200 !important;
  top: auto !important;
  right: auto !important;
  bottom: 24px !important;
  left: 24px !important;
  transform: none !important;
  width: min(calc(100vw - 48px), 380px) !important;
  max-width: min(calc(100vw - 48px), 380px) !important;
  height: auto !important;
  margin: 0 !important;
  pointer-events: none;
}

#yith-wcwl-popup-message {
  position: fixed !important;
  z-index: 1200 !important;
  top: auto !important;
  right: auto !important;
  bottom: 24px !important;
  left: 24px !important;
  transform: none !important;
  width: min(calc(100vw - 48px), 380px) !important;
  max-width: min(calc(100vw - 48px), 380px) !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.45 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

#yith-wcwl-message,
.yith-wcwl-add-to-wishlist__feedback,
.triloka-wishlist-toast-host .yith-wcwl-add-to-wishlist__feedback {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 14px 16px 14px 44px !important;
  border: 1px solid rgba(21, 167, 133, 0.22) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 14px 36px rgba(15, 46, 33, 0.16) !important;
  color: #17231f !important;
  font: 600 13px/1.55 "Poppins", sans-serif !important;
  text-align: left !important;
  pointer-events: auto;
  animation: trilokaWishlistToastIn 0.28s ease-out !important;
  backdrop-filter: blur(10px);
}

#yith-wcwl-message::before,
.yith-wcwl-add-to-wishlist__feedback::before,
.triloka-wishlist-toast-host .yith-wcwl-add-to-wishlist__feedback::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: #15a785;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20.25s-6.938-4.188-9.375-7.688C.563 9.563 1.875 5.813 5.25 5.063c1.875-.375 3.75.563 4.875 2.063 1.125-1.5 3-2.438 4.875-2.063 3.375.75 4.688 4.5 2.625 7.499C18.938 16.062 12 20.25 12 20.25z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20.25s-6.938-4.188-9.375-7.688C.563 9.563 1.875 5.813 5.25 5.063c1.875-.375 3.75.563 4.875 2.063 1.125-1.5 3-2.438 4.875-2.063 3.375.75 4.688 4.5 2.625 7.499C18.938 16.062 12 20.25 12 20.25z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
}

.yith-wcwl-add-to-wishlist__feedback.yith-wcwl-fade-out,
#yith-wcwl-popup-message[style*="display: none"] #yith-wcwl-message {
  animation: trilokaWishlistToastOut 0.35s ease-in forwards !important;
}

@keyframes trilokaWishlistToastIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trilokaWishlistToastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 767.98px) {
  .triloka-wishlist-toast-host,
  .yith-wcwl-feedback-messages-container,
  #yith-wcwl-popup-message {
    top: calc(76px + env(safe-area-inset-top, 0px)) !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(calc(100vw - 28px), 420px) !important;
    max-width: min(calc(100vw - 28px), 420px) !important;
  }

  #yith-wcwl-message,
  .yith-wcwl-add-to-wishlist__feedback,
  .triloka-wishlist-toast-host .yith-wcwl-add-to-wishlist__feedback {
    animation: trilokaWishlistToastInMobile 0.28s ease-out !important;
  }

  @keyframes trilokaWishlistToastInMobile {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ==========================================================
   Blog page — modern minimalist layout
   ========================================================== */
body.page-template-template-blog_page {
  background: #f8faf9;
}

.blog-page-wrapper {
  background: #f8faf9;
  padding-bottom: 64px;
}

.blog-page-wrapper .blog-page-layout.container {
  width: min(100% - 40px, 1200px) !important;
  max-width: 1200px !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
  box-sizing: border-box;
}

.blog-page-wrapper .header_blog {
  display: none !important;
}

.blog-page-hero {
  padding: 24px 0 36px;
}

.blog-page-breadcrumb {
  margin-bottom: 14px;
}

.blog-page-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #7b8984;
  font: 500 12px/1.5 "Poppins", sans-serif;
}

.blog-page-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
}

.blog-page-breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #c5d0cb;
}

.blog-page-breadcrumb__list a {
  color: #148369;
  text-decoration: none;
}

.blog-page-breadcrumb__list a:hover {
  color: #106343;
}

.blog-page-hero__eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf8f4;
  color: #148369;
  font: 600 11px/1.2 "Poppins", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-page-hero__title {
  margin: 0 0 10px;
  color: #17231f;
  font: 700 clamp(30px, 4vw, 44px)/1.15 "Poppins", sans-serif !important;
  letter-spacing: -0.03em;
  text-align: left !important;
  text-transform: none !important;
}

.blog-page-hero__subtitle {
  max-width: 560px;
  margin: 0;
  color: #5e6f68;
  font: 400 16px/1.65 "Poppins", sans-serif !important;
  text-align: left !important;
}

.blog-page-content.flex_area {
  display: block;
}

.blog-section-head {
  margin-bottom: 22px;
}

.blog-section-head__title {
  margin: 0 0 6px;
  color: #17231f;
  font: 700 clamp(22px, 3vw, 28px)/1.25 "Poppins", sans-serif !important;
  letter-spacing: -0.02em;
  text-transform: none !important;
}

.blog-section-head__desc {
  margin: 0;
  color: #7b8984;
  font: 400 14px/1.6 "Poppins", sans-serif;
}

.blog-page-wrapper .blog_area.blog-topics {
  padding: 0 0 40px;
}

.blog-page-wrapper .blog-areas-wrap {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  justify-content: initial !important;
  flex-wrap: initial !important;
}

.blog-topic-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(15, 46, 33, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 46, 33, 0.1);
}

.blog-topic-card__media {
  position: absolute;
  inset: 0;
  background: #dce7e2 center / cover no-repeat;
  transition: transform 0.35s ease;
}

.blog-topic-card:hover .blog-topic-card__media {
  transform: scale(1.04);
}

.blog-topic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 17, 0.02) 0%, rgba(8, 20, 17, 0.72) 100%);
}

.blog-topic-card__label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  color: #fff !important;
  font: 600 12px/1.35 "Poppins", sans-serif !important;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.blog-page-wrapper .blog_area .blog-area-item,
.blog-page-wrapper .blog_area .blog_image,
.blog-page-wrapper .blog_area h4 {
  display: none !important;
}

.blog-page-wrapper .latest_blog.blog-posts-section {
  padding: 8px 0 0 !important;
}

.blog-page-wrapper .latest_blog .blog-section-head__title {
  text-transform: none !important;
}

.blog-page-wrapper .blog_grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px !important;
  flex-direction: initial !important;
  flex-wrap: initial !important;
}

.blog-page-wrapper .blog_grid .blog-post-card {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden;
  border: 1px solid #e5ece8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 46, 33, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-page-wrapper .blog_grid .blog-post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 167, 133, 0.18);
  box-shadow: 0 12px 28px rgba(15, 46, 33, 0.08);
}

.blog-page-wrapper .blog-post-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f0;
}

.blog-page-wrapper .blog-post-card__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-page-wrapper .blog-post-card:hover .blog-post-card__thumb img {
  transform: scale(1.03);
}

.blog-page-wrapper .blog-post-card__thumb--placeholder {
  background: linear-gradient(135deg, #e8f3ef 0%, #dce7e2 100%);
}

.blog-page-wrapper .blog-post-card__body {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px;
  padding: 18px 20px 22px !important;
}

.blog-page-wrapper .blog-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.blog-page-wrapper .blog-post-card__category {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: #edf8f4;
  color: #148369 !important;
  font: 600 10px/1.2 "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.blog-page-wrapper .blog-post-card__date {
  color: #7b8984;
  font: 500 11px/1.3 "Poppins", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-page-wrapper .blog-post-card__title {
  margin: 0;
  width: 100%;
}

.blog-page-wrapper .blog-post-card__title a {
  color: #17231f !important;
  font: 600 17px/1.35 "Poppins", sans-serif !important;
  text-decoration: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-page-wrapper .blog-post-card__title a:hover {
  color: #148369 !important;
}

.blog-page-wrapper .blog-post-card__excerpt {
  flex: 1 1 auto;
  margin: 0 !important;
  color: #5e6f68 !important;
  font: 400 14px/1.65 "Poppins", sans-serif !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-page-wrapper .blog-post-card__excerpt p {
  margin: 0;
}

.blog-page-wrapper .blog-post-card__body .tl-btn--link {
  margin-top: auto;
}

.blog-page-wrapper .blog-pagination {
  margin-top: 36px;
}

.blog-page-wrapper .blog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-page-wrapper .blog-pagination .page-numbers li {
  margin: 0;
}

.blog-page-wrapper .blog-pagination a.page-numbers,
.blog-page-wrapper .blog-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #dce7e2;
  border-radius: 10px;
  background: #fff;
  color: #17231f;
  font: 600 13px/1 "Poppins", sans-serif;
  text-decoration: none;
}

.blog-page-wrapper .blog-pagination a.page-numbers:hover {
  border-color: rgba(21, 167, 133, 0.35);
  background: #f3faf7;
  color: #148369;
}

.blog-page-wrapper .blog-pagination span.page-numbers.current {
  border-color: #106343;
  background: #106343;
  color: #fff;
}

.blog-page-wrapper .blog-empty-state {
  padding: 40px 24px;
  border: 1px dashed #dce7e2;
  border-radius: 16px;
  background: #fff;
  color: #7b8984;
  font: 500 15px/1.6 "Poppins", sans-serif;
  text-align: center;
}

@media (max-width: 1023.98px) {
  .blog-page-wrapper .blog-areas-wrap {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin-inline: -12px;
    padding: 0 12px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .blog-page-wrapper .blog-areas-wrap::-webkit-scrollbar {
    display: none;
  }

  .blog-page-wrapper .blog-topic-card {
    flex: 0 0 min(42vw, 180px);
    width: min(42vw, 180px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .blog-page-wrapper .blog_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 767.98px) {
  body.page-template-template-blog_page {
    overflow-x: clip;
  }

  .blog-page-wrapper {
    padding-bottom: 40px;
    overflow-x: clip;
  }

  .blog-page-wrapper .blog-page-layout.container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 12px !important;
  }

  .blog-page-hero {
    padding: 16px 0 28px;
  }

  .blog-page-wrapper .blog_area.blog-topics {
    padding-bottom: 28px;
  }

  .blog-page-wrapper .blog-topic-card {
    flex-basis: min(68vw, 210px);
    width: min(68vw, 210px);
  }

  .blog-page-wrapper .blog_grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .blog-page-wrapper .blog-post-card__body {
    padding: 16px 18px 20px !important;
  }
}

/* ==========================================================
   WooCommerce notices — minimal cart / checkout banner
   ========================================================== */
.woocommerce-notices-wrapper {
  margin-bottom: 18px;
}

.woocommerce-error::before,
.woocommerce-error::after,
.woocommerce-info::before,
.woocommerce-info::after,
.woocommerce-message::before,
.woocommerce-message::after {
  display: none !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.cart_chekout_page .woocommerce-message,
.cart_chekout_page .woocommerce-info,
.cart_chekout_page .woocommerce-error {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px !important;
  padding: 14px 16px !important;
  border: 1px solid #dce7e2 !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #3f524b !important;
  font: 500 13px/1.55 "Poppins", sans-serif !important;
  box-shadow: 0 2px 10px rgba(15, 46, 33, 0.04) !important;
  outline: none !important;
  list-style: none;
}

.woocommerce-message,
.cart_chekout_page .woocommerce-message {
  border-left: 3px solid #15a785 !important;
  background: #f8fbf9 !important;
}

.woocommerce-info,
.cart_chekout_page .woocommerce-info {
  border-left: 3px solid #148369 !important;
  background: #f8fbf9 !important;
}

.woocommerce-error,
.cart_chekout_page .woocommerce-error {
  border-left: 3px solid #d64545 !important;
  background: #fff8f8 !important;
  color: #6b3030 !important;
}

.woocommerce-message .button,
.woocommerce-message a.button,
.woocommerce-message .wc-forward,
.woocommerce-info .button,
.woocommerce-info a.button {
  flex: 0 0 auto;
  order: 2;
  margin: 0 !important;
  padding: 8px 14px !important;
  border: 1px solid #15a785 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #148369 !important;
  font: 600 12px/1.2 "Poppins", sans-serif !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  text-transform: none !important;
  white-space: nowrap;
  box-shadow: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.woocommerce-message .button:hover,
.woocommerce-message a.button:hover,
.woocommerce-message .wc-forward:hover,
.woocommerce-info .button:hover,
.woocommerce-info a.button:hover {
  background: #edf8f4 !important;
  border-color: #109174 !important;
  color: #106343 !important;
}

.woocommerce-error .button,
.woocommerce-error a.button {
  border-color: #e8bcbc !important;
  color: #b52f2f !important;
}

@media (max-width: 639.98px) {
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .cart_chekout_page .woocommerce-message,
  .cart_chekout_page .woocommerce-info,
  .cart_chekout_page .woocommerce-error {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .woocommerce-message .button,
  .woocommerce-message a.button,
  .woocommerce-message .wc-forward,
  .woocommerce-info .button,
  .woocommerce-info a.button {
    order: unset;
    align-self: flex-start;
    padding: 7px 12px !important;
    font-size: 11px !important;
  }
}


/* ==========================================================
   Single blog post — layout, breadcrumb, sidebar
   ========================================================== */
body.single-post {
  background: #f8faf9;
}

.single-blog-wrapper {
  background: #f8faf9 !important;
  padding-bottom: 56px !important;
  max-width: 100%;
}

.single-blog-wrapper .single-blog-layout.container {
  width: min(100% - 40px, 1200px) !important;
  max-width: 1200px !important;
  margin-inline: auto !important;
  margin-top: 0 !important;
  padding-inline: 0 !important;
  box-sizing: border-box;
}

.single-blog-wrapper > .container,
.single-blog-wrapper .container:not(.single-blog-layout) {
  margin-top: 0 !important;
}

.single-blog-breadcrumb {
  padding: 18px 0 10px;
}

.single-blog-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #7b8984;
  font: 500 12px/1.5 "Poppins", sans-serif;
}

.single-blog-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.single-blog-breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #c5d0cb;
}

.single-blog-breadcrumb__list li:last-child {
  color: #5e6f68;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-blog-breadcrumb__list a {
  color: #148369;
  text-decoration: none;
  transition: color 0.2s ease;
}

.single-blog-breadcrumb__list a:hover {
  color: #106343;
}

.single-blog-post {
  padding: 0 !important;
}

.single-blog-hero {
  padding: 8px 0 28px;
}

.single-blog-hero__grid {
  display: grid;
  gap: 20px;
}

.single-blog-hero__media {
  overflow: hidden;
  border: 1px solid #e5ece8;
  border-radius: 16px;
  background: #eef2f0;
  box-shadow: 0 8px 28px rgba(15, 46, 33, 0.06);
}

.single-blog-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.single-blog-hero__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.single-blog-hero__category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf8f4;
  color: #148369 !important;
  font: 600 11px/1.2 "Poppins", sans-serif;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.single-blog-wrapper .single-blog-title {
  margin: 0 !important;
  color: #17231f !important;
  font: 700 clamp(26px, 4vw, 42px)/1.2 "Poppins", sans-serif !important;
  letter-spacing: -0.03em;
}

.single-blog-wrapper .single-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  color: #7b8984 !important;
  font: 500 12px/1.4 "Poppins", sans-serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-blog-wrapper .single-blog-meta .meta-sep {
  color: #c5d0cb;
}

.single-blog-body {
  align-items: start;
}

.single-blog-main {
  min-width: 0;
}

.single-blog-wrapper .single-blog-content {
  padding: 28px 28px 32px;
  border: 1px solid #e5ece8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 46, 33, 0.05);
  color: #24312d !important;
  font: 400 17px/1.78 "Poppins", sans-serif !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.single-blog-wrapper .single-blog-content p,
.single-blog-wrapper .single-blog-content li,
.single-blog-wrapper .single-blog-content span,
.single-blog-wrapper .single-blog-content div,
.single-blog-wrapper .single-blog-content .wp-block-paragraph,
.single-blog-wrapper .single-blog-content .has-text-color {
  color: #24312d !important;
  font-weight: 400 !important;
}

.single-blog-wrapper .single-blog-content > :first-child {
  margin-top: 0;
}

.single-blog-wrapper .single-blog-content > :last-child {
  margin-bottom: 0;
}

.single-blog-wrapper .single-blog-content p {
  margin: 0 0 1.15em !important;
}

.single-blog-wrapper .single-blog-content h2,
.single-blog-wrapper .single-blog-content h3,
.single-blog-wrapper .single-blog-content h4 {
  margin: 1.6em 0 0.65em;
  color: #17231f;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.single-blog-wrapper .single-blog-content h2 {
  font-size: clamp(22px, 3vw, 28px);
}

.single-blog-wrapper .single-blog-content h3 {
  font-size: clamp(19px, 2.5vw, 23px);
}

.single-blog-wrapper .single-blog-content h4 {
  font-size: 18px;
}

.single-blog-wrapper .single-blog-content a {
  color: #148369;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.single-blog-wrapper .single-blog-content a:hover {
  color: #106343;
}

.single-blog-wrapper .single-blog-content ul,
.single-blog-wrapper .single-blog-content ol {
  margin: 0 0 1.15em;
  padding-left: 1.35em;
}

.single-blog-wrapper .single-blog-content li {
  margin-bottom: 0.45em;
}

.single-blog-wrapper .single-blog-content blockquote {
  margin: 1.4em 0;
  padding: 14px 16px;
  border-left: 3px solid #15a785;
  border-radius: 0 10px 10px 0;
  background: #f3faf7;
  color: #3f524b;
  font-style: normal;
}

.single-blog-wrapper .single-blog-content img {
  width: 100% !important;
  height: auto !important;
  margin: 1.4em 0 !important;
  border-radius: 12px !important;
}

.single-blog-wrapper .single-blog-content figure {
  margin: 1.4em 0;
}

.single-blog-wrapper .single-blog-content figcaption {
  margin-top: 8px;
  color: #7b8984;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.single-blog-sidebar {
  min-width: 0;
}

.single-blog-sidebar__title,
.single-blog-wrapper .related-title {
  margin: 0 0 16px !important;
  color: #17231f !important;
  font: 700 18px/1.3 "Poppins", sans-serif !important;
  letter-spacing: -0.02em;
}

.sidebar-posts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-post-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid #e5ece8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 46, 33, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-post-item:hover {
  border-color: rgba(21, 167, 133, 0.2);
  box-shadow: 0 8px 20px rgba(15, 46, 33, 0.07);
}

.sidebar-post-thumb {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background: #eef2f0;
}

.sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post-title {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.4;
}

.sidebar-post-title a {
  color: #17231f !important;
  text-decoration: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-post-title a:hover {
  color: #148369 !important;
}

.sidebar-post-date {
  color: #7b8984;
  font: 500 10px/1.3 "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.single-blog-wrapper .related-posts-section {
  margin-top: 36px !important;
}

.single-blog-wrapper .related-posts-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px !important;
}

.single-blog-wrapper .related-posts-grid .related-item {
  width: 100% !important;
  overflow: hidden;
  border: 1px solid rgba(28, 59, 51, 0.06);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 46, 33, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.single-blog-wrapper .related-posts-grid .related-item:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 167, 133, 0.16);
  box-shadow: 0 12px 28px rgba(15, 46, 33, 0.08);
}

.single-blog-wrapper .related-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f0;
}

.single-blog-wrapper .related-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.single-blog-wrapper .related-item__body {
  padding: 14px;
}

.single-blog-wrapper .related-post-title {
  margin: 0 0 8px !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}

.single-blog-wrapper .related-post-title a {
  color: #17231f !important;
  text-decoration: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-blog-wrapper .related-post-title a:hover {
  color: #148369 !important;
}

.single-blog-wrapper .related-date {
  margin: 0 !important;
  color: #7b8984 !important;
  font: 500 11px/1.3 "Poppins", sans-serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .single-blog-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 36px;
    align-items: center;
  }

  .single-blog-hero__media img {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .single-blog-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    margin-top: 8px;
  }

  .single-blog-sidebar {
    position: sticky;
    top: 96px;
  }

  .single-blog-wrapper .single-blog-content {
    padding: 34px 36px 40px;
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  .single-blog-wrapper .related-posts-section--mobile {
    display: none !important;
  }
}

@media (max-width: 1023.98px) {
  .single-blog-sidebar {
    display: none !important;
  }

  .single-blog-wrapper .related-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  body.single-post {
    overflow-x: clip;
  }

  .single-blog-wrapper {
    padding-bottom: 32px !important;
    overflow-x: clip;
  }

  .single-blog-wrapper .single-blog-layout.container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 12px !important;
  }

  .single-blog-breadcrumb {
    padding: 14px 0 8px;
  }

  .single-blog-breadcrumb__list {
    font-size: 11px;
  }

  .single-blog-hero {
    padding: 0 0 18px;
  }

  .single-blog-hero__media {
    max-width: 100%;
  }

  .single-blog-hero__media img {
    min-height: 200px;
    border-radius: 14px;
    max-width: 100%;
  }

  .single-blog-wrapper .single-blog-title {
    font-size: clamp(22px, 6vw, 28px) !important;
    line-height: 1.3 !important;
    overflow-wrap: anywhere;
  }

  .single-blog-wrapper .single-blog-meta {
    font-size: 11px !important;
  }

  .single-blog-wrapper .single-blog-content {
    padding: 20px 18px 24px;
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .single-blog-wrapper .single-blog-content img,
  .single-blog-wrapper .single-blog-content iframe,
  .single-blog-wrapper .single-blog-content video,
  .single-blog-wrapper .single-blog-content table {
    max-width: 100% !important;
  }

  .single-blog-wrapper .related-posts-section--mobile {
    display: block !important;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .single-blog-wrapper .related-posts-section--mobile .single-blog-layout.container {
    overflow: visible;
  }

  .single-blog-wrapper .related-posts-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    width: 100%;
    max-width: 100%;
    margin-inline: -12px;
    margin-right: 0;
    padding: 0 12px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .single-blog-wrapper .related-posts-grid::-webkit-scrollbar {
    display: none;
  }

  .single-blog-wrapper .related-posts-grid .related-item {
    flex: 0 0 min(calc(100vw - 48px), 280px) !important;
    width: min(calc(100vw - 48px), 280px) !important;
    max-width: min(calc(100vw - 48px), 280px) !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* ==========================================================
   Category archive — layout, breadcrumb, sidebar
   ========================================================== */
body.category {
  background: #f8faf9;
}

.category-archive-wrapper {
  background: #f8faf9;
  padding-bottom: 56px;
  max-width: 100%;
}

.category-archive-wrapper .category-archive-layout.container {
  width: min(100% - 40px, 1200px) !important;
  max-width: 1200px !important;
  margin-inline: auto !important;
  margin-top: 0 !important;
  padding-inline: 0 !important;
  box-sizing: border-box;
}

.category-archive-breadcrumb {
  padding: 18px 0 10px;
}

.category-archive-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #7b8984;
  font: 500 12px/1.5 "Poppins", sans-serif;
}

.category-archive-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.category-archive-breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #c5d0cb;
}

.category-archive-breadcrumb__list li:last-child {
  color: #5e6f68;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-archive-breadcrumb__list a {
  color: #148369;
  text-decoration: none;
  transition: color 0.2s ease;
}

.category-archive-breadcrumb__list a:hover {
  color: #106343;
}

.category-archive-hero {
  padding: 8px 0 32px;
  text-align: center;
}

.category-archive-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf8f4;
  color: #148369;
  font: 600 11px/1.2 "Poppins", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-archive-hero__title {
  margin: 0 0 12px;
  color: #17231f;
  font: 700 clamp(28px, 4vw, 44px)/1.15 "Poppins", sans-serif;
  letter-spacing: -0.03em;
  text-transform: none;
}

.category-archive-hero__desc {
  max-width: 640px;
  margin: 0 auto 12px;
  color: #5e6f68;
  font: 400 16px/1.65 "Poppins", sans-serif;
}

.category-archive-hero__desc p {
  margin: 0;
}

.category-archive-hero__count {
  margin: 0;
  color: #7b8984;
  font: 500 12px/1.4 "Poppins", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-archive-body {
  align-items: start;
}

.category-archive-main {
  min-width: 0;
}

.category-archive-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.category-post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5ece8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 46, 33, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 167, 133, 0.18);
  box-shadow: 0 12px 28px rgba(15, 46, 33, 0.08);
}

.category-post-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f0;
}

.category-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-post-card:hover .category-post-card__thumb img {
  transform: scale(1.03);
}

.category-post-card__thumb--placeholder {
  background: linear-gradient(135deg, #e8f3ef 0%, #dce7e2 100%);
}

.category-post-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 20px 22px;
}

.category-post-card__date {
  color: #7b8984;
  font: 500 10px/1.3 "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-post-card__title {
  margin: 0;
  font: 600 18px/1.35 "Poppins", sans-serif;
}

.category-post-card__title a {
  color: #17231f;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-post-card__title a:hover {
  color: #148369;
}

.category-post-card__excerpt {
  flex: 1 1 auto;
  margin: 0;
  color: #5e6f68;
  font: 400 14px/1.65 "Poppins", sans-serif;
}

.category-post-card__excerpt p {
  margin: 0;
}

.category-post-card__body .tl-btn--link {
  margin-top: 4px;
}

.category-archive-empty {
  padding: 48px 28px;
  border: 1px solid #e5ece8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 46, 33, 0.05);
  text-align: center;
}

.category-archive-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #edf8f4;
  color: #148369;
}

.category-archive-empty__title {
  margin: 0 0 10px;
  color: #17231f;
  font: 700 22px/1.3 "Poppins", sans-serif;
}

.category-archive-empty__text {
  max-width: 420px;
  margin: 0 auto 22px;
  color: #5e6f68;
  font: 400 15px/1.65 "Poppins", sans-serif;
}

.category-archive-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto 20px;
}

.category-archive-search input[type="search"] {
  flex: 1 1 220px;
  width: auto;
  min-width: 0;
  height: 46px;
  max-height: 46px;
  padding: 0 14px;
  border: 1px solid #dce7e2;
  border-radius: 10px;
  background: #fff;
  color: #17231f;
  font: 400 14px/1.4 "Poppins", sans-serif;
  line-height: normal;
  outline: none;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-archive-search input[type="search"]:focus {
  border-color: #15a785;
  box-shadow: 0 0 0 3px rgba(21, 167, 133, 0.12);
}

.category-archive-search__btn {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #106343;
  border-radius: 10px;
  background: #106343;
  color: #fff;
  font: 600 13px/1 "Poppins", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.category-archive-search__btn:hover {
  background: #148369;
  border-color: #148369;
}

.category-archive-pagination {
  margin-top: 36px;
}

.category-archive-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-archive-pagination .page-numbers li {
  margin: 0;
}

.category-archive-pagination a.page-numbers,
.category-archive-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #dce7e2;
  border-radius: 10px;
  background: #fff;
  color: #17231f;
  font: 600 13px/1 "Poppins", sans-serif;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.category-archive-pagination a.page-numbers:hover {
  border-color: rgba(21, 167, 133, 0.35);
  background: #f3faf7;
  color: #148369;
}

.category-archive-pagination span.page-numbers.current {
  border-color: #106343;
  background: #106343;
  color: #fff;
}

.category-archive-sidebar__title,
.category-archive-mobile-posts .category-archive-sidebar__title {
  margin: 0 0 16px;
  color: #17231f;
  font: 700 18px/1.3 "Poppins", sans-serif;
  letter-spacing: -0.02em;
}

.category-archive-sidebar .sidebar-posts-list,
.category-archive-wrapper .sidebar-posts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-archive-wrapper .sidebar-post-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid #e5ece8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 46, 33, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-archive-wrapper .sidebar-post-item:hover {
  border-color: rgba(21, 167, 133, 0.2);
  box-shadow: 0 8px 20px rgba(15, 46, 33, 0.07);
}

.category-archive-wrapper .sidebar-post-thumb {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background: #eef2f0;
}

.category-archive-wrapper .sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-archive-wrapper .sidebar-post-title {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.4;
}

.category-archive-wrapper .sidebar-post-title a {
  color: #17231f !important;
  text-decoration: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-archive-wrapper .sidebar-post-title a:hover {
  color: #148369 !important;
}

.category-archive-wrapper .sidebar-post-date {
  color: #7b8984;
  font: 500 10px/1.3 "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-archive-mobile-posts {
  display: none;
}

.category-mobile-post-card {
  overflow: hidden;
  border: 1px solid rgba(28, 59, 51, 0.06);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 46, 33, 0.04);
}

.category-mobile-post-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f0;
}

.category-mobile-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-mobile-post-card__body {
  padding: 14px;
}

.category-mobile-post-card__title {
  margin: 0 0 8px;
  font: 600 15px/1.4 "Poppins", sans-serif;
}

.category-mobile-post-card__title a {
  color: #17231f;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-mobile-post-card__date {
  color: #7b8984;
  font: 500 11px/1.3 "Poppins", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .category-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .category-archive-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
  }

  .category-archive-sidebar {
    position: sticky;
    top: 96px;
  }

  .category-archive-mobile-posts {
    display: none !important;
  }
}

@media (max-width: 1023.98px) {
  .category-archive-sidebar {
    display: none !important;
  }

  .category-archive-mobile-posts {
    display: block;
    margin-top: 36px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  body.category {
    overflow-x: clip;
  }

  .category-archive-wrapper {
    padding-bottom: 32px;
    overflow-x: clip;
  }

  .category-archive-wrapper .category-archive-layout.container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 12px !important;
  }

  .category-archive-breadcrumb {
    padding: 14px 0 8px;
  }

  .category-archive-hero {
    padding: 0 0 24px;
  }

  .category-archive-empty {
    padding: 32px 20px;
  }

  .category-archive-search {
    flex-direction: column;
    align-items: stretch;
  }

  .category-archive-search input[type="search"] {
    flex: 0 0 46px;
    width: 100%;
    height: 46px;
    max-height: 46px;
  }

  .category-archive-search__btn {
    width: 100%;
  }

  .category-archive-mobile-posts__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-inline: -12px;
    padding: 0 12px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .category-archive-mobile-posts__grid::-webkit-scrollbar {
    display: none;
  }

  .category-mobile-post-card {
    flex: 0 0 min(calc(100vw - 48px), 280px);
    width: min(calc(100vw - 48px), 280px);
    max-width: min(calc(100vw - 48px), 280px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* ==========================================================
   404 page
   ========================================================== */
body.error404 {
  background: #f8faf9;
}

.error-404-page {
  min-height: calc(100vh - 220px);
}

.error-404-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 72px;
  background:
    radial-gradient(circle at 15% 20%, rgba(21, 167, 133, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(16, 99, 67, 0.06) 0%, transparent 38%),
    #f8faf9;
}

.error-404-wrapper .error-404-layout.container {
  width: min(100% - 32px, 720px) !important;
  max-width: 720px !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

.error-404-card {
  position: relative;
  overflow: hidden;
  padding: 42px 32px 36px;
  border: 1px solid #e5ece8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(15, 46, 33, 0.08);
  text-align: center;
}

.error-404-card__visual {
  position: relative;
  margin-bottom: 24px;
}

.error-404-card__code {
  display: block;
  color: rgba(20, 131, 105, 0.12);
  font: 800 clamp(88px, 22vw, 140px)/0.9 "Poppins", sans-serif;
  letter-spacing: -0.06em;
  user-select: none;
}

.error-404-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #edf8f4;
  color: #148369;
  transform: translate(-50%, -58%);
  box-shadow: 0 8px 24px rgba(21, 167, 133, 0.14);
}

.error-404-card__trail {
  position: absolute;
  right: -20%;
  bottom: -8px;
  left: -20%;
  height: 72px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(237, 248, 244, 0.9) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0 90 L120 72 L260 84 L420 58 L580 76 L760 48 L920 68 L1080 42 L1200 64 L1200 120 L0 120 Z' fill='%23dce7e2'/%3E%3Cpath d='M0 98 L140 80 L300 92 L470 66 L640 82 L810 56 L980 74 L1150 50 L1200 58 L1200 120 L0 120 Z' fill='%23e8f3ef'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}

.error-404-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf8f4;
  color: #148369;
  font: 600 11px/1.2 "Poppins", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.error-404-card__title {
  margin: 0 0 12px;
  color: #17231f;
  font: 700 clamp(24px, 4.5vw, 34px)/1.2 "Poppins", sans-serif;
  letter-spacing: -0.03em;
}

.error-404-card__text {
  max-width: 520px;
  margin: 0 auto 24px;
  color: #5e6f68;
  font: 400 15px/1.7 "Poppins", sans-serif;
}

.error-404-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 22px;
}

.error-404-search input[type="search"] {
  flex: 1 1 240px;
  width: auto;
  min-width: 0;
  height: 48px;
  max-height: 48px;
  padding: 0 14px;
  border: 1px solid #dce7e2;
  border-radius: 10px;
  background: #fff;
  color: #17231f;
  font: 400 14px/1.4 "Poppins", sans-serif;
  line-height: normal;
  outline: none;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.error-404-search input[type="search"]:focus {
  border-color: #15a785;
  box-shadow: 0 0 0 3px rgba(21, 167, 133, 0.12);
}

.error-404-search__btn {
  flex: 0 0 auto;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding: 0 20px;
  border: 1px solid #106343;
  border-radius: 10px;
  background: #106343;
  color: #fff;
  font: 600 13px/1 "Poppins", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.error-404-search__btn:hover {
  background: #148369;
  border-color: #148369;
}

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.error-404-actions .tl-btn {
  min-width: 160px;
}

.error-404-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  color: #c5d0cb;
  font: 500 13px/1.4 "Poppins", sans-serif;
}

.error-404-links a {
  color: #148369;
  text-decoration: none;
  transition: color 0.2s ease;
}

.error-404-links a:hover {
  color: #106343;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 767.98px) {
  body.error404 {
    overflow-x: clip;
  }

  .error-404-wrapper {
    padding: 20px 0 48px;
  }

  .error-404-wrapper .error-404-layout.container {
    width: min(100% - 24px, 720px) !important;
  }

  .error-404-card {
    padding: 32px 20px 28px;
    border-radius: 16px;
  }

  .error-404-card__icon {
    width: 72px;
    height: 72px;
  }

  .error-404-card__icon svg {
    width: 44px;
    height: 44px;
  }

  .error-404-search {
    flex-direction: column;
    align-items: stretch;
  }

  .error-404-search input[type="search"] {
    flex: 0 0 48px;
    width: 100%;
    height: 48px;
    max-height: 48px;
  }

  .error-404-search__btn {
    width: 100%;
  }

  .error-404-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-404-actions .tl-btn {
    width: 100%;
    min-width: 0;
  }
}

/* ==========================================================
   Shop archive — unified hero + filter band background
   ========================================================== */
.shop_wrapper {
  --shop-top-bg: #f5f6f5;
}

@media (min-width: 1024px) {
  .shop_wrapper {
    --shop-top-bg: #f7f8f7;
  }
}

.shop_wrapper > .container:first-of-type,
.shop_wrapper .shop_sticky_band {
  background: var(--shop-top-bg) !important;
}

.shop_wrapper .shop_sticky_band {
  border-bottom: none !important;
  box-shadow: none !important;
}

.shop_wrapper .shop_controls_inner {
  border-top-color: rgba(28, 59, 51, 0.06) !important;
}

/* ==========================================================
   Shop archive — mobile list / grid layout toggle
   ========================================================== */
.shop_wrapper .shop-layout-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid rgba(28, 59, 51, 0.14);
  border-radius: 10px;
  background: #fff;
  color: #1a2421;
  box-shadow: 0 1px 4px rgba(15, 46, 33, 0.06);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.shop_wrapper .shop-layout-toggle:hover {
  border-color: rgba(16, 99, 67, 0.28);
  background: #fbfdfc;
  color: #106343;
}

.shop_wrapper .shop-layout-toggle:focus-visible {
  outline: 3px solid rgba(21, 167, 133, 0.16);
  outline-offset: 2px;
}

.shop_wrapper .shop-layout-toggle__icon[hidden] {
  display: none !important;
}

@media (min-width: 768px) {
  .shop_wrapper .shop-layout-toggle {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .shop_wrapper.is-list-view .product_wrap ul.products {
    gap: 12px !important;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card {
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 112px;
    border-radius: 14px !important;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card .card-image {
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
    min-height: 0 !important;
    aspect-ratio: 1 !important;
    border-radius: 14px 0 0 14px !important;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card .card-image a {
    height: 100%;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card .card-image .favorite {
    top: 6px !important;
    right: 6px !important;
    width: 28px !important;
    height: 28px !important;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card .card-image .badge {
    top: 6px !important;
    left: 6px !important;
    font-size: 9px !important;
    padding: 2px 6px !important;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card .card-content {
    padding: 12px 14px !important;
    gap: 6px !important;
    justify-content: center !important;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card .card-content h3 a {
    font-size: 14px !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card .card-content .product_infor_du {
    font-size: 10px !important;
    padding: 3px 8px !important;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card .card-content .card-footer {
    padding-top: 2px !important;
    margin-top: 0 !important;
    border-top: 0 !important;
  }

  .shop_wrapper.is-list-view .product_wrap ul.products .package-card .card-content .price_wrap .price {
    font-size: 15px !important;
  }

  .shop_wrapper.is-grid-view .product_wrap ul.products {
    gap: 16px !important;
  }

  .shop_wrapper.is-grid-view .product_wrap ul.products .package-card {
    flex-direction: column !important;
  }

  .shop_wrapper.is-grid-view .product_wrap ul.products .package-card .card-image {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 16px 16px 0 0 !important;
  }
}

/* ==========================================================
   Cart page — two-column layout + sticky totals
   ========================================================== */
body.woocommerce-cart .cart_chekout_page,
body.page-template-template-cart .cart_chekout_page {
  background: #f3f6f4;
}

.cart_chekout_page .heading_area {
  margin-bottom: 18px !important;
}

.cart_chekout_page .heading_area h1 {
  margin-bottom: 6px !important;
  font-size: clamp(32px, 3.5vw, 44px) !important;
}

.cart_chekout_page .heading_area p {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.cart_chekout_page {
  padding-top: 32px !important;
  padding-bottom: 48px !important;
}

.cart_chekout_page > .container {
  max-width: 1440px !important;
}

.cart_chekout_page .content_wrapper {
  min-width: 0;
  width: 100%;
}

.cart_chekout_page .content_wrapper .wp-block-post-content,
.cart_chekout_page .content_wrapper .entry-content,
.cart_chekout_page .content_wrapper .wp-block-woocommerce-cart,
.cart_chekout_page .content_wrapper .wc-block-cart,
.cart_chekout_page .content_wrapper > .woocommerce {
  width: 100% !important;
  max-width: none !important;
}

.cart_chekout_page .wp-block-woocommerce-cart,
.cart_chekout_page .wc-block-cart,
.cart_chekout_page .wc-block-components-sidebar-layout {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.cart_chekout_page .wp-block-woocommerce-filled-cart-block {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start !important;
  width: 100% !important;
  margin: 0 !important;
}

.cart_chekout_page .wp-block-woocommerce-filled-cart-block:not([hidden]) ~ .wp-block-woocommerce-empty-cart-block {
  display: none !important;
}

.cart_chekout_page .wp-block-woocommerce-cart-items-block,
.cart_chekout_page .wp-block-woocommerce-cart-totals-block,
.cart_chekout_page .wc-block-cart__main,
.cart_chekout_page .wc-block-components-main,
.cart_chekout_page .wc-block-cart__sidebar,
.cart_chekout_page .wc-block-components-sidebar {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
  float: none !important;
  flex: none !important;
  max-height: none !important;
  overflow: visible !important;
}

.cart_chekout_page .wc-block-components-sidebar .triloka-cart-sticky-bar {
  display: none !important;
}

.cart_chekout_page .wp-block-woocommerce-cart-totals-block,
.cart_chekout_page .wc-block-components-sidebar,
.cart_chekout_page .wc-block-cart .wc-block-components-sidebar {
  padding: 22px !important;
  border: 1px solid rgba(23, 61, 56, 0.1) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 14px 36px rgba(23, 61, 56, 0.07) !important;
}

.cart_chekout_page .wp-block-woocommerce-cart-order-summary-block,
.cart_chekout_page .wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
  margin: 0 0 8px !important;
  padding: 0 !important;
  border: 0 !important;
}

.cart_chekout_page .wc-block-cart__totals-title {
  margin: 0 0 14px !important;
  padding: 0 !important;
}

.cart_chekout_page .wc-block-components-sidebar .wc-block-components-title,
.cart_chekout_page .wc-block-components-sidebar h2,
.cart_chekout_page .wc-block-components-sidebar .wp-block-woocommerce-cart-totals-block-title {
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: 0 !important;
  color: #173d38 !important;
  font: 700 12px/1.3 "Poppins", sans-serif !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-coupon,
.cart_chekout_page .wc-block-components-sidebar .wc-block-components-panel {
  margin-bottom: 10px !important;
  padding: 0 !important;
}

.cart_chekout_page .wc-block-components-sidebar .wc-block-components-panel__button {
  width: 100% !important;
  min-height: 42px !important;
  padding: 10px 14px !important;
  border: 1px solid #e3ebe7 !important;
  border-radius: 10px !important;
  background: #fafcfb !important;
  color: #526762 !important;
  font: 500 13px/1.35 "Poppins", sans-serif !important;
  text-align: left !important;
}

.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-item,
.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-footer-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px 16px !important;
  align-items: start !important;
  width: 100% !important;
  padding: 11px 0 !important;
  border-bottom: 1px solid #eef2f0 !important;
  flex-wrap: nowrap !important;
}

.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-footer-item {
  margin-top: 6px !important;
  padding-top: 16px !important;
  border-top: 2px solid #e8eeeb !important;
  border-bottom: 0 !important;
}

.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-item__label,
.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  flex: unset !important;
  flex-grow: unset !important;
  min-width: 0 !important;
  max-width: none !important;
  white-space: normal !important;
  word-break: break-word !important;
  color: #5f6d68 !important;
  font: 500 12px/1.45 "Poppins", sans-serif !important;
}

.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-item__value,
.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  align-self: start !important;
  text-align: right !important;
  white-space: nowrap !important;
  color: #173d38 !important;
  font: 600 13px/1.45 "Poppins", sans-serif !important;
}

.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: #173d38 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.cart_chekout_page .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.cart_chekout_page .wc-block-cart__submit-container,
.cart_chekout_page .wc-block-components-sidebar .wc-block-cart__submit {
  margin-top: 18px !important;
}

.cart_chekout_page .wc-block-cart__submit-container a,
.cart_chekout_page .wc-block-components-sidebar .wc-block-cart__submit a,
.cart_chekout_page .wc-block-components-sidebar .wc-block-cart__submit-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px !important;
  padding: 13px 20px !important;
  border: 1px solid #159b78 !important;
  border-radius: 10px !important;
  background: #159b78 !important;
  color: #fff !important;
  font: 600 14px/1.2 "Poppins", sans-serif !important;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(21, 155, 120, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cart_chekout_page .wc-block-cart__submit-container a:hover,
.cart_chekout_page .wc-block-components-sidebar .wc-block-cart__submit a:hover {
  background: #107b60 !important;
  border-color: #107b60 !important;
  color: #fff !important;
}

@media (max-width: 782px) {
  body.woocommerce-cart,
  body.page-template-template-cart {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  /* Persistent floating checkout bar: total on the left, button on the right.
     We anchor the single WooCommerce submit container to the bottom of the
     screen (regardless of its scroll-driven --sticky class) so it never
     disappears on mobile. */
  .cart_chekout_page .wc-block-cart__submit {
    margin: 0 !important;
  }

  .cart_chekout_page .wc-block-cart__submit-container {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    background: #fff !important;
    border-top: 1px solid #e8eeeb !important;
    box-shadow: 0 -8px 24px rgba(15, 46, 33, 0.08) !important;
  }

  .cart_chekout_page .wc-block-cart__submit-container::before {
    display: none !important;
  }

  .cart_chekout_page .triloka-cart-sticky-bar {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 40%;
  }

  .cart_chekout_page .triloka-cart-sticky-bar__total {
    min-width: 0;
  }

  .cart_chekout_page .triloka-cart-sticky-bar__label {
    display: block;
    margin-bottom: 2px;
    color: #6b7c76 !important;
    font: 600 10px/1.3 "Poppins", sans-serif !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .cart_chekout_page .triloka-cart-sticky-bar__value {
    display: block;
    color: #173d38 !important;
    font: 700 18px/1.2 "Poppins", sans-serif !important;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .cart_chekout_page .wc-block-cart__submit-container .wc-block-cart__submit-button,
  .cart_chekout_page .wc-block-cart__submit-container a {
    flex: 1 1 auto !important;
    width: auto !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
  }
}

.cart_chekout_page table.wc-block-cart-items {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  border: 0 !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}

.cart_chekout_page table.wc-block-cart-items thead,
.cart_chekout_page table.wc-block-cart-items .wc-block-cart-items__header {
  display: none !important;
}

.cart_chekout_page table.wc-block-cart-items tbody {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
}

/* Each cart row becomes a flex card that fills the full width */
.cart_chekout_page table.wc-block-cart-items tbody tr.wc-block-cart-items__row {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 20px 24px !important;
  background: #fff !important;
  border: 1px solid #e8eeeb !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 12px rgba(15, 46, 33, 0.05) !important;
  transition: box-shadow 0.18s ease, border-color 0.18s ease !important;
}

.cart_chekout_page table.wc-block-cart-items tbody tr.wc-block-cart-items__row:hover {
  border-color: #d3e2db !important;
  box-shadow: 0 6px 20px rgba(15, 46, 33, 0.08) !important;
}

.cart_chekout_page table.wc-block-cart-items tbody td {
  padding: 0 !important;
  border: 0 !important;
  vertical-align: middle !important;
}

/* Image */
.cart_chekout_page table.wc-block-cart-items td.wc-block-cart-item__image {
  flex: 0 0 auto !important;
}

.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__image img {
  display: block;
  width: 82px !important;
  height: 82px !important;
  border-radius: 12px;
  object-fit: cover;
}

/* Product details (title + meta) take the remaining space */
.cart_chekout_page table.wc-block-cart-items td.wc-block-cart-item__product {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.cart_chekout_page table.wc-block-cart-items td.wc-block-cart-item__product > .wc-block-cart-item__wrap,
.cart_chekout_page table.wc-block-cart-items td.wc-block-cart-item__product > div:first-child {
  display: block;
  min-width: 0;
}

.cart_chekout_page table.wc-block-cart-items a.wc-block-components-product-name {
  display: block;
  margin: 0 0 8px !important;
  padding-right: 12px;
  overflow: hidden;
  color: #173d38 !important;
  font: 600 15px/1.35 "Poppins", sans-serif !important;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart_chekout_page table.wc-block-cart-items a.wc-block-components-product-name:hover {
  color: #159b78 !important;
}

.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__prices,
.cart_chekout_page table.wc-block-cart-items .wc-block-components-product-metadata__description {
  display: none !important;
}

/* The quantity wrapper also hosts the Remove button, so we can't hide it
   outright. Unwrap it (display: contents) and hide only the editable stepper —
   bookings are fixed-quantity — while keeping the Remove button rendered. */
.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__quantity {
  display: contents !important;
}

.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__quantity .wc-block-components-quantity-selector,
.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__quantity input.wc-block-components-quantity-selector__input {
  display: none !important;
}

.cart_chekout_page table.wc-block-cart-items .wc-block-components-product-metadata {
  margin: 0 !important;
}

/* Booking meta as neat chips that flow across the width */
.cart_chekout_page table.wc-block-cart-items .wc-block-components-product-details {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.cart_chekout_page table.wc-block-cart-items .wc-block-components-product-details li {
  display: inline-flex !important;
  align-items: baseline;
  gap: 5px;
  max-width: 100%;
  margin: 0 !important;
  padding: 4px 10px !important;
  overflow: hidden;
  background: #f4f8f6 !important;
  border-radius: 999px !important;
  color: #4f5d58 !important;
  font: 500 11px/1.4 "Poppins", sans-serif !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart_chekout_page table.wc-block-cart-items .wc-block-components-product-details__name {
  flex-shrink: 0;
  color: #8a9691 !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart_chekout_page table.wc-block-cart-items .wc-block-components-product-details__value {
  color: #2f3d38 !important;
  font-weight: 600 !important;
}

/* Price pinned to the far right */
.cart_chekout_page table.wc-block-cart-items td.wc-block-cart-item__total {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  padding: 0 62px 0 20px !important;
  color: #173d38 !important;
  font: 700 17px/1.3 "Poppins", sans-serif !important;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-align: right !important;
}

/* Remove button — one clear, always-visible X at the top-right */
.cart_chekout_page table.wc-block-cart-items td.wc-block-cart-item__remove {
  flex: 0 0 auto !important;
}

/* Keep WooCommerce's native remove icon and give it a larger touch target. */
.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__remove-icon {
  display: inline-flex !important;
  width: 22px !important;
  height: 22px !important;
}

.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__remove-link,
.cart_chekout_page table.wc-block-cart-items a.wc-block-cart-item__remove-link,
.cart_chekout_page table.wc-block-cart-items button.wc-block-cart-item__remove-link {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid #efb5b8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #d33d45 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(180, 40, 40, 0.14) !important;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease, transform 0.15s ease;
}

/* Normalize the native icon size across WooCommerce block versions. */
.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__remove-link > svg,
.cart_chekout_page table.wc-block-cart-items a.wc-block-cart-item__remove-link > svg,
.cart_chekout_page table.wc-block-cart-items button.wc-block-cart-item__remove-link > svg {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  color: currentColor !important;
}

/* Do not add a second custom icon over WooCommerce's native icon. */
.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__remove-link::before,
.cart_chekout_page table.wc-block-cart-items a.wc-block-cart-item__remove-link::before,
.cart_chekout_page table.wc-block-cart-items button.wc-block-cart-item__remove-link::before {
  display: none !important;
  content: none;
}

.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__remove-link:hover,
.cart_chekout_page table.wc-block-cart-items a.wc-block-cart-item__remove-link:hover,
.cart_chekout_page table.wc-block-cart-items button.wc-block-cart-item__remove-link:hover {
  background: #d64545 !important;
  border-color: #d64545 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(180, 40, 40, 0.28) !important;
  transform: translateY(-1px);
}

.cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__remove-link:active {
  transform: translateY(0);
}

.cart_chekout_page .woocommerce-cart-form,
.cart_chekout_page .cart-collaterals {
  min-width: 0;
  width: 100%;
}

.cart_chekout_page .woocommerce-cart-form .shop_table {
  width: 100% !important;
  max-width: none !important;
}

.cart_chekout_page .cart_totals {
  padding: 22px;
  border: 1px solid rgba(23, 61, 56, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(23, 61, 56, 0.07);
}

.cart_chekout_page .cart_totals h2 {
  margin: 0 0 16px;
  color: #173d38;
  font: 700 12px/1.3 "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart_chekout_page .cart_totals .shop_table {
  width: 100%;
}

.cart_chekout_page .cart_totals .shop_table th,
.cart_chekout_page .cart_totals .shop_table td {
  padding: 11px 0;
  border-top: 1px solid #eef2f0;
  vertical-align: top;
}

.cart_chekout_page .cart_totals .shop_table th {
  width: 58%;
  padding-right: 16px;
  color: #5f6d68;
  font: 500 12px/1.45 "Poppins", sans-serif;
  text-align: left;
  white-space: normal;
  word-break: break-word;
}

.cart_chekout_page .cart_totals .shop_table td {
  color: #173d38;
  font: 600 13px/1.45 "Poppins", sans-serif;
  text-align: right;
  white-space: nowrap;
}

.cart_chekout_page .cart_totals .order-total th,
.cart_chekout_page .cart_totals .order-total td {
  padding-top: 16px;
  border-top: 2px solid #e8eeeb;
  color: #173d38;
  font-size: 14px;
  font-weight: 700;
}

.cart_chekout_page .cart_totals .order-total td {
  font-size: 22px;
}

.cart_chekout_page .wc-proceed-to-checkout a.checkout-button,
.cart_chekout_page .cart_totals .checkout-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  padding: 13px 20px !important;
  border-radius: 10px !important;
  background: #159b78 !important;
  color: #fff !important;
  font: 600 14px/1.2 "Poppins", sans-serif !important;
  text-decoration: none !important;
}

@media (min-width: 1024px) {
  .cart_chekout_page .wp-block-woocommerce-filled-cart-block,
  .cart_chekout_page .wc-block-cart.wc-block-components-sidebar-layout:not(:has(.wp-block-woocommerce-filled-cart-block)) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 28px !important;
    align-items: start !important;
  }

  .cart_chekout_page .wp-block-woocommerce-cart-items-block,
  .cart_chekout_page .wc-block-cart__main,
  .cart_chekout_page .wc-block-components-main {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .cart_chekout_page .wp-block-woocommerce-cart-totals-block,
  .cart_chekout_page .wc-block-components-sidebar,
  .cart_chekout_page .wc-block-cart .wc-block-components-sidebar,
  .cart_chekout_page .wc-block-cart__sidebar {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 22px !important;
    position: sticky;
    top: 96px;
    align-self: start;
    z-index: 1;
  }

  .cart_chekout_page table.wc-block-cart-items .wc-block-cart-items__header {
    display: none;
  }

  .cart_chekout_page .content_wrapper > .woocommerce:has(.woocommerce-cart-form) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 24px;
    align-items: start;
  }

  .cart_chekout_page .woocommerce-cart-form {
    grid-column: 1;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    padding-right: 6px;
  }

  .cart_chekout_page .cart-collaterals {
    grid-column: 2;
    position: sticky;
    top: 88px;
    align-self: start;
    width: 100%;
  }

  .cart_chekout_page .cart-collaterals .cart_totals {
    width: 100% !important;
    float: none !important;
  }
}

@media (max-width: 1023.98px) {
  .cart_chekout_page .wc-block-components-sidebar,
  .cart_chekout_page .wc-block-cart .wc-block-components-sidebar,
  .cart_chekout_page .cart-collaterals {
    position: static;
    top: auto;
  }

  .cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__image img {
    width: 72px !important;
    height: 72px !important;
  }

  .cart_chekout_page table.wc-block-cart-items a.wc-block-components-product-name {
    font-size: 15px !important;
  }

  .cart_chekout_page table.wc-block-cart-items td.wc-block-cart-item__total {
    font-size: 15px !important;
  }
}

@media (max-width: 600px) {
  /* Stack the row: image top-left, details flow, price on its own line */
  .cart_chekout_page table.wc-block-cart-items tbody tr.wc-block-cart-items__row {
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 12px 14px !important;
    padding: 16px !important;
  }

  .cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__remove-link,
  .cart_chekout_page table.wc-block-cart-items a.wc-block-cart-item__remove-link,
  .cart_chekout_page table.wc-block-cart-items button.wc-block-cart-item__remove-link {
    top: 14px;
    right: 14px;
  }

  .cart_chekout_page table.wc-block-cart-items .wc-block-cart-item__image img {
    width: 60px !important;
    height: 60px !important;
  }

  .cart_chekout_page table.wc-block-cart-items td.wc-block-cart-item__product {
    flex: 1 1 0 !important;
  }

  .cart_chekout_page table.wc-block-cart-items a.wc-block-components-product-name {
    font-size: 14px !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }

  .cart_chekout_page table.wc-block-cart-items .wc-block-components-product-details li {
    white-space: normal !important;
  }

  /* Price drops to a full-width line under the details */
  .cart_chekout_page table.wc-block-cart-items td.wc-block-cart-item__total {
    flex: 1 0 100% !important;
    margin-left: 0 !important;
    padding: 8px 0 0 74px !important;
    text-align: left !important;
    font-size: 16px !important;
  }
}
