@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #f7f3ea;
  --surface: #ffffff;
  --surface-soft: #efe8d8;
  --text: #1a2a1f;
  --muted: #5d6d60;
  --primary: #2f6d45;
  --primary-dark: #1c4a2f;
  --accent: #91653d;
  --line: #d7cebf;
  --shadow: 0 16px 36px rgba(20, 40, 28, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 0%, #faf6ed 0%, #f7f3ea 55%, #f1ead8 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.tg-container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.tg-announcement-bar {
  background: var(--primary-dark);
  color: #f8fcf8;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tg-announcement-track {
  display: flex;
  width: max-content;
  animation: tg-marquee 24s linear infinite;
}

.tg-announcement-track span {
  display: block;
  padding: 9px 24px;
}

@keyframes tg-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tg-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.tg-header-wrap {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.tg-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 35px;
  line-height: 1;
  font-weight: 700;
  color: var(--primary-dark);
}

.tg-nav-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
}

.tg-nav-list a,
.tg-header-actions a {
  position: relative;
}

.tg-nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--primary);
  transition: transform 0.25s ease;
}

.tg-nav-list a:hover::after {
  transform: scaleX(1);
}

.tg-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tg-teabot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 39px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f5b3c 0%, #2f6d45 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(25, 66, 44, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.tg-teabot-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(47, 109, 69, 0.28);
  background: linear-gradient(135deg, #1a4b32 0%, #255e3d 100%);
}

.tg-icon-link {
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  white-space: nowrap;
  background: #fff;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  font-size: 15px;
}

.tg-icon-link:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 10px 18px rgba(47, 109, 69, 0.18);
}

.tg-cart-count {
  font-size: 11px;
  margin-left: 0;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.tg-hero-slider {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}

.tg-hero-track {
  position: relative;
  min-height: 80vh;
}

.tg-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.tg-hero-media-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tg-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 7s ease;
}

.tg-hero-video {
  background: #0f2017;
}

.tg-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.tg-hero-slide.is-active .tg-hero-media {
  transform: scale(1);
}

.tg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(106deg, rgba(4, 12, 8, 0.82) 0%, rgba(5, 15, 10, 0.64) 48%, rgba(5, 15, 10, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.tg-hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  z-index: 2;
  padding: 40px 0;
}

.tg-hero-content h1,
.tg-hero-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6.3vw, 76px);
  line-height: 1;
  margin: 0 0 16px;
}

.tg-hero-content p {
  margin: 0 0 25px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.95);
}

.tg-hero-copy {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: 0.15s;
}

.tg-hero-slide.is-active .tg-hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.tg-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tg-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.tg-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.tg-hero-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

.tg-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.tg-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(31, 75, 47, 0.25);
}

.tg-btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.tg-btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.tg-btn-small { padding: 10px 16px; font-size: 14px; }

.tg-section { padding: 92px 0; }

.tg-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 10px;
}

.tg-section-lead {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
}

