/* =====================================================
   THALIR — Brand Override Stylesheet
   Colour Palette:
     Background  Cream          #F8F6F1
     Primary     Olive Green    #556B2F
     Accent      Deep Black     #111111
     Secondary   Olive Green    #556B2F
     Dark        Deep Black     #111111
     Dividers    Light Gray     #ECECEC
   Typography:
     Headings  – Playfair Display (fallback for Canela)
     Body / UI – Inter (fallback Source Sans 3)
===================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --thalir-bg: #F8F6F1;
  --thalir-text: #111111;
  --thalir-accent: #556B2F;
  --thalir-accent-light: #6a8a3d;
  --thalir-secondary: #556B2F;
  --thalir-dark: #111111;
  --thalir-divider: #ECECEC;
  --thalir-white: #ffffff;
  --thalir-card-bg: #FDFCFA;
  --thalir-radius: 12px;
  --thalir-radius-lg: 20px;
  --thalir-shadow: 0 2px 20px rgba(17,17,17,0.06);
  --thalir-shadow-hover: 0 8px 30px rgba(17,17,17,0.12);
  --thalir-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Global Overrides ---------- */
body {
  font-family: var(--font-body) !important;
  color: var(--thalir-text);
  background-color: var(--thalir-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.hero-slider-content-2 h1,
.hero-slider-content-2 h2,
.section-title h3,
.widget-title {
  font-family: var(--font-heading) !important;
  color: var(--thalir-text);
  letter-spacing: -0.01em;
}

p, span, a, li, label, input, button, select, textarea {
  font-family: var(--font-body) !important;
}

a { color: var(--thalir-accent); }
a:hover { color: var(--thalir-secondary); }

/* ---------- Selection ---------- */
::selection {
  background: var(--thalir-accent);
  color: #fff;
}

/* ---------- Header ---------- */
.header-area {
  background-color: var(--thalir-bg) !important;
}

.header-top {
  background-color: var(--thalir-dark) !important;
  border-bottom: none !important;
}

.header-top .header-info ul li,
.header-top .header-info ul li a,
.header-top .text-center {
  color: rgba(255,255,255,0.85) !important;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.header-middle {
  background-color: var(--thalir-bg) !important;
  border-bottom: 1px solid var(--thalir-divider) !important;
}

.logo-text {
  font-family: var(--font-heading) !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  color: var(--thalir-text) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-bottom.sticky-bar {
  background-color: var(--thalir-white) !important;
  border-bottom: 1px solid var(--thalir-divider) !important;
}

.header-bottom .header-nav .main-menu nav > ul > li > a {
  color: var(--thalir-text) !important;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.header-bottom .header-nav .main-menu nav > ul > li > a:hover,
.header-bottom .header-nav .main-menu nav > ul > li > a.active {
  color: var(--thalir-accent) !important;
}

.hotline p span,
.hotline p a {
  color: var(--thalir-text) !important;
}

/* Search */
.search-style-2 form input {
  background-color: var(--thalir-white) !important;
  border: 1px solid var(--thalir-divider) !important;
  border-radius: var(--thalir-radius) !important;
  font-family: var(--font-body) !important;
  color: var(--thalir-text) !important;
}

.search-style-2 form input::placeholder {
  color: #999 !important;
}

/* ---------- Hero Slider — Full-width Image Slides ---------- */
.thalir-hero-section {
  padding-top: 0;
  overflow: hidden;
}
.thalir-hero-slide {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.thalir-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.thalir-hero-bg img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 6s ease-out;
}
.slick-active .thalir-hero-bg img {
  transform: scale(1.08);
}
.thalir-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(58, 58, 52, 0.88) 0%,
    rgba(58, 58, 52, 0.55) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.thalir-hero-slide .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.thalir-hero-content {
  max-width: 560px;
  padding: 40px 0;
}
.thalir-hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B49A7A;
  border: 1px solid rgba(180, 154, 122, 0.4);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
}
.slick-active .thalir-hero-tag {
  opacity: 1;
  transform: translateY(0);
}
.thalir-hero-title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.5s ease, transform 0.7s 0.5s ease;
}
.slick-active .thalir-hero-title {
  opacity: 1;
  transform: translateY(0);
}
.thalir-hero-title em {
  font-style: normal;
  color: #B49A7A;
}
.thalir-hero-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.7s ease, transform 0.7s 0.7s ease;
}
.slick-active .thalir-hero-desc {
  opacity: 1;
  transform: translateY(0);
}
.thalir-hero-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--thalir-accent);
  padding: 14px 38px;
  border-radius: var(--thalir-radius);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(111, 127, 106, 0.35);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.9s ease, transform 0.7s 0.9s ease,
    background 0.3s ease, box-shadow 0.3s ease;
}
.slick-active .thalir-hero-btn {
  opacity: 1;
  transform: translateY(0);
}
.thalir-hero-btn:hover {
  background: var(--thalir-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(58, 58, 52, 0.4);
}

/* Hero responsive */
@media (max-width: 991px) {
  .thalir-hero-slide {
    height: 440px;
  }
  .thalir-hero-title {
    font-size: 38px;
  }
  .thalir-hero-content {
    max-width: 420px;
  }
}
@media (max-width: 575px) {
  .thalir-hero-slide {
    height: 70vh;
    min-height: 480px;
  }
  .thalir-hero-title {
    font-size: 30px;
  }
  .thalir-hero-desc {
    font-size: 14px;
  }
  .thalir-hero-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  .thalir-hero-content {
    max-width: 100%;
    padding: 30px 0;
  }
}

/* ---------- Legacy slider content (keep for other pages) ---------- */
.hero-slider-content-2 h4 {
  font-family: var(--font-body) !important;
  color: var(--thalir-secondary) !important;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-slider-content-2 h2 {
  color: var(--thalir-text) !important;
  font-weight: 600;
}

.hero-slider-content-2 h1 {
  color: var(--thalir-accent) !important;
}

.hero-slider-content-2 p {
  color: #666 !important;
}

.btn-brush {
  background-color: var(--thalir-accent) !important;
  color: #fff !important;
  border-radius: var(--thalir-radius) !important;
  padding: 12px 32px !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em;
  text-transform: none !important;
  border: none !important;
  transition: var(--thalir-transition);
  background-image: none !important;
}

.btn-brush:hover {
  background-color: var(--thalir-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.slider-arrow .slider-btn {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
}

.slider-arrow .slider-btn:hover {
  background: var(--thalir-accent) !important;
  color: #fff !important;
  border-color: var(--thalir-accent) !important;
}

/* Slick dots — inside slider, visible on dark overlay */
.thalir-hero-section .dot-style-1.dot-style-1-position-1 ul.slick-dots,
.thalir-hero-section .slick-dots {
  position: absolute !important;
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10;
  display: flex !important;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.thalir-hero-section .slick-dots li {
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
}
.thalir-hero-section .slick-dots li button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  padding: 0 !important;
  font-size: 0 !important;
  transition: all 0.3s ease;
}
.thalir-hero-section .slick-dots li button::before {
  display: none !important;
}
.thalir-hero-section .slick-dots li.slick-active button {
  background: #fff !important;
  width: 28px !important;
  border-radius: 5px !important;
}

/* Mobile arrows — appear inline below CTA */
@media (max-width: 767px) {
  .thalir-hero-section .slider-arrow.hero-slider-1-arrow {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
    display: flex !important;
    justify-content: flex-start;
    gap: 12px;
    margin-top: -60px;
    padding: 0 15px 20px;
    z-index: 10;
  }
  .thalir-hero-section .slider-arrow .slider-btn {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
  }
  .thalir-hero-section .slider-arrow .slider-btn:hover {
    background: var(--thalir-accent) !important;
    border-color: var(--thalir-accent) !important;
  }
  /* Hide dots on mobile since arrows are visible */
  .thalir-hero-section .slick-dots {
    display: none !important;
  }
}

/* ---------- Section Headers ---------- */
.tab-header .nav-tabs {
  border-bottom: 1px solid var(--thalir-divider) !important;
}

.tab-header .nav-tabs .nav-link {
  font-family: var(--font-heading) !important;
  color: #999 !important;
  font-size: 18px;
  font-weight: 500;
  border: none !important;
  padding: 10px 24px;
  position: relative;
}

.tab-header .nav-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--thalir-accent);
  transition: width 0.3s ease;
}

.tab-header .nav-tabs .nav-link.active {
  color: var(--thalir-text) !important;
  background: transparent !important;
}

.tab-header .nav-tabs .nav-link.active::after {
  width: 60%;
}

/* ---------- Product Cards — Complete Redesign ---------- */
.product-cart-wrap {
  background-color: var(--thalir-card-bg) !important;
  border: 1px solid var(--thalir-divider) !important;
  border-radius: var(--thalir-radius-lg) !important;
  overflow: hidden;
  transition: var(--thalir-transition);
  position: relative;
  display: flex !important;
  flex-direction: column;
  height: 550px;
}

.product-cart-wrap:hover {
  box-shadow: var(--thalir-shadow-hover) !important;
  transform: translateY(-4px);
  border-color: var(--thalir-accent) !important;
}

.product-cart-wrap .product-img-action-wrap {
  background-color: #f0ede8 !important;
  padding: 0 !important;
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-cart-wrap .product-img-action-wrap .product-img,
.product-cart-wrap .product-img-action-wrap .product-img-zoom {
  border-radius: 0 !important;
  width: 100%;
  height: 100%;
}

.product-cart-wrap .product-img-action-wrap .product-img a img {
  border-radius: 0 !important;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
}

.product-cart-wrap:hover .product-img-action-wrap .product-img a img.default-img {
  transform: scale(1.05);
}

.product-cart-wrap .product-content-wrap {
  padding: 16px 20px 20px !important;
  display: flex !important;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.thalir-card-action-wrap {
  margin-top: auto !important;
  display: flex !important;
  flex-direction: column;
  gap: 8px;
}

.product-cart-wrap .product-content-wrap .product-category {
  margin-bottom: 6px !important;
}

.product-cart-wrap .product-content-wrap .product-category a,
.product-cart-wrap .product-content-wrap .product-category span {
  color: var(--thalir-secondary) !important;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.product-cart-wrap .product-content-wrap h2 {
  font-family: var(--font-heading) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.35;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-cart-wrap .product-content-wrap h2 a {
  color: var(--thalir-text) !important;
}

.product-cart-wrap .product-content-wrap h2 a:hover {
  color: var(--thalir-accent) !important;
}

.product-cart-wrap .product-content-wrap .product-price span {
  color: var(--thalir-accent) !important;
  font-weight: 600;
}

.product-cart-wrap .product-content-wrap .product-price span.old-price {
  color: #aaa !important;
}

/* Product action buttons (hover overlay) */
.product-cart-wrap .product-action-1 button,
.product-cart-wrap .product-action-1 a.action-btn {
  background-color: var(--thalir-white) !important;
  border: 1px solid var(--thalir-divider) !important;
  color: var(--thalir-text) !important;
}

.product-cart-wrap .product-action-1 button:hover,
.product-cart-wrap .product-action-1 a.action-btn:hover {
  background-color: var(--thalir-accent) !important;
  border-color: var(--thalir-accent) !important;
  color: #fff !important;
}

.product-cart-wrap .product-action-1 a.action-btn:after {
  background-color: var(--thalir-dark) !important;
}

.product-cart-wrap .product-action-1 a.action-btn:before {
  border-top-color: var(--thalir-dark) !important;
}

/* Badge overrides */
.product-cart-wrap .product-badges span.hot {
  background-color: var(--thalir-secondary) !important;
}

/* Product Quantity Control - When item is in cart */
.thalir-product-qty-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--thalir-bg);
  border: 1px solid var(--thalir-divider);
  border-radius: 8px;
  width: 100%;
}

.thalir-product-qty-control .qty-btn {
  width: 32px;
  height: 32px;
  background: var(--thalir-accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.thalir-product-qty-control .qty-btn:hover:not(:disabled) {
  background: var(--thalir-dark);
  transform: scale(1.05);
}

.thalir-product-qty-control .qty-btn:disabled {
  background: #ddd;
  color: #999;
  cursor: not-allowed;
}

.thalir-product-qty-control .qty-display {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--thalir-text);
  min-width: 30px;
  text-align: center;
}

.product-cart-wrap .product-badges span.new {
  background-color: var(--thalir-accent) !important;
}

.product-cart-wrap .product-badges span.sale {
  background-color: #c44d3e !important;
}

/* ---------- Add to Cart Button on Product Cards ---------- */
.thalir-add-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background-color: var(--thalir-accent);
  color: #fff;
  border: 2px solid var(--thalir-accent);
  border-radius: var(--thalir-radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--thalir-transition);
  text-decoration: none;
  line-height: 1;
}

.thalir-add-cart-btn:hover {
  background-color: transparent;
  color: var(--thalir-accent);
  transform: translateY(-1px);
  text-decoration: none;
}

.thalir-add-cart-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--thalir-transition);
}

.thalir-add-cart-btn .btn-text {
  transition: var(--thalir-transition);
}

.thalir-add-cart-btn.added {
  background-color: var(--thalir-dark);
  border-color: var(--thalir-dark);
  color: #fff;
}

/* ---------- Quantity Control on Product Cards ---------- */
.thalir-qty-control-card {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #f4f6f3;
  border-radius: var(--thalir-radius);
  padding: 7px 10px;
  box-sizing: border-box;
  border: 1.5px solid #c8d8c0;
}

.thalir-qty-control-card.active {
  display: flex;
}

.qty-btn-card {
  width: 34px;
  height: 34px;
  background: var(--thalir-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.qty-btn-card:disabled,
.qty-btn-card[disabled] {
  background: #ddd !important;
  color: #aaa !important;
  cursor: not-allowed !important;
}

.qty-btn-card.qty-remove-card {
  background: #d32f2f;
  font-size: 15px;
}

.qty-btn-card.qty-remove-card:disabled {
  background: #ddd !important;
}

.qty-display-card {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  min-width: 28px;
  text-align: center;
  flex-grow: 1;
}

.thalir-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 16px;
  margin-top: 8px;
  background-color: transparent;
  color: var(--thalir-text);
  border: 1.5px solid var(--thalir-divider);
  border-radius: var(--thalir-radius);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--thalir-transition);
  text-decoration: none;
}

.thalir-view-btn:hover {
  border-color: var(--thalir-text);
  color: var(--thalir-text);
  text-decoration: none;
}

/* ---------- Cart Sidebar ---------- */

/* Hide native number input spinners */
.thalir-cart-sidebar input[type=number]::-webkit-inner-spin-button,
.thalir-cart-sidebar input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.thalir-cart-sidebar input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.thalir-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 42, 42, 0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--thalir-transition);
  backdrop-filter: blur(2px);
}

