/*
* Template Name: UntreeStore
* Template Author: Untree.co
* Author URI: https://untree.co/
* License: https://creativecommons.org/licenses/by/3.0/
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
body {
  overflow-x: hidden;
  position: relative; }

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #6a6a6a;
  font-size: 14px;
  background-color: #eff2f1; }

a {
  text-decoration: none;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #2f2f2f;
  text-decoration: underline; }
  a:hover {
    color: #2f2f2f;
    text-decoration: none; }
  a.more {
    font-weight: 600; }

.custom-navbar {
  background: #3b5d50 !important;
  padding-top: 10px;
  padding-bottom: 10px; }
  .custom-navbar .navbar-brand {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none; }
  .custom-navbar .navbar-brand:hover,
  .custom-navbar .navbar-brand:focus {
    color: rgba(255, 255, 255, 0.85); }
    .custom-navbar .navbar-brand > span {
      opacity: .4; }
    .custom-navbar .navbar-brand img {
      display: block;
      max-height: 44px;
      width: auto;
      object-fit: contain; }
  /* ── Navbar search button ── */
  .nav-search-btn {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    border-radius: 10px;
    padding: .5rem .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s;
    margin-left: 1rem;
    flex-shrink: 0; }
  .nav-search-btn:hover { background: rgba(255,255,255,.18); }
  .search-kbd-hint {
    display: none; }
  @media (min-width: 768px) {
    .search-kbd-hint {
      display: flex;
      align-items: center;
      gap: .2rem; }
    .search-kbd-hint kbd {
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 4px;
      padding: .05rem .35rem;
      font-size: .72rem;
      font-family: inherit;
      color: rgba(255,255,255,.75);
      line-height: 1.6; } }

  .custom-navbar .navbar-toggler {
    border-color: transparent; }
    .custom-navbar .navbar-toggler:active, .custom-navbar .navbar-toggler:focus {
      -webkit-box-shadow: none;
      box-shadow: none;
      outline: none; }

/* ── Mobile hamburger button ── */
.nav-drawer-btn {
  background: transparent;
  border: none;
  padding: .4rem .5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px; }
.nav-drawer-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .25s ease; }
.nav-drawer-btn:hover span { background: rgba(255,255,255,.75); }

/* ── Drawer overlay ── */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease; }
.nav-drawer-overlay.open {
  opacity: 1;
  pointer-events: all; }

/* ── Drawer panel ── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 285px;
  height: 100%;
  background: #2a4a3e;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden; }
.nav-drawer.open {
  transform: translateX(0);
  box-shadow: -8px 0 40px rgba(0,0,0,.35); }

body.drawer-open { overflow: hidden; }

/* Drawer head */
.nav-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0; }
.drawer-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px; }
.drawer-close-btn {
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.8);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .9rem;
  transition: background .15s; }
.drawer-close-btn:hover {
  background: rgba(255,255,255,.2);
  color: #fff; }

/* Drawer nav links */
.drawer-nav {
  flex: 1;
  padding: .75rem 0; }
.drawer-link {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.5rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .97rem;
  font-weight: 500;
  transition: background .15s, color .15s, border-color .15s;
  border-left: 3px solid transparent;
  position: relative; }
.drawer-link i {
  width: 18px;
  text-align: center;
  font-size: .9rem;
  flex-shrink: 0; }
.drawer-link:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
  text-decoration: none; }
.drawer-link.active {
  background: rgba(249,191,41,.1);
  color: #f9bf29;
  border-left-color: #f9bf29;
  font-weight: 600; }
.drawer-link.active i { color: #f9bf29; }

/* Drawer footer */
.drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0; }
.btn-drawer-shop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: .75rem 1rem;
  background: #f9bf29;
  color: #2a2a2a;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s; }