.tg-copy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.tg-copy-card {
  background: linear-gradient(155deg, #f6efe3 0%, #ffffff 68%);
  border: 1px solid rgba(47, 109, 69, 0.18);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 18px 40px rgba(20, 40, 28, 0.12);
}

.tg-copy-card h2,
.tg-customize h2,
.tg-ai-section h2 {
  margin: 0 0 16px;
}

.tg-copy-card p,
.tg-customize p,
.tg-ai-section p {
  margin: 0 0 14px;
  color: #3f5345;
  max-width: 68ch;
}

.tg-customize {
  background: linear-gradient(130deg, #f3ecdf 0%, #faf8f2 100%);
}

.tg-customize-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.tg-goals-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tg-goals-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  font-weight: 700;
  color: #2f5a3f;
  box-shadow: 0 8px 16px rgba(21, 41, 29, 0.08);
}

.tg-ai-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(145deg, #e5efe3, #f2e7d5);
  border: 1px solid #d2ddcd;
  border-radius: 22px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 16px 34px rgba(28, 55, 38, 0.12);
}

.tg-ai-questions {
  margin: 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.tg-ai-questions li {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(47, 109, 69, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  color: #2f4f3a;
  font-weight: 600;
}

.tg-why {
  background: linear-gradient(180deg, #faf7ef 0%, #f7f2e5 100%);
}

.tg-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tg-why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(18, 35, 25, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tg-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(18, 35, 25, 0.12);
}

.tg-why-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f2e3;
  display: inline-grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 10px;
}

.tg-why-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.tg-why-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.tg-why .tg-section-head {
  margin-bottom: 24px;
}

.tg-why .tg-section-lead {
  max-width: 560px;
}

.tg-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tg-testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(20, 40, 28, 0.08);
}

.tg-stars {
  color: #c08a2a;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 15px;
}

.tg-testimonial-card blockquote {
  margin: 0;
  color: #2b3f32;
  font-size: 14px;
  line-height: 1.7;
}

.tg-customer-name {
  margin: 14px 0 0;
  font-weight: 700;
  color: #1f3d2b;
  font-size: 14px;
}

.tg-lifestyle {
  background: linear-gradient(150deg, #f8f5ec 0%, #eee3cc 100%);
}

.tg-section-head a {
  color: var(--primary);
  font-weight: 700;
}

.tg-benefits {
  background: linear-gradient(180deg, rgba(242, 236, 222, 0.6), rgba(242, 236, 222, 0));
}

.tg-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tg-benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}

.tg-benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-soft);
  margin-bottom: 10px;
  font-size: 18px;
}

.tg-benefit-card h3 {
  margin: 0;
  font-size: 15px;
}

.tg-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tg-product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(20, 40, 28, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tg-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.tg-product-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(24, 42, 32, 0.16);
  margin-bottom: 14px;
}

.tg-product-image-link {
  display: block;
}

.tg-product-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 20%, #d4e3cf, #7fa183);
}

.tg-product-image--photo {
  transition: transform 0.35s ease;
}

.tg-product-card:hover .tg-product-image--photo {
  transform: scale(1.08);
}

.tg-product-card h3,
.tg-product-card h2 { margin: 0 0 8px; font-size: 19px; line-height: 1.25; }
.tg-product-card p { margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.tg-pricing { display: flex; gap: 10px; align-items: center; margin: 13px 0; }
.tg-old-price { text-decoration: line-through; color: #9b907f; }
.tg-rating { font-weight: 700; color: var(--primary-dark); }

.tg-product-title-link {
  transition: color 0.2s ease;
}

.tg-product-title-link:hover {
  color: var(--primary);
}
.tg-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tg-add-cart-form {
  margin: 0;
}

.tg-add-cart-form .tg-btn {
  cursor: pointer;
}

.tg-add-cart-form--full {
  width: 100%;
}

.tg-add-cart-form--full .tg-btn {
  width: 100%;
  text-align: center;
}

.tg-btn-add-cart {
  width: 100%;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #2f6d45 0%, #235a38 100%);
  border-color: #235a38;
}

.tg-btn-add-cart:hover {
  background: linear-gradient(135deg, #245738 0%, #1a472d 100%);
}

.tg-btn-add-cart.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.tg-btn-add-cart.is-disabled,
.tg-btn-add-cart[disabled] {
  background: #b7c2b9;
  border-color: #b7c2b9;
  color: #fff;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.tg-cart-feedback {
  position: fixed;
  right: 20px;
  bottom: 20px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: #173f29;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(12, 29, 19, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.tg-cart-feedback.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tg-cart-feedback.is-error {
  background: #7a1f1f;
}

.tg-tea-moments {
  background: linear-gradient(150deg, #f8f5ec 0%, #eee3cc 100%);
}

.tg-moments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tg-moment-card {
  margin: 0;
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(44, 78, 55, 0.14);
  box-shadow: 0 16px 32px rgba(18, 35, 25, 0.13);
  background: #fff;
}

.tg-moment-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tg-moment-card h3 {
  position: absolute;
  left: 16px;
  bottom: 14px;
  margin: 0;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  z-index: 1;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.tg-moment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 14, 0.04), rgba(10, 20, 14, 0.56));
  pointer-events: none;
}

.tg-moment-card:hover img {
  transform: scale(1.08);
}

.tg-experience {
  padding-top: 68px;
}

.tg-experience-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.tg-experience-media {
  display: grid;
  gap: 14px;
}

.tg-video-frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(40, 70, 50, 0.15);
  box-shadow: 0 16px 30px rgba(20, 40, 28, 0.14);
  background: #fff;
}

.tg-showcase-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: radial-gradient(circle at 20% 20%, #d8e2d1, #9cb097);
}

.tg-showcase-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tg-video-frame figcaption {
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4c5e52;
  font-weight: 700;
}

.tg-experience-copy h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 14px;
  line-height: 1.15;
  font-family: 'Cormorant Garamond', serif;
}