.thalir-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.thalir-cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--thalir-white);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
}

.thalir-cart-sidebar.active {
  right: 0;
}

.thalir-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--thalir-divider);
}

.thalir-cart-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--thalir-text);
  margin: 0;
}

.thalir-cart-header .cart-count-badge {
  background: var(--thalir-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 10px;
}

.thalir-cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--thalir-divider);
  border-radius: 50%;
  cursor: pointer;
  color: var(--thalir-text);
  font-size: 18px;
  transition: var(--thalir-transition);
}

.thalir-cart-close:hover {
  background: var(--thalir-bg);
  border-color: var(--thalir-text);
}

.thalir-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.thalir-cart-body::-webkit-scrollbar {
  width: 4px;
}

.thalir-cart-body::-webkit-scrollbar-thumb {
  background: var(--thalir-divider);
  border-radius: 4px;
}

.thalir-cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.thalir-cart-empty svg {
  width: 64px;
  height: 64px;
  color: var(--thalir-divider);
  margin-bottom: 16px;
}

.thalir-cart-empty p {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #999;
}

.thalir-cart-empty span {
  font-size: 13px;
  color: #bbb;
}

.thalir-cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--thalir-divider);
  position: relative;
}

.thalir-cart-item:last-child {
  border-bottom: none;
}