.btn-drawer-shop:hover {
  background: #e5ac1a;
  color: #1a1a1a;
  text-decoration: none; }

  @media (min-width: 992px) {
    .custom-navbar .custom-navbar-nav li {
      margin-left: 15px;
      margin-right: 15px; } }
  .custom-navbar .custom-navbar-nav li a {
    font-weight: 500;
    color: #ffffff !important;
    opacity: .5;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    position: relative; }
    @media (min-width: 768px) {
      .custom-navbar .custom-navbar-nav li a:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 8px;
        right: 8px;
        background: #f9bf29;
        height: 5px;
        opacity: 1;
        visibility: visible;
        width: 0;
        -webkit-transition: .15s all ease-out;
        -o-transition: .15s all ease-out;
        transition: .15s all ease-out; } }
    .custom-navbar .custom-navbar-nav li a:hover {
      opacity: 1; }
      .custom-navbar .custom-navbar-nav li a:hover:before {
        width: calc(100% - 16px); }
  .custom-navbar .custom-navbar-nav li.active a {
    opacity: 1; }
    .custom-navbar .custom-navbar-nav li.active a:before {
      width: calc(100% - 16px); }
  .custom-navbar .custom-navbar-cta {
    margin-left: 0 !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
    @media (min-width: 768px) {
      .custom-navbar .custom-navbar-cta {
        margin-left: 40px !important; } }
    .custom-navbar .custom-navbar-cta li {
      margin-left: 0px;
      margin-right: 0px; }
      .custom-navbar .custom-navbar-cta li:first-child {
        margin-right: 20px; }

.hero {
  background: #3b5d50;
  padding: calc(4rem - 30px) 0 0rem 0; }
  @media (min-width: 768px) {
    .hero {
      padding: calc(4rem - 30px) 0 4rem 0; } }
  @media (min-width: 992px) {
    .hero {
      padding: calc(8rem - 30px) 0 8rem 0; } }
  .hero .intro-excerpt {
    position: relative;
    z-index: 4; }
    @media (min-width: 992px) {
      .hero .intro-excerpt {
        max-width: 450px; } }
  .hero h1 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px; }
    @media (min-width: 1400px) {
      .hero h1 {
        font-size: 54px; } }
  .hero p {
    color: rgba(255, 255, 255, 0.5);
    margin-botom: 30px; }
  .hero .hero-img-wrap {
    position: relative; }
    .hero .hero-img-wrap img {
      position: relative;
      top: 0px;
      right: 0px;
      z-index: 2;
      max-width: 780px;
      width: 100%;
      left: -20px; }
      @media (min-width: 768px) {
        .hero .hero-img-wrap img {
          right: 0px;
          left: -100px; } }
      @media (min-width: 992px) {
        .hero .hero-img-wrap img {
          left: 0px;
          top: -80px;
          position: absolute;
          right: -50px; } }
      @media (min-width: 1200px) {
        .hero .hero-img-wrap img {
          left: 0px;
          top: -80px;
          right: -100px; } }
    .hero .hero-img-wrap:after {
      content: "";
      display: none;
      position: absolute;
      width: 255px;
      height: 217px;
      background-image: url("../images/dots-light.svg");
      background-size: contain;
      background-repeat: no-repeat;
      right: -100px;
      top: -0px; }
      @media (min-width: 1200px) {
        .hero .hero-img-wrap:after {
          top: -40px; } }

.btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  color: #ffffff;
  background: #2f2f2f;
  border-color: #2f2f2f; }
  .btn:hover {
    color: #ffffff;
    background: #222222;
    border-color: #222222; }
  .btn:active, .btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn.btn-primary {
    background: #3b5d50;
    border-color: #3b5d50; }
    .btn.btn-primary:hover {
      background: #314d43;
      border-color: #314d43; }
  .btn.btn-secondary {
    color: #2f2f2f;
    background: #f9bf29;
    border-color: #f9bf29; }
    .btn.btn-secondary:hover {
      background: #f8b810;
      border-color: #f8b810; }
  .btn.btn-white-outline {
    background: transparent;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.3); }
    .btn.btn-white-outline:hover {
      border-color: white;
      color: #ffffff; }

.section-title {
  color: #2f2f2f; }

.product-section {
  padding: 7rem 0; }
  .product-section .product-item {
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    padding-bottom: 56px;
    cursor: pointer;
    isolation: isolate; }
    .product-section .product-item .product-thumbnail {
      margin-bottom: 18px;
      position: relative;
      top: 0;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 4 / 6;
      background: #f5f5f5; }
    .product-section .product-item .product-thumbnail img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
    .product-section .product-item .product-meta {
      padding: 0 .25rem .25rem;
      min-height: 64px; }
    .product-section .product-item .product-title {
      font-weight: 600;
      font-size: 15px;
      color: #2f2f2f;
      margin-bottom: .3rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-decoration: none; }
    .product-section .product-item h3 {
      font-weight: 600;
      font-size: 16px; }
    .product-section .product-item strong {
      font-weight: 800 !important;
      font-size: 18px !important; }
    .product-section .product-item h3, .product-section .product-item strong {
      color: #2f2f2f;
      text-decoration: none; }
    .product-section .product-item:before {
      bottom: 0;
      left: 0;
      right: 0;
      position: absolute;
      content: "";
      background: #dce5e4;
      height: 0%;
      z-index: -1;
      border-radius: 10px;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .product-section .product-item:hover .product-thumbnail {
      top: -20px; }
    .product-section .product-item:hover:before {
      height: 72%; }

/* ── WhatsApp button on product cards (global) ──────── */
.wa-btn {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  background: #25d366;
  color: #fff !important;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: .2s;
  z-index: 2;
  text-decoration: none; }
  .wa-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: #fff !important; }

/* ── Share button on product cards (global) ─────────── */
.share-card-btn {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: #f0f0f0;
  color: #555;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: .2s;
  z-index: 2;
  border: none;
  cursor: pointer; }
  .share-card-btn:hover {
    background: #3b5d50;
    color: #fff;
    transform: scale(1.1); }

/* ── Product price in cards ──────────────────────────── */
.price-del {
  font-size: .8em;
  color: #bbb;
  text-decoration: line-through;
  margin-right: .3rem; }
.price-now {
  font-weight: 800;
  font-size: 1rem;
  color: #2f2f2f; }

/* ── Product badge labels (global) ──────────────────── */
.badge-sale,
.badge-new {
  position: absolute;
  top: .6rem;
  left: .6rem;
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 10px;
  z-index: 3;
  line-height: 1.4; }
  .badge-sale { background: #e24d4d; }
  .badge-new  { background: #3b5d50; }

/* ── Home page category catalogue ───────────────────── */
.catalogue-home {
  padding: 2.5rem 0 5rem; }
  .catalogue-home .home-cat-block {
    margin-bottom: 3.5rem; }
  .catalogue-home .home-cat-block:last-child {
    margin-bottom: 0; }
  @media (max-width: 767px) {
    .catalogue-home { padding: 1.5rem 0 3rem; }
    .catalogue-home .home-cat-block { margin-bottom: 2rem; } }

/* ── Related products card styles (mirrors .product-section) */
.related-section .product-item {
  text-align: center;
  display: block;
  position: relative;
  padding-bottom: 56px;
  cursor: pointer;
  isolation: isolate; }
  .related-section .product-item .product-thumbnail {
    margin-bottom: 18px;
    position: relative;
    top: 0;
    transition: .3s all ease;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #f5f5f5; }
  .related-section .product-item .product-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; }
  .related-section .product-item .product-meta {
    padding: 0 .25rem .25rem;
    min-height: 64px; }
  .related-section .product-item .product-title {
    font-weight: 600;
    font-size: 15px;
    color: #2f2f2f;
    margin-bottom: .3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .related-section .product-item h3 {
    font-weight: 600;
    font-size: 16px;
    color: #2f2f2f; }
  .related-section .product-item strong {
    font-weight: 800 !important;
    font-size: 18px !important;
    color: #2f2f2f; }
  .related-section .product-item:before {
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    background: #dce5e4;
    height: 0%;
    z-index: -1;
    border-radius: 10px;
    transition: .3s all ease; }
  .related-section .product-item:hover .product-thumbnail { top: -20px; }
  .related-section .product-item:hover:before { height: 72%; }

/* ── Category pill navigation (products + category pages) */
.filter-bar .cat-pill {
  display: inline-block;
  border: 2px solid #3b5d50;
  border-radius: 20px;
  padding: .3rem 1rem;
  background: #fff;
  color: #3b5d50;
  font-size: .85rem;
  text-decoration: none;
  transition: .2s; }
  .filter-bar .cat-pill.active,
  .filter-bar .cat-pill:hover {
    background: #3b5d50;
    color: #fff;
    text-decoration: none; }

/* ── Share button + dropdown on product detail page ───── */
.share-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #f0f5f3;
  color: #3b5d50;
  padding: .65rem 1.4rem;
  border-radius: 30px;
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid #3b5d50;
  cursor: pointer;
  transition: .2s; }
  .share-btn:hover { background: #3b5d50; color: #fff; }

.share-dropdown {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.13);
  padding: .4rem;
  min-width: 170px;
  z-index: 200; }
  .share-dropdown.open { display: block; }

.share-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .9rem;
  border-radius: 8px;
  color: #333;
  font-size: .88rem;
  text-decoration: none;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap; }
  .share-option:hover { background: #f5f5f5; color: #333; text-decoration: none; }

/* ── Page header description (category pages) ─────────── */
.page-header .page-header-desc {
  color: #aaa;
  font-size: .9rem;
  margin-top: .4rem;
  margin-bottom: 0; }

/* ════════════════════════════════════════════════════════
   SEARCH OVERLAY
   ════════════════════════════════════════════════════════ */
body.search-open { overflow: hidden; }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  visibility: hidden; }
.search-overlay.open {
  pointer-events: all;
  visibility: visible; }

/* Frosted dark backdrop */
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 12, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .22s ease; }
.search-overlay.open .search-backdrop { opacity: 1; }

/* Panel */
.search-panel {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  transform: translateY(-24px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  display: flex;
  flex-direction: column;
  max-height: 100vh; }
.search-overlay.open .search-panel {
  transform: translateY(0);
  opacity: 1; }

/* Head — input row */
.search-panel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0; }
@media (min-width: 768px) {
  .search-panel-head { padding: 2rem 2.5rem 0; } }

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  gap: .75rem;
  transition: border-color .2s; }
.search-input-wrap:focus-within {
  border-color: rgba(255,255,255,.4); }
.si-icon {
  color: rgba(255,255,255,.4);
  font-size: 1.1rem;
  flex-shrink: 0; }
#search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.15rem;
  font-family: inherit;
  caret-color: #f9bf29; }
#search-input::placeholder { color: rgba(255,255,255,.3); }
.si-clear {
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.6);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .8rem;
  transition: background .15s;
  flex-shrink: 0; }
.si-clear:hover { background: rgba(255,255,255,.2); color: #fff; }

.search-close-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  border-radius: 10px;
  padding: .5rem .9rem;
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0; }
.search-close-btn:hover { background: rgba(255,255,255,.16); color: #fff; }
.search-close-btn span {
  font-size: .7rem;
  opacity: .7;
  letter-spacing: .5px; }

/* Body — results */
.search-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent; }
@media (min-width: 768px) {
  .search-panel-body { padding: 1.5rem 2.5rem 2.5rem; } }

.sb-section { margin-bottom: 1.75rem; }

.sb-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .85rem; }
.sb-clear-all {
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  cursor: pointer;
  padding: 0;
  letter-spacing: .5px;
  text-transform: uppercase; }
.sb-clear-all:hover { color: rgba(255,255,255,.7); }
.sb-count {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .5px; }

/* Recent search items */
.sb-recent-list { display: flex; flex-direction: column; gap: .3rem; }
.sb-recent {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: .6rem 1rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  cursor: pointer;
  text-align: left;
  transition: background .15s; }
.sb-recent:hover, .sb-recent.is-active {
  background: rgba(255,255,255,.1);
  color: #fff; }
.sb-recent i { color: rgba(255,255,255,.3); font-size: .85rem; flex-shrink: 0; }
.sb-recent span { flex: 1; }
.sb-recent-rm {
  color: rgba(255,255,255,.25);
  font-size: .75rem;
  padding: .2rem .4rem;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0; }
.sb-recent-rm:hover { color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }

/* Category pills */
.sb-cat-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.sb-cat {
  display: inline-flex;
  padding: .4rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  color: rgba(255,255,255,.75);
  font-size: .83rem;
  text-decoration: none;
  transition: .15s;
  cursor: pointer; }
.sb-cat:hover, .sb-cat.is-active {
  background: #3b5d50;
  border-color: #3b5d50;
  color: #fff;
  text-decoration: none; }

/* Product suggestion rows */
.sb-products { display: flex; flex-direction: column; gap: .5rem; }
.sb-prod {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem .9rem;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  color: #fff;
  transition: background .15s;
  position: relative; }
.sb-prod:hover, .sb-prod.is-active {
  background: rgba(255,255,255,.1);
  text-decoration: none;
  color: #fff; }
.sb-prod-img {
  width: 52px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.05); }
.sb-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }
.sb-prod-info { flex: 1; min-width: 0; }
.sb-prod-title {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: .15rem; }
.sb-prod-title mark {
  background: rgba(249,191,41,.25);
  color: #f9bf29;
  border-radius: 2px; }
.sb-prod-cat {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  text-transform: capitalize;
  margin-bottom: .2rem; }
.sb-prod-price { font-size: .85rem; }
.sp-del { color: rgba(255,255,255,.3); text-decoration: line-through; margin-right: .3rem; font-size: .8em; }
.sp-now { color: #f9bf29; font-weight: 700; }
.sb-badge-sale {
  position: absolute;
  top: .6rem;
  right: .9rem;
  background: #e24d4d;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 6px; }

/* See all link */
.sb-see-all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.1rem;
  background: rgba(59,93,80,.15);
  border: 1px solid rgba(59,93,80,.4);
  border-radius: 12px;
  color: #a8c9be;
  font-size: .9rem;
  text-decoration: none;
  transition: .15s;
  margin-top: .5rem; }
.sb-see-all:hover {
  background: rgba(59,93,80,.3);
  color: #fff;
  text-decoration: none; }
.sb-see-all strong { color: #fff; }

/* Empty / hint states */
.sb-hint, .sb-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(255,255,255,.3); }
.sb-hint i, .sb-no-results i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block; }
.sb-hint p, .sb-no-results p { margin-bottom: .5rem; font-size: .95rem; }
.sb-no-results strong { color: rgba(255,255,255,.7); }
.sb-hint-sub, .sb-shortcut-hint { font-size: .8rem; color: rgba(255,255,255,.2); }
.sb-shortcut-hint kbd {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: .1rem .4rem;
  font-family: inherit;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin: 0 .1rem; }

/* ════════════════════════════════════════════════════════
   SEARCH RESULTS PAGE
   ════════════════════════════════════════════════════════ */
.sr-form { margin-bottom: 2.5rem; }
.sr-input-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  padding: .75rem 1.25rem;
  transition: border-color .2s;
  max-width: 640px; }
.sr-input-wrap:focus-within { border-color: #3b5d50; }
.sr-input-wrap i { color: #aaa; font-size: 1rem; flex-shrink: 0; }
.sr-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  color: #2f2f2f; }
.sr-input-wrap input::placeholder { color: #bbb; }
.sr-submit {
  background: #3b5d50;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: .5rem 1.1rem;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0; }
.sr-submit:hover { background: #2c4a3e; }

.sr-stats {
  color: #888;
  font-size: .88rem;
  margin-bottom: 1.5rem; }
.sr-stats strong { color: #2f2f2f; }

.sr-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #aaa; }
.sr-empty i {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.25rem;
  color: #d0d0d0; }
.sr-empty h3 { color: #555; margin-bottom: .5rem; }
.sr-empty p { font-size: .95rem; }

.why-choose-section {
  padding: 7rem 0; }
  .why-choose-section .img-wrap {
    position: relative; }
    .why-choose-section .img-wrap:before {
      position: absolute;
      content: "";
      width: 255px;
      height: 217px;
      background-image: url("../images/dots-yellow.svg");
      background-repeat: no-repeat;
      background-size: contain;
      -webkit-transform: translate(-40%, -40%);
      -ms-transform: translate(-40%, -40%);
      transform: translate(-40%, -40%);
      z-index: -1; }
    .why-choose-section .img-wrap img {
      border-radius: 20px; }

.feature {
  margin-bottom: 30px; }
  .feature .icon {
    display: inline-block;
    position: relative;
    margin-bottom: 20px; }
    .feature .icon:before {
      content: "";
      width: 33px;
      height: 33px;
      position: absolute;
      background: rgba(59, 93, 80, 0.2);
      border-radius: 50%;
      right: -8px;
      bottom: 0; }
  .feature h3 {
    font-size: 14px;
    color: #2f2f2f; }
  .feature p {
    font-size: 14px;
    line-height: 22px;
    color: #6a6a6a; }

.we-help-section {
  padding: 7rem 0; }
  .we-help-section .imgs-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[27];
    grid-template-columns: repeat(27, 1fr);
    position: relative; }
    .we-help-section .imgs-grid:before {
      position: absolute;
      content: "";
      width: 255px;
      height: 217px;
      background-image: url("../images/dots-green.svg");
      background-size: contain;
      background-repeat: no-repeat;
      -webkit-transform: translate(-40%, -40%);
      -ms-transform: translate(-40%, -40%);
      transform: translate(-40%, -40%);
      z-index: -1; }
    .we-help-section .imgs-grid .grid {
      position: relative; }
      .we-help-section .imgs-grid .grid img {
        border-radius: 20px;
        max-width: 100%; }
      .we-help-section .imgs-grid .grid.grid-1 {
        -ms-grid-column: 1;
        -ms-grid-column-span: 18;
        grid-column: 1 / span 18;
        -ms-grid-row: 1;
        -ms-grid-row-span: 27;
        grid-row: 1 / span 27; }
      .we-help-section .imgs-grid .grid.grid-2 {
        -ms-grid-column: 19;
        -ms-grid-column-span: 27;
        grid-column: 19 / span 27;
        -ms-grid-row: 1;
        -ms-grid-row-span: 5;
        grid-row: 1 / span 5;
        padding-left: 20px; }
      .we-help-section .imgs-grid .grid.grid-3 {
        -ms-grid-column: 14;
        -ms-grid-column-span: 16;
        grid-column: 14 / span 16;
        -ms-grid-row: 6;
        -ms-grid-row-span: 27;
        grid-row: 6 / span 27;
        padding-top: 20px; }

.custom-list {
  width: 100%; }
  .custom-list li {
    display: inline-block;
    width: calc(50% - 20px);
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px; }
    .custom-list li:before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 2px solid #3b5d50;
      position: absolute;
      left: 0;
      top: 8px; }

.popular-product {
  padding: 0 0 7rem 0; }
  .popular-product .product-item-sm h3 {
    font-size: 14px;
    font-weight: 700;
    color: #2f2f2f; }
  .popular-product .product-item-sm a {
    text-decoration: none;
    color: #2f2f2f;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    .popular-product .product-item-sm a:hover {
      color: rgba(47, 47, 47, 0.5); }
  .popular-product .product-item-sm p {
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 14px; }
  .popular-product .product-item-sm .thumbnail {
    margin-right: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    position: relative; }
    .popular-product .product-item-sm .thumbnail:before {
      content: "";
      position: absolute;
      border-radius: 20px;
      background: #dce5e4;
      width: 98px;
      height: 98px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: -1; }

.testimonial-section {
  padding: 3rem 0 7rem 0; }

.testimonial-slider-wrap {
  position: relative; }
  .testimonial-slider-wrap .tns-inner {
    padding-top: 30px; }
  .testimonial-slider-wrap .item .testimonial-block blockquote {
    font-size: 16px; }
    @media (min-width: 768px) {
      .testimonial-slider-wrap .item .testimonial-block blockquote {
        line-height: 32px;
        font-size: 18px; } }
  .testimonial-slider-wrap .item .testimonial-block .author-info .author-pic {
    margin-bottom: 20px; }
    .testimonial-slider-wrap .item .testimonial-block .author-info .author-pic img {
      max-width: 80px;
      border-radius: 50%; }
  .testimonial-slider-wrap .item .testimonial-block .author-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 0; }
  .testimonial-slider-wrap #testimonial-nav {
    position: absolute;
    top: 50%;
    z-index: 99;
    width: 100%;
    display: none; }
    @media (min-width: 768px) {
      .testimonial-slider-wrap #testimonial-nav {
        display: block; } }
    .testimonial-slider-wrap #testimonial-nav > span {
      cursor: pointer;
      position: absolute;
      width: 58px;
      height: 58px;
      line-height: 58px;
      border-radius: 50%;
      background: rgba(59, 93, 80, 0.1);
      color: #2f2f2f;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
      .testimonial-slider-wrap #testimonial-nav > span:hover {
        background: #3b5d50;
        color: #ffffff; }
    .testimonial-slider-wrap #testimonial-nav .prev {
      left: -10px; }
    .testimonial-slider-wrap #testimonial-nav .next {
      right: 0; }
  .testimonial-slider-wrap .tns-nav {
    position: absolute;
    bottom: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
    .testimonial-slider-wrap .tns-nav button {
      background: none;
      border: none;
      display: inline-block;
      position: relative;
      width: 0 !important;
      height: 7px !important;
      margin: 2px; }
      .testimonial-slider-wrap .tns-nav button:active, .testimonial-slider-wrap .tns-nav button:focus, .testimonial-slider-wrap .tns-nav button:hover {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: none; }
      .testimonial-slider-wrap .tns-nav button:before {
        display: block;
        width: 7px;
        height: 7px;
        left: 0;
        top: 0;
        position: absolute;
        content: "";
        border-radius: 50%;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease;
        background-color: #d6d6d6; }
      .testimonial-slider-wrap .tns-nav button:hover:before, .testimonial-slider-wrap .tns-nav button.tns-nav-active:before {
        background-color: #3b5d50; }

.before-footer-section {
  padding: 7rem 0 12rem 0 !important; }

.blog-section {
  padding: 7rem 0 12rem 0; }
  .blog-section .post-entry a {
    text-decoration: none; }
  .blog-section .post-entry .post-thumbnail {
    display: block;
    margin-bottom: 20px; }
    .blog-section .post-entry .post-thumbnail img {
      border-radius: 20px;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
  .blog-section .post-entry .post-content-entry {
    padding-left: 15px;
    padding-right: 15px; }
    .blog-section .post-entry .post-content-entry h3 {
      font-size: 16px;
      margin-bottom: 0;
      font-weight: 600;
      margin-bottom: 7px; }
    .blog-section .post-entry .post-content-entry .meta {
      font-size: 14px; }
      .blog-section .post-entry .post-content-entry .meta a {
        font-weight: 600; }
  .blog-section .post-entry:hover .post-thumbnail img, .blog-section .post-entry:focus .post-thumbnail img {
    opacity: .7; }

.footer-section {
  padding: 80px 0;
  background: #ffffff; }
  .footer-section .relative {
    position: relative; }
  .footer-section a {
    text-decoration: none;
    color: #2f2f2f;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    .footer-section a:hover {
      color: rgba(47, 47, 47, 0.5); }
  .footer-section .subscription-form {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    margin-top: 100px; }
    @media (min-width: 992px) {
      .footer-section .subscription-form {
        margin-top: 0px;
        margin-bottom: 80px; } }
    .footer-section .subscription-form h3 {
      font-size: 18px;
      font-weight: 500;
      color: #3b5d50; }
    .footer-section .subscription-form .form-control {
      height: 50px;
      border-radius: 10px;
      font-family: "Inter", sans-serif; }
      .footer-section .subscription-form .form-control:active, .footer-section .subscription-form .form-control:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #3b5d50;
        -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2); }
      .footer-section .subscription-form .form-control::-webkit-input-placeholder {
        font-size: 14px; }
      .footer-section .subscription-form .form-control::-moz-placeholder {
        font-size: 14px; }
      .footer-section .subscription-form .form-control:-ms-input-placeholder {
        font-size: 14px; }
      .footer-section .subscription-form .form-control:-moz-placeholder {
        font-size: 14px; }
    .footer-section .subscription-form .btn {
      border-radius: 10px !important; }
  .footer-section .sofa-img {
    position: absolute;
    top: -200px;
    z-index: 1;
    right: 0; }
    .footer-section .sofa-img img {
      max-width: 380px; }
  .footer-section .links-wrap {
    margin-top: 0px; }
    @media (min-width: 992px) {
      .footer-section .links-wrap {
        margin-top: 54px; } }
    .footer-section .links-wrap ul li {
      margin-bottom: 10px; }
  .footer-section .footer-logo-wrap .footer-logo {
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    color: #3b5d50; }
  .footer-section .custom-social li {
    margin: 2px;
    display: inline-block; }
    .footer-section .custom-social li a {
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 40px;
      display: inline-block;
      background: #dce5e4;
      color: #3b5d50;
      border-radius: 50%; }
      .footer-section .custom-social li a:hover {
        background: #3b5d50;
        color: #ffffff; }
  .footer-section .border-top {
    border-color: #dce5e4; }
    .footer-section .border-top.copyright {
      font-size: 14px !important; }

/* ── Bannerless page header ─────────────────────────── */
.page-header {
  background: #f4f7f5;
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid #e5eeea; }
  .page-header .breadcrumb {
    margin-bottom: .6rem;
    font-size: .83rem; }
  .page-header .breadcrumb-item a {
    color: #3b5d50;
    text-decoration: none; }
  .page-header .breadcrumb-item.active { color: #888; }
  .page-header .breadcrumb-item + .breadcrumb-item::before { color: #aaa; }
  .page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2f2f2f;
    margin: 0; }
  @media (max-width: 575px) {
    .page-header h1 { font-size: 1.5rem; }
    .page-header { padding: 1.25rem 0 1rem; } }

.untree_co-section {
  padding: 7rem 0; }
  /* First section immediately after the slim page-header gets less top space */
  .page-header + .untree_co-section,
  .page-header + .why-choose-section,
  .page-header + .product-section,
  .page-header + .untree_co-section.product-section {
    padding-top: 4rem; }

.form-control {
  height: 50px;
  border-radius: 10px;
  font-family: "Inter", sans-serif; }
  .form-control:active, .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #3b5d50;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2); }
  .form-control::-webkit-input-placeholder {
    font-size: 14px; }
  .form-control::-moz-placeholder {
    font-size: 14px; }
  .form-control:-ms-input-placeholder {
    font-size: 14px; }
  .form-control:-moz-placeholder {
    font-size: 14px; }

.service {
  line-height: 1.5; }
  .service .service-icon {
    border-radius: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #3b5d50;
    margin-right: 20px;
    color: #ffffff; }

textarea {
  height: auto !important; }

.site-blocks-table {
  overflow: auto; }
  .site-blocks-table .product-thumbnail {
    width: 200px; }
  .site-blocks-table .btn {
    padding: 2px 10px; }
  .site-blocks-table thead th {
    padding: 30px;
    text-align: center;
    border-width: 0px !important;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px; }
  .site-blocks-table td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.8); }
  .site-blocks-table tbody tr:first-child td {
    border-top: 1px solid #3b5d50 !important; }
  .site-blocks-table .btn {
    background: none !important;
    color: #000000;
    border: none;
    height: auto !important; }

.site-block-order-table th {
  border-top: none !important;
  border-bottom-width: 1px !important; }

.site-block-order-table td, .site-block-order-table th {
  color: #000000; }

.couponcode-wrap input {
  border-radius: 10px !important; }

.text-primary {
  color: #3b5d50 !important; }

.thankyou-icon {
  position: relative;
  color: #3b5d50; }
  .thankyou-icon:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 93, 80, 0.2); }

/* WhatsApp hover button on product cards */
.wa-btn {
  background: #25D366 !important;
  text-decoration: none !important; }
  .wa-btn i {
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .wa-btn:hover {
    background: #1ebe5a !important; }

/* Sale / stock badges on product cards */
.badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #F9A825;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: .5px;
  z-index: 1; }

.badge-out {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #6c757d;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: .5px;
  z-index: 1; }

.product-price del {
  color: #aaa;
  font-weight: 400;
  margin-right: 4px;
  font-size: 0.9em; }

/* ── Responsive Improvements ─────────────────────────── */
@media (max-width: 767px) {
  /* Hero section */
  .hero { padding: 60px 0 40px; }
  .hero .intro-excerpt h1 { font-size: 2rem; line-height: 1.25; }
  .hero .intro-excerpt p  { font-size: 0.95rem; }

  /* Product section padding */
  .untree_co-section { padding: 3.5rem 0; }

  /* Footer sofa image — hide on mobile (it overlaps content) */
  .footer-section .sofa-img { display: none; }

  /* Footer subscription form row */
  .footer-section .subscription-form { margin-top: 20px; }
  .footer-section .subscription-form .row { gap: 8px; }
  .footer-section .subscription-form .form-control { width: 100% !important; }
}

@media (max-width: 575px) {
  /* Navbar brand size */
  .custom-navbar .navbar-brand { font-size: 24px; color: #ffffff; }
  .custom-navbar .navbar-brand img { max-height: 36px; }

  /* Hero */
  .hero .intro-excerpt h1 { font-size: 1.75rem; }

  /* Product section */
  .untree_co-section { padding: 2.5rem 0; }

  /* Product item title */
  .product-title { font-size: 0.9rem; }

  /* Filter bar wrapping */
  .filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .filter-bar .filter-btn { margin: 0; font-size: 0.78rem; padding: 5px 14px; }

  /* Contact form full width fields */
  .col-auto .form-control { width: 100% !important; }
}

/* ── Product image slider (product detail page) ──────────────── */
.product-img-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
  width: 100%;
  aspect-ratio: 4 / 5;
  user-select: none;
}
.product-img-slider #main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity .2s ease;
}
/* Prev / next arrow buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0,0,0,.14);
  transition: background .15s, transform .15s, box-shadow .15s;
  color: #333;
  font-size: 13px;
  padding: 0;
}
.slider-nav:hover {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.2);
  transform: translateY(-50%) scale(1.07);
}
.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }
/* Thumbnail strip */
.image-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.image-thumbs::-webkit-scrollbar { display: none; }
.image-thumbs .thumb {
  width: 68px; height: 68px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  padding: 0;
  background: #f5f5f5;
  flex-shrink: 0;
  transition: border-color .15s, box-shadow .15s;
}
.image-thumbs .thumb:hover { border-color: #3b5d50; }
.image-thumbs .thumb.active {
  border-color: #3b5d50;
  box-shadow: 0 0 0 1px #3b5d50;
}
.image-thumbs .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
/* Responsive overrides */
@media (max-width: 991px) {
  .product-img-slider { aspect-ratio: 3 / 4; }
}
@media (max-width: 575px) {
  .product-img-slider { aspect-ratio: 1 / 1; border-radius: 10px; }
  .slider-nav { width: 34px; height: 34px; font-size: 11px; }
  .slider-nav.prev { left: 6px; }
  .slider-nav.next { right: 6px; }
  .image-thumbs .thumb { width: 56px; height: 56px; }
}

/* ── Skeleton loading ─────────────────────────────────────────── */
@keyframes skel-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .45; }
}
.skel {
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}
@keyframes skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.product-skel {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.product-skel .skel-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease-in-out infinite;
}
.product-skel .skel-body { padding: 14px 10px 18px; }
.product-skel .skel-line {
  height: 12px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease-in-out infinite;
  border-radius: 4px;
}
/* Stagger shimmer so cards don't pulse in sync */
.product-skel:nth-child(2) .skel-img,
.product-skel:nth-child(2) .skel-line { animation-delay: .15s; }
.product-skel:nth-child(3) .skel-img,
.product-skel:nth-child(3) .skel-line { animation-delay: .3s; }
.product-skel:nth-child(4) .skel-img,
.product-skel:nth-child(4) .skel-line { animation-delay: .45s; }
.product-skel:nth-child(5) .skel-img,
.product-skel:nth-child(5) .skel-line { animation-delay: .6s; }
.product-skel:nth-child(6) .skel-img,
.product-skel:nth-child(6) .skel-line { animation-delay: .75s; }
.product-skel:nth-child(7) .skel-img,
.product-skel:nth-child(7) .skel-line { animation-delay: .9s; }
.product-skel:nth-child(8) .skel-img,
.product-skel:nth-child(8) .skel-line { animation-delay: 1.05s; }

/* ── Product card image: locked aspect-ratio (must stay last in file) ── */
.product-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f5f5f5;
}
.product-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

/* ════════════════════════════════════════════════════════
   HERO — BOUTIQUE ELEMENTS
   ════════════════════════════════════════════════════════ */
.hero-tag {
  display: inline-block;
  background: rgba(249,191,41,.15);
  color: #f9bf29;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(249,191,41,.3);
}

/* Trust micro-badges under hero buttons */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
}
.hero-trust span {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.hero-trust span i { color: #f9bf29; font-size: .8rem; }

/* Hero right-column decorative visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
}
.hero-circle {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .25rem;
  padding: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-circle .hc-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: -.5px;
  line-height: 1.1;
}
.hero-circle .hc-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .1rem;
}
.hero-circle .hc-year {
  font-size: .95rem;
  font-weight: 700;
  color: #f9bf29;
  margin-top: .3rem;
}
.hero-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: center;
  margin-top: 1.4rem;
  max-width: 290px;
}
.hero-chip {
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: .28rem .85rem;
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  animation: chipIn .35s ease both;
  animation-delay: var(--delay, 0s);
}
.hero-chip:hover {
  background: rgba(249,191,41,.22);
  border-color: rgba(249,191,41,.6);
  color: #f9bf29;
  text-decoration: none;
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════
   FEATURE / TRUST STRIP (home page, below hero)
   ════════════════════════════════════════════════════════ */
.feature-strip {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.feature-strip .fs-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid #e5e5e5;
}
.feature-strip .fs-item:last-child { border-right: none; }
.feature-strip .fs-item i {
  font-size: 1.7rem;
  color: #3b5d50;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}
.feature-strip .fs-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 1.25;
}
.feature-strip .fs-item span {
  display: block;
  font-size: .75rem;
  color: #999;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .feature-strip .fs-item { padding: 1rem .75rem; gap: .6rem; }
  .feature-strip .fs-item i { font-size: 1.35rem; }
  .feature-strip .row > .col-6:nth-child(2) .fs-item { border-right: none; }
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE — STATS STRIP
   ════════════════════════════════════════════════════════ */
.about-stats-strip {
  background: #3b5d50;
  padding: 2.5rem 0;
}
.about-stats-strip .stat-item {
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.about-stats-strip .stat-item:last-child { border-right: none; }
.about-stats-strip .stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #f9bf29;
  line-height: 1.1;
  margin-bottom: .3rem;
}
.about-stats-strip .stat-item span {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}
@media (max-width: 767px) {
  .about-stats-strip .stat-item { padding: 1.25rem .75rem; }
  .about-stats-strip .stat-item strong { font-size: 1.5rem; }
  .about-stats-strip .row > .col-6:nth-child(2) .stat-item { border-right: none; }
}