.tg-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.tg-leaf-card {
  background: linear-gradient(165deg, #ebf2e6, #dce9d4);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(47, 109, 69, 0.22);
}

.tg-custom-tea {
  background: var(--surface-soft);
}

.tg-social-links {
  display: flex;
  gap: 16px;
}

.tg-social-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
  font-weight: 600;
}

.tg-testimonials {
  padding-top: 24px;
}

.tg-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tg-reviews blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(20, 40, 28, 0.08);
}

.tg-news-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(20, 40, 28, 0.08);
}

.tg-news-form {
  display: flex;
  gap: 10px;
}

.tg-news-form input {
  min-width: 280px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  background: #fff;
}

.tg-content-page {
  padding: 64px 0;
}

.tg-content-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  margin: 0 0 12px;
}

.tg-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tg-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.tg-badge {
  display: inline-block;
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.tg-product-detail article {
  max-width: 900px;
}

.tg-product-gallery {
  margin-bottom: 18px;
}

.tg-gallery-main {
  width: 100%;
  min-height: 420px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}

.tg-gallery-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tg-gallery-thumb {
  width: 100%;
  min-height: 160px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}

.tg-product-prices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.tg-product-prices strong {
  font-size: 24px;
  color: var(--primary-dark);
}

.tg-product-body {
  margin: 20px 0;
}

.tg-blend-copy {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.tg-blend-copy h2 {
  margin: 0 0 10px;
}

.tg-blend-copy h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.tg-key-benefits {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.tg-key-benefits li {
  color: var(--muted);
}

.tg-blend-faqs {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.tg-faq-list {
  display: grid;
  gap: 10px;
}

.tg-faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
}

.tg-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 12px 0;
  list-style: none;
}

.tg-faq-item summary::-webkit-details-marker {
  display: none;
}

.tg-faq-item p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.tg-footer {
  background: #102017;
  color: #dce6dc;
  padding: 48px 0 18px;
}

.tg-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tg-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.tg-footer li { margin-bottom: 8px; }
.tg-payment { margin-top: 14px; color: #b9c6b7; }
.tg-copyright {
  margin-top: 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  color: #a8b6a7;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.tg-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.tg-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .tg-header-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tg-benefits-grid,
  .tg-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tg-moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tg-two-col,
  .tg-experience-grid,
  .tg-customize-wrap,
  .tg-ai-card,
  .tg-post-grid,
  .tg-reviews,
  .tg-testimonial-grid,
  .tg-why-grid,
  .tg-footer-grid { grid-template-columns: 1fr; }

  .tg-news-wrap { grid-template-columns: 1fr; }
  .tg-gallery-main { min-height: 320px; }
}

@media (max-width: 640px) {
  .tg-nav-list,
  .tg-header-actions {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .tg-hero-slider,
  .tg-hero-track,
  .tg-hero-slide {
    min-height: 80vh;
  }

  .tg-products-grid,
  .tg-benefits-grid,
  .tg-moments-grid,
  .tg-goals-list,
  .tg-gallery-grid {
    grid-template-columns: 1fr;
  }

  .tg-moment-card,
  .tg-moment-card img { min-height: 230px; }

  .tg-news-form {
    flex-direction: column;
  }

  .tg-news-form input { min-width: 100%; }
  .tg-chat-actions { flex-wrap: wrap; }
  .tg-gallery-thumb { min-height: 130px; }
  .tg-section { padding: 56px 0; }
}

/* Homepage premium redesign */
.tg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #446553;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tg-hero-slider,
.tg-hero-track,
.tg-hero-slide {
  min-height: clamp(520px, 84vh, 760px);
}

.tg-hero-content {
  max-width: 760px;
  padding: clamp(56px, 10vh, 112px) 0 80px;
}

.tg-hero-content p {
  max-width: 560px;
}

.tg-trust-bar {
  background: linear-gradient(180deg, #edf5ef 0%, #f7f3ea 100%);
  border-top: 1px solid rgba(47, 109, 69, 0.14);
  border-bottom: 1px solid rgba(47, 109, 69, 0.12);
  padding: 18px 0;
}

.tg-trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tg-trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #355843;
  text-align: center;
}

.tg-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #dcecdf;
  border: 1px solid #c7dece;
  font-size: 14px;
}

.tg-product-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tg-product-card:hover {
  border-color: rgba(47, 109, 69, 0.32);
  box-shadow: 0 18px 34px rgba(24, 44, 32, 0.18);
}

.tg-bento {
  background: linear-gradient(160deg, #eaf3ea 0%, #f7f4eb 68%, #f2ead9 100%);
}

.tg-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "stress stress energy skin"
    "stress stress sleep immunity";
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 16px;
}

.tg-bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 16px 28px rgba(18, 35, 25, 0.16);
  border: 1px solid rgba(31, 75, 47, 0.14);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tg-bento-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.tg-bento-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 22, 14, 0.06), rgba(10, 22, 14, 0.82));
}