.thalir-cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0ede8;
}

.thalir-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thalir-cart-item-info {
  flex: 1;
  min-width: 0;
}

.thalir-cart-item-info h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--thalir-text);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thalir-cart-item-info .item-category {
  font-size: 11px;
  color: var(--thalir-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.thalir-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}

.thalir-cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--thalir-divider);
  background: var(--thalir-bg);
  color: var(--thalir-text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--thalir-transition);
}

.thalir-cart-item-qty button:first-child {
  border-radius: 6px 0 0 6px;
}

.thalir-cart-item-qty button:last-child {
  border-radius: 0 6px 6px 0;
}

.thalir-cart-item-qty button:hover {
  background: var(--thalir-accent);
  color: #fff;
  border-color: var(--thalir-accent);
}

.thalir-cart-item-qty span {
  width: 36px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--thalir-divider);
  border-bottom: 1px solid var(--thalir-divider);
  font-size: 13px;
  font-weight: 600;
  color: var(--thalir-text);
}

.thalir-cart-item-price {
  text-align: right;
  flex-shrink: 0;
}

.thalir-cart-item-price .price {
  font-weight: 600;
  font-size: 15px;
  color: var(--thalir-text);
}

.thalir-cart-item-remove {
  position: absolute;
  top: 14px;
  right: 0;
  background: none;
  border: none;
  color: #ccc;
  font-size: 16px;
  cursor: pointer;
  transition: var(--thalir-transition);
  padding: 2px;
}