.tg-bento-overlay h3 {
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 34px);
}

.tg-bento-overlay p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.93);
}

.tg-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 34px rgba(18, 35, 25, 0.22);
}

.tg-bento-card:hover img {
  transform: scale(1.08);
}

.tg-bento-card--large {
  grid-area: stress;
}

.tg-bento-card--wide {
  grid-area: immunity;
}

.tg-bento-card--small:nth-of-type(2) {
  grid-area: energy;
}

.tg-bento-card--small:nth-of-type(3) {
  grid-area: skin;
}

.tg-bento-card--small:nth-of-type(4) {
  grid-area: sleep;
}

.tg-ritual {
  background: linear-gradient(180deg, #faf8f2 0%, #f6efe0 100%);
}

.tg-ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tg-ritual-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dfe6dc;
  padding: 24px;
  box-shadow: 0 14px 24px rgba(20, 40, 28, 0.09);
}

.tg-ritual-card h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
}

.tg-ritual-card p {
  margin: 0;
  color: #4d6153;
}

.tg-ai-card {
  border-radius: 24px;
  background: linear-gradient(145deg, #dfecdd 0%, #f2e6d3 100%);
}

.tg-ai-questions li {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  border: 1px solid rgba(47, 109, 69, 0.18);
}

.tg-ingredients {
  background: #fbfaf5;
}

.tg-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.tg-ingredient-card {
  background: #fff;
  border: 1px solid #d7dfd3;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 10px 20px rgba(20, 40, 28, 0.06);
}

.tg-ingredient-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.tg-ingredient-card p {
  margin: 0;
  font-size: 14px;
  color: #56705e;
}

.tg-quiz {
  padding-top: 40px;
}

.tg-quiz-card {
  background: linear-gradient(160deg, #eef5ed 0%, #ffffff 100%);
  border: 1px solid #d6e2d5;
  border-radius: 22px;
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 16px 30px rgba(20, 40, 28, 0.08);
}

.tg-quiz-form {
  display: grid;
  gap: 10px;
}

.tg-quiz-form label {
  font-size: 13px;
  font-weight: 700;
  color: #355843;
}

.tg-quiz-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #cfdccc;
  background: #fff;
  padding: 11px 12px;
  font-size: 14px;
  color: #183225;
}

.tg-testimonial-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.tg-testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.tg-testimonial-track::-webkit-scrollbar {
  display: none;
}

.tg-testimonial-card {
  scroll-snap-align: start;
  border-radius: 18px;
  padding: 22px;
}

.tg-testimonial-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tg-testimonial-head img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dfe8dc;
}