.thalir-cart-item-remove:hover {
  color: #c44d3e;
}

.thalir-cart-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--thalir-divider);
  background: var(--thalir-white);
}

.thalir-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.thalir-cart-subtotal span:first-child {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.thalir-cart-subtotal span:last-child {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--thalir-text);
}

.thalir-checkout-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--thalir-accent);
  color: #fff;
  border: none;
  border-radius: var(--thalir-radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: var(--thalir-transition);
}

.thalir-checkout-btn:hover {
  background: var(--thalir-dark);
  color: #fff;
  text-decoration: none;
}

.thalir-continue-btn {
  display: block;
  width: 100%;
  padding: 10px 24px;
  margin-top: 8px;
  background: transparent;
  color: var(--thalir-text);
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--thalir-transition);
}

.thalir-continue-btn:hover {
  color: var(--thalir-accent);
}

/* ---------- Cart Icon in Header ---------- */
.thalir-header-cart {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--thalir-divider);
  border-radius: var(--thalir-radius);
  background: var(--thalir-white);
  transition: var(--thalir-transition);
  color: var(--thalir-text);
  text-decoration: none;
}

.thalir-header-cart:hover {
  border-color: var(--thalir-accent);
  color: var(--thalir-accent);
  text-decoration: none;
}

.thalir-header-cart svg {
  width: 20px;
  height: 20px;
}

.thalir-header-cart .cart-label {
  font-size: 13px;
  font-weight: 500;
}

.thalir-header-cart .header-cart-count {
  position: static;
  background: var(--thalir-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 5px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.thalir-header-cart .header-cart-count.cart-active {
  display: flex;
}

/* ---------- Product View Page ---------- */
.thalir-product-view {
  padding: 60px 0;
  background: var(--thalir-bg);
}

.thalir-product-view .product-gallery {
  position: sticky;
  top: 100px;
}

.thalir-product-view .main-image {
  width: 100%;
  border-radius: var(--thalir-radius-lg);
  overflow: hidden;
  background: #f0ede8;
  margin-bottom: 12px;
}

.thalir-product-view .main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.thalir-product-view .thumb-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thalir-product-view .thumb-list .thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--thalir-divider);
  cursor: pointer;
  transition: var(--thalir-transition);
}

.thalir-product-view .thumb-list .thumb.active,
.thalir-product-view .thumb-list .thumb:hover {
  border-color: var(--thalir-accent);
}

.thalir-product-view .thumb-list .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thalir-product-detail {
  padding-left: 30px;
}

.thalir-product-detail .product-breadcrumb {
  font-size: 12px;
  color: #999;
  margin-bottom: 16px;
}

.thalir-product-detail .product-breadcrumb a {
  color: var(--thalir-secondary);
  text-decoration: none;
}

.thalir-product-detail .product-breadcrumb a:hover {
  color: var(--thalir-accent);
}

.thalir-product-detail .product-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--thalir-text);
  line-height: 1.25;
  margin-bottom: 8px;
}

.thalir-product-detail .product-subtitle {
  font-size: 14px;
  color: var(--thalir-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.thalir-product-detail .product-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
  max-width: 500px;
}

.thalir-product-detail .price-block {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.thalir-product-detail .price-block .current-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--thalir-text);
}

.thalir-product-detail .price-block .original-price {
  font-size: 18px;
  color: #bbb;
  text-decoration: line-through;
}

.thalir-product-detail .price-block .discount-tag {
  background: var(--thalir-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.thalir-product-detail .divider {
  border: none;
  border-top: 1px solid var(--thalir-divider);
  margin: 20px 0;
}

.thalir-product-detail .qty-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.thalir-product-detail .qty-selector label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
}

.thalir-product-detail .qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--thalir-divider);
  border-radius: 10px;
  overflow: hidden;
}

.thalir-product-detail .qty-controls button {
  width: 40px;
  height: 40px;
  background: var(--thalir-bg);
  border: none;
  color: var(--thalir-text);
  font-size: 18px;
  cursor: pointer;
  transition: var(--thalir-transition);
}

.thalir-product-detail .qty-controls button:hover {
  background: var(--thalir-accent);
  color: #fff;
}

.thalir-product-detail .qty-controls input {
  width: 48px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--thalir-divider);
  border-right: 1px solid var(--thalir-divider);
  font-size: 15px;
  font-weight: 600;
  color: var(--thalir-text);
  background: #fff;
  font-family: var(--font-body);
}

.thalir-product-detail .action-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.thalir-product-detail .action-buttons .btn-add-cart {
  flex: 1;
  padding: 14px 32px;
  background: var(--thalir-accent);
  color: #fff;
  border: 2px solid var(--thalir-accent);
  border-radius: var(--thalir-radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--thalir-transition);
}

.thalir-product-detail .action-buttons .btn-add-cart:hover {
  background: transparent;
  color: var(--thalir-accent);
}

.thalir-product-detail .action-buttons .btn-add-cart svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.thalir-product-detail .product-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thalir-product-detail .product-meta li {
  font-size: 13px;
  color: #888;
  padding: 6px 0;
  border-bottom: 1px solid var(--thalir-divider);
}

.thalir-product-detail .product-meta li:last-child {
  border-bottom: none;
}

.thalir-product-detail .product-meta strong {
  color: var(--thalir-text);
  font-weight: 600;
  min-width: 80px;
  display: inline-block;
}

/* ---------- Banner ---------- */
.banner-2 .banner-img {
  border-radius: var(--thalir-radius-lg) !important;
  overflow: hidden;
}

.banner-2 .banner-text .btn {
  background: var(--thalir-accent) !important;
  color: #fff !important;
  border-radius: var(--thalir-radius) !important;
  padding: 10px 28px !important;
  border: none !important;
}

.banner-2 .banner-text .btn:hover {
  background: var(--thalir-dark) !important;
}

/* ---------- Newsletter ---------- */
section.newsletter {
  background-color: #556B2F !important;
}

section.newsletter h4,
section.newsletter h5 {
  color: rgba(255,255,255,0.9) !important;
}