.tg-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #c8d7c6;
  background: #fff;
  color: #1f4a30;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tg-carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(24, 44, 32, 0.14);
}

.tg-community {
  background: linear-gradient(180deg, #f7f1e2 0%, #f5f8f3 100%);
}

.tg-community-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.tg-community-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(53, 88, 67, 0.16);
  box-shadow: 0 12px 20px rgba(20, 40, 28, 0.09);
}

.tg-community-card img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.tg-community-card:hover img {
  transform: scale(1.06);
}

.tg-news-wrap {
  border-radius: 22px;
  background: linear-gradient(150deg, #ffffff 0%, #f2f7ef 100%);
  padding: clamp(24px, 4vw, 36px);
}

@media (max-width: 1100px) {
  .tg-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tg-trust-list,
  .tg-ritual-grid,
  .tg-ingredient-grid,
  .tg-community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tg-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "stress stress"
      "energy skin"
      "sleep immunity";
    grid-template-rows: auto;
  }

  .tg-bento-card--large,
  .tg-bento-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .tg-quiz-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tg-why-grid {
    grid-template-columns: 1fr;
  }

  .tg-trust-list,
  .tg-ritual-grid,
  .tg-ingredient-grid,
  .tg-community-grid,
  .tg-bento-grid {
    grid-template-columns: 1fr;
  }

  .tg-bento-card--large,
  .tg-bento-card--wide {
    grid-area: auto;
    grid-column: auto;
  }

  .tg-bento-grid {
    grid-template-areas: none;
  }

  .tg-testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .tg-carousel-btn {
    display: none;
  }

  .tg-testimonial-track {
    grid-auto-columns: minmax(260px, 84%);
  }
}

/* Final responsive and button refinement overrides */
.tg-btn {
  border-radius: 10px;
}

.tg-btn-small {
  border-radius: 10px;
}

.tg-teabot-btn {
  border-radius: 10px;
}

.tg-btn-add-cart {
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .tg-container {
    width: min(1160px, 94vw);
  }

  .tg-header-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .tg-nav-list {
    justify-content: center;
    gap: 14px;
  }

  .tg-header-actions {
    justify-content: center;
  }

  .tg-section {
    padding: 70px 0;
  }

  .tg-section-head {
    align-items: flex-start;
  }

  .tg-hero-content h1,
  .tg-hero-content h2 {
    font-size: clamp(38px, 8vw, 58px);
  }

  .tg-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .tg-announcement-bar {
    font-size: 10px;
  }

  .tg-brand {
    font-size: 31px;
    text-align: center;
  }

  .tg-nav-list {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .tg-nav-list li {
    flex: 0 0 auto;
  }

  .tg-header-actions {
    justify-content: flex-start;
  }

  .tg-hero-slider,
  .tg-hero-track,
  .tg-hero-slide {
    min-height: 68vh;
  }

  .tg-hero-content {
    padding: 44px 0 70px;
  }

  .tg-hero-content h1,
  .tg-hero-content h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .tg-hero-content p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .tg-hero-actions .tg-btn {
    padding: 11px 16px;
    font-size: 14px;
  }

  .tg-section {
    padding: 58px 0;
  }

  .tg-section-head {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .tg-section-head a {
    font-size: 14px;
  }

  .tg-why-card,
  .tg-product-card,
  .tg-ritual-card {
    padding: 14px;
  }

  .tg-products-grid {
    grid-template-columns: 1fr;
  }

  .tg-bento-card {
    min-height: 210px;
  }

  .tg-bento-overlay {
    padding: 14px;
  }

  .tg-bento-overlay h3 {
    font-size: clamp(24px, 8vw, 32px);
    margin-bottom: 0;
  }

  .tg-ai-card {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 14px;
  }

  .tg-testimonial-track {
    grid-auto-columns: minmax(240px, 88%);
  }

  .tg-community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .tg-container {
    width: 93vw;
  }

  .tg-header-actions {
    gap: 8px;
    flex-wrap: wrap;
  }

  .tg-btn {
    padding: 11px 14px;
    font-size: 13px;
  }

  .tg-community-grid {
    grid-template-columns: 1fr;
  }
}