.form-subcriber .form-control {
  border-radius: var(--thalir-radius) 0 0 var(--thalir-radius) !important;
  border: none !important;
}

.form-subcriber .btn {
  background: #3d4d1f !important;
  color: #fff !important;
  border-radius: 0 var(--thalir-radius) var(--thalir-radius) 0 !important;
  border: none !important;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.form-subcriber .btn:hover {
  background: #2d3d10 !important;
}

/* ---------- Footer ---------- */
footer.main {
  background-color: var(--thalir-bg) !important;
}

.footer-mid {
  background-color: var(--thalir-bg) !important;
}

.widget-title {
  font-family: var(--font-heading) !important;
  color: var(--thalir-text) !important;
  font-weight: 600;
}

.footer-list a {
  color: #777 !important;
  font-size: 14px;
}

.footer-list a:hover {
  color: var(--thalir-accent) !important;
}

/* ---------- Pagination ---------- */
.pagination .page-link {
  color: var(--thalir-text) !important;
  border: 1px solid var(--thalir-divider) !important;
  border-radius: 8px !important;
  margin: 0 3px;
  font-weight: 500;
  transition: var(--thalir-transition);
}

.pagination .page-item.active .page-link {
  background: var(--thalir-accent) !important;
  border-color: var(--thalir-accent) !important;
  color: #fff !important;
}

.pagination .page-link:hover {
  background: var(--thalir-bg) !important;
  border-color: var(--thalir-accent) !important;
}

/* ---------- Mobile / Responsive ---------- */
.mobile-header-active {
  background: var(--thalir-white) !important;
}

.mobile-menu li a {
  color: var(--thalir-text) !important;
  font-family: var(--font-body) !important;
}

.mobile-social-icon h5 {
  color: var(--thalir-text) !important;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--thalir-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--thalir-divider);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

/* ---------- SweetAlert overrides ---------- */
.custom-swal-popup {
  border-radius: var(--thalir-radius) !important;
}

/* ---------- No Products Message ---------- */
.noProducts h3 {
  font-family: var(--font-heading) !important;
  color: #999;
  font-weight: 400;
  text-align: center;
  padding: 60px 0;
}

/* ---------- Preloader ---------- */
#preloader-active .preloader h5 {
  font-family: var(--font-heading) !important;
  color: var(--thalir-text);
}

.loader .bar {
  background: var(--thalir-accent) !important;
}

/* ---------- Utilities ---------- */
.text-brand {
  color: var(--thalir-accent) !important;
}

.bg-brand {
  background-color: var(--thalir-accent) !important;
}

/* ---------- Mobile Cart Icon ---------- */
@media (max-width: 991px) {
  .thalir-header-cart .cart-label {
    display: none;
  }
  
  .thalir-header-cart {
    padding: 6px 10px;
  }
  
  .thalir-product-detail {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .thalir-product-detail .product-title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .thalir-cart-sidebar {
    width: 100vw;
    max-width: 100vw;
  }
}

/* Product description text on card */
.product-card-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 39px;
  flex-grow: 1;
}

/* Product price section */
.thalir-price-section {
  margin: 12px 0;
  padding: 8px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  height: 40px;
  display: flex;
  align-items: center;
}
/* ---------- WhatsApp Query Section in Cart ---------- */
.thalir-wa-section {
  padding: 14px 0 10px;
  border-top: 1px solid var(--thalir-divider, #D8D3CC);
  margin-bottom: 10px;
}
.thalir-wa-label {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--thalir-text, #2B2B2B);
  margin-bottom: 10px;
}
.thalir-wa-input {
  display: block;
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--thalir-divider, #D8D3CC);
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--thalir-text, #2B2B2B);
  transition: border-color 0.2s;
}
.thalir-wa-input:focus {
  outline: none;
  border-color: var(--thalir-accent, #6F7F6A);
}
.thalir-wa-input::placeholder {
  color: #aaa;
}
.thalir-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.thalir-wa-btn:hover {
  background: #1da851;
}
.thalir-wa-btn svg {
  flex-shrink: 0;
}

/* ==========================================================================
   ABOUT PAGE — Enhanced Sections
   ========================================================================== */

/* ---------- Timeline / Journey ---------- */
.thalir-about-journey { overflow: hidden; }

.thalir-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.thalir-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--thalir-accent), var(--thalir-secondary));
  border-radius: 3px;
}
.thalir-timeline-item {
  position: relative;
  padding-left: 72px;
  margin-bottom: 40px;
}
.thalir-timeline-item:last-child { margin-bottom: 0; }

.thalir-timeline-icon {
  position: absolute;
  left: 10px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--thalir-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--thalir-bg);
}
.thalir-timeline-content {
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.thalir-timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.thalir-timeline-content h4 {
  font-family: var(--font-heading);
  color: var(--thalir-text);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.thalir-timeline-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .thalir-timeline::before { left: 50%; transform: translateX(-50%); }
  .thalir-timeline-item { padding-left: 0; width: 50%; }
  .thalir-timeline-item:nth-child(odd) { padding-right: 50px; text-align: right; }
  .thalir-timeline-item:nth-child(odd) .thalir-timeline-icon { right: -20px; left: auto; }
  .thalir-timeline-item:nth-child(even) { margin-left: 50%; padding-left: 50px; }
  .thalir-timeline-item:nth-child(even) .thalir-timeline-icon { left: -20px; }
}

/* ---------- Bonsai Style Gallery Cards ---------- */
.thalir-bonsai-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.thalir-bonsai-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.thalir-bonsai-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.thalir-bonsai-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.thalir-bonsai-card:hover .thalir-bonsai-card-img img {
  transform: scale(1.08);
}
.thalir-bonsai-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,58,52,0.92) 0%, rgba(58,58,52,0.7) 50%, rgba(58,58,52,0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.thalir-bonsai-card:hover .thalir-bonsai-card-overlay {
  opacity: 1;
}
.thalir-bonsai-card-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  transform: translateY(12px);
  transition: transform 0.4s ease 0.1s;
}
.thalir-bonsai-card:hover .thalir-bonsai-card-overlay p {
  transform: translateY(0);
}
.thalir-bonsai-card-body {
  padding: 18px 20px;
}
.thalir-bonsai-card-body h5 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--thalir-text);
  font-weight: 600;
  margin-bottom: 4px;
}
.thalir-bonsai-card-body span {
  font-size: 13px;
  color: var(--thalir-accent);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---------- Benefits Section ---------- */
.thalir-benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.thalir-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}
.thalir-benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--thalir-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--thalir-accent);
  transition: background 0.3s ease, color 0.3s ease;
}
.thalir-benefit-card:hover .thalir-benefit-icon {
  background: var(--thalir-accent);
  color: #fff;
}
.thalir-benefit-card:hover .thalir-benefit-icon svg {
  stroke: #fff;
}
.thalir-benefit-card h5 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--thalir-text);
  font-weight: 600;
  margin-bottom: 10px;
}
.thalir-benefit-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Parallax Quote Section ---------- */
.thalir-about-parallax {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  overflow: hidden;
}
.thalir-about-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 58, 52, 0.7);
  z-index: 1;
}
@media (max-width: 767px) {
  .thalir-about-parallax {
    background-attachment: scroll;
    padding: 70px 0;
  }
  .thalir-about-parallax h2 { font-size: 26px !important; }
}

/* ---------- Care Tips Accordion ---------- */
.thalir-care-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.thalir-care-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.thalir-care-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}
.thalir-care-question:hover { background: rgba(111,127,106,0.05); }

.thalir-care-question span {
  font-size: 22px;
  flex-shrink: 0;
}
.thalir-care-question h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--thalir-text);
  font-weight: 600;
  margin: 0;
  flex: 1;
}
.thalir-care-arrow {
  font-style: normal;
  font-size: 18px;
  color: var(--thalir-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.thalir-care-item.active .thalir-care-arrow {
  transform: rotate(180deg);
}
.thalir-care-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}
.thalir-care-item.active .thalir-care-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}
.thalir-care-answer p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Stats Counter ---------- */
.thalir-about-stats { overflow: hidden; }
.thalir-stat-item {
  color: #fff;
}
.thalir-stat-item h2,
.thalir-stat-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--thalir-secondary);
  display: inline;
  line-height: 1;
}
.thalir-stat-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

@media (max-width: 575px) {
  .thalir-stat-item h2,
  .thalir-stat-item span { font-size: 36px; }
  .thalir-bonsai-card-img { height: 200px; }
  .w-50.m-auto { width: 90% !important; }
}

/* ==========================================================================
   CONTACT PAGE — Enhanced Design
   ========================================================================== */

/* ---------- Contact Hero ---------- */
.thalir-contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.thalir-contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.thalir-contact-hero-bg img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.thalir-contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  z-index: 1;
}
.thalir-contact-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: #B49A7A;
  border: 1px solid #B49A7A;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.thalir-contact-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.thalir-contact-title span {
  color: #B49A7A;
}
.thalir-contact-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 28px;
}
.thalir-contact-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.thalir-contact-hero-btns .thalir-hero-btn {
  display: inline-block;
  background: var(--thalir-accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--thalir-radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--thalir-transition);
}
.thalir-contact-hero-btns .thalir-hero-btn:hover {
  background: var(--thalir-dark);
  transform: translateY(-2px);
}
.thalir-contact-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #088178;
  color: #fff;
  padding: 14px 28px;
  border: 1px solid #088178;
  border-radius: var(--thalir-radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--thalir-transition);
}
.thalir-contact-call-btn:hover {
  background: #066666;
  border-color: #066666;
  color: #fff;
}

@media (max-width: 575px) {
  .thalir-contact-hero { min-height: 70vh; }
  .thalir-contact-title { font-size: 30px; }
}

/* ---------- Contact Cards ---------- */
.thalir-ccard {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.thalir-ccard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}
.thalir-ccard-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--thalir-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--thalir-accent);
  transition: background 0.3s ease, color 0.3s ease;
}
.thalir-ccard:hover .thalir-ccard-icon {
  background: var(--thalir-accent);
  color: #fff;
}
.thalir-ccard:hover .thalir-ccard-icon svg {
  stroke: #fff;
}
.thalir-ccard h5 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--thalir-text);
  font-weight: 600;
  margin-bottom: 10px;
}
.thalir-ccard p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.thalir-ccard p a {
  color: var(--thalir-accent);
  text-decoration: none;
}
.thalir-ccard-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--thalir-accent);
  text-decoration: none;
  transition: color 0.2s;
}
.thalir-ccard-link:hover {
  color: var(--thalir-dark);
}

/* ---------- Map + Form Section ---------- */
.thalir-contact-map {
  height: 100%;
  min-height: 460px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.thalir-contact-map iframe {
  border-radius: 12px;
}
.thalir-contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.thalir-form-group {
  margin-bottom: 20px;
}
.thalir-form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--thalir-text);
  margin-bottom: 6px;
}
.thalir-form-group input,
.thalir-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--thalir-divider);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--thalir-text);
  background: var(--thalir-bg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.thalir-form-group input:focus,
.thalir-form-group textarea:focus {
  border-color: var(--thalir-accent);
  box-shadow: 0 0 0 3px rgba(111,127,106,0.12);
  background: #fff;
}
.thalir-form-group textarea {
  resize: vertical;
}
.thalir-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--thalir-accent);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: var(--thalir-radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--thalir-transition);
}
.thalir-contact-submit:hover {
  background: var(--thalir-dark);
  transform: translateY(-2px);
}

/* ---------- FAQ Section ---------- */
.thalir-faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.thalir-faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.thalir-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}
.thalir-faq-q:hover { background: rgba(111,127,106,0.04); }
.thalir-faq-q h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--thalir-text);
  font-weight: 600;
  margin: 0;
  flex: 1;
}
.thalir-faq-arrow {
  font-style: normal;
  font-size: 18px;
  color: var(--thalir-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.thalir-faq-item.active .thalir-faq-arrow {
  transform: rotate(180deg);
}
.thalir-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 22px;
}
.thalir-faq-item.active .thalir-faq-a {
  max-height: 300px;
  padding: 0 22px 22px;
}
.thalir-faq-a p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
===================================================== */
.whatsapp-button {
  position: fixed;
  bottom: 130px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--thalir-transition);
  text-decoration: none;
  border: none;
  font-size: 0;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #20BA5A 0%, #1AA84F 100%);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Responsive: Adjust position on mobile */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 30%;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-button svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .whatsapp-button {
    bottom: 30%;
    right: 15px;
    width: 48px;
    height: 48px;
  }
  
  .whatsapp-button svg {
    width: 24px;
    height: 24px;
  }
}

/* ========== MOBILE RESPONSIVENESS FOR ABOUT PAGE ========== */
@media (max-width: 576px) {
  /* Ensure containers have proper width on mobile */
  body {
    overflow-x: hidden;
  }
  
  .container, .container-fluid {
    overflow-x: hidden;
    padding: 0 15px;
  }
  
  /* Ensure all rows and columns stack properly */
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  [class*='col-'] {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Gallery cards responsive */
  .single-gallery-item,
  .single-benefits-card,
  .single-stats-item,
  .thalir-testimonial-card {
    min-height: auto;
    margin-bottom: 15px;
  }
  
  /* Ensure images don't overflow */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Text styles should not overflow on mobile */
  .text-style-1::after {
    display: none;
  }
  
  /* Hero content should not have max-width constraints on very small screens */
  .thalir-hero-content {
    max-width: 100% !important;
    padding: 15px 0 !important;
  }
  
  /* Ensure card content is readable */
  .card {
    margin-bottom: 15px;
  }
  
  /* Testimonial cards should stack properly */
  .thalir-testimonial-card {
    margin-bottom: 20px;
  }
  
  /* Section spacing on mobile */
  .section {
    padding: 30px 0;
  }
  
  /* Buttons should be responsive */
  .btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .container, .container-fluid {
    padding: 0 10px;
  }
  
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .thalir-hero-title {
    font-size: 24px !important;
  }
  
  .thalir-hero-desc {
    font-size: 13px !important;
  }
}
.thalir-hero-bg img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 6s ease-out;
}