/** Shopify CDN: Minification failed

Line 14:0 All "@import" rules must come first

**/
/* ==========================================================================
   Three Tails — Premium DTC Theme
   Inspired by: Native Pet, Finn, Graza, Fishwife, Brightland, Ghia, Poppi
   ========================================================================== */

/* 8. Smooth scroll globally */
html { scroll-behavior: smooth; }

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Woobly';
  src: url('Woobly.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand Palette — Style Guide Canonical */
  --tt-bg: #F5EDE0;          /* Beige — background */
  --tt-primary: #2D5A45;     /* Green — primary / CTAs */
  --tt-primary-light: #3D7A5E;
  --tt-primary-dark: #1E3F30;
  --tt-accent: #B86A52;      /* Coral — accent / warmth */
  --tt-accent-light: #CA7F66;
  --tt-accent-dark: #9A5842;
  --tt-sand: #DCC7A1;        /* Sand — secondary */
  --tt-text: #2E2A26;        /* Dark Brown — text / footer */
  --tt-white: #FFFFFF;
  --tt-cream: #F0E8DA;
  --tt-surface: #FFFFFF;

  /* Typography */
  --tt-font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --tt-font-heading: 'Woobly', 'Fraunces', 'Poppins', serif;

  /* System */
  --tt-radius: 16px;
  --tt-radius-sm: 12px;
  --tt-radius-pill: 60px;
  --tt-shadow: 0 4px 24px rgba(46,42,38,0.08);
  --tt-shadow-lg: 0 8px 40px rgba(46,42,38,0.12);
  --tt-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--tt-white);
  color: var(--tt-text);
}

/* --------------------------------------------------------------------------
   GLOBAL
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

.tt-hero, .tt-trust, .tt-products, .tt-story, .tt-capture {
  font-family: var(--tt-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */
.tt-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-animate[data-animate="fade-in"] { transform: translateY(0); opacity: 0; }
.tt-animate[data-animate="fade-right"] { transform: translateX(-40px); }
.tt-animate[data-animate="fade-left"] { transform: translateX(40px); }
.tt-animate.tt-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.tt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tt-font);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--tt-radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--tt-transition);
  letter-spacing: 0.01em;
}
.tt-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(46,42,38,0.12); }
.tt-btn:active { transform: translateY(0); box-shadow: none; }

.tt-btn--accent {
  background: var(--tt-accent);
  color: var(--tt-white);
}
.tt-btn--accent:hover { background: var(--tt-accent-light); }

.tt-btn--primary,
.tt-btn-primary {
  background: var(--tt-primary);
  color: var(--tt-white);
}
.tt-btn--primary:hover,
.tt-btn-primary:hover { background: var(--tt-primary-light); }

.tt-btn-full { width: 100%; }

.tt-btn--outline-light {
  background: transparent;
  color: var(--tt-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.tt-btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.tt-hero {
  overflow: hidden;
}

.tt-hero__bg {
  padding: 80px 0 72px;
  position: relative;
  background-image:
    radial-gradient(circle at 15% 40%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(0,0,0,0.06) 0%, transparent 50%);
}

.tt-hero__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(620px, 0.98fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tt-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  position: relative;
  padding-left: 36px;
}
.tt-hero__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--tt-accent);
  transform: translateY(-50%);
}

.tt-hero__heading {
  font-family: var(--tt-font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--tt-white);
  margin: 0 0 20px;
}

.tt-hero__subtext {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.84);
  margin: 0 0 36px;
  max-width: 540px;
}

.tt-hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.tt-hero__image-frame {
  width: min(100%, 640px);
  min-height: 560px;
  margin-left: auto;
  background: linear-gradient(180deg, rgba(245, 237, 224, 0.98) 0%, rgba(240, 232, 218, 0.94) 100%);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
  box-shadow: 0 28px 60px rgba(18, 31, 24, 0.22);
}

.tt-hero__image {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.16));
}

/* Hero Mobile */
@media (max-width: 768px) {
  .tt-hero__bg { padding: 48px 0 40px; }
  .tt-hero__container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
    text-align: center;
  }
  .tt-hero__eyebrow { padding-left: 0; }
  .tt-hero__eyebrow::before { display: none; }
  .tt-hero__subtext { max-width: 100%; margin-left: auto; margin-right: auto; }
  .tt-hero__actions { justify-content: center; }
  .tt-hero__visual { justify-content: center; }
  .tt-hero__image-frame { max-width: 360px; min-height: auto; margin: 0 auto; padding: 24px; border-radius: 24px; }
  .tt-hero__image { max-width: 100%; }
}

/* --------------------------------------------------------------------------
   TRUST BAR
   -------------------------------------------------------------------------- */
.tt-trust { background: var(--tt-white); border-bottom: 1px solid rgba(220,199,161,0.35); }

.tt-trust__strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tt-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt-trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tt-primary);
  color: var(--tt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-trust__item:hover .tt-trust__icon {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 69, 0.3);
}

.tt-trust__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--tt-text);
  letter-spacing: -0.01em;
}

.tt-trust__divider {
  width: 1px;
  height: 32px;
  background: var(--tt-sand);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .tt-trust__strip {
    gap: 20px;
    padding: 32px 24px;
  }
  .tt-trust__divider { display: none; }
  .tt-trust__item { flex: 0 0 calc(50% - 10px); }
}

/* --------------------------------------------------------------------------
   PRODUCTS
   -------------------------------------------------------------------------- */
.tt-products {
  background: var(--tt-white);
  padding: 80px 0;
}

.tt-products__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tt-products__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.tt-products__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--tt-accent);
  margin-bottom: 16px;
}

.tt-products__heading {
  font-family: var(--tt-font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--tt-text);
  margin: 0 0 16px;
}

.tt-products__subtext {
  font-size: 17px;
  line-height: 1.6;
  color: #4A4540;
  margin: 0;
}

.tt-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* Product Card */
.tt-product-card {
  background: var(--tt-bg);
  border-radius: var(--tt-radius);
  overflow: hidden;
  transition: all var(--tt-transition);
  position: relative;
  border-top: 4px solid var(--tt-sand);
}


.tt-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(46,42,38,0.14);
}

.tt-product-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.tt-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--tt-cream);
}

.tt-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-product-card:hover .tt-product-card__image {
  transform: scale(1.08);
}

.tt-product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tt-cream);
}

.tt-product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--tt-accent);
  color: var(--tt-white);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--tt-radius-pill);
}

.tt-product-card__info {
  padding: 24px;
}

.tt-product-card__title {
  font-family: var(--tt-font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--tt-text);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.tt-product-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #4A4540;
  margin: 0 0 16px;
}

.tt-product-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tt-product-card__price {
  font-size: 22px;
  font-weight: 400;
  color: var(--tt-primary);
}

.tt-product-card__cta {
  font-size: 14px;
  font-weight: 400;
  color: var(--tt-accent);
  transition: transform var(--tt-transition);
}
.tt-product-card:hover .tt-product-card__cta {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .tt-products { padding: 64px 0; }
  .tt-products__header { margin-bottom: 40px; }
  .tt-products__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --------------------------------------------------------------------------
   LORENZO STORY
   -------------------------------------------------------------------------- */
.tt-story__bg {
  padding: 80px 0;
  overflow: hidden;
}

.tt-story__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

.tt-story__image {
  width: 100%;
  border-radius: var(--tt-radius);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.tt-story__placeholder {
  width: 100%;
  aspect-ratio: 6/5;
  border-radius: var(--tt-radius);
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  font-family: var(--tt-font);
}

.tt-story__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #355F4C;
  margin-bottom: 20px;
}

.tt-story__heading {
  font-family: var(--tt-font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--tt-text);
  margin: 0 0 24px;
}

.tt-story__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--tt-text);
  margin: 0 0 32px;
}

@media (max-width: 768px) {
  .tt-story__bg { padding: 64px 0; }
  .tt-story__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   EMAIL CAPTURE
   -------------------------------------------------------------------------- */
.tt-capture__bg {
  background: var(--tt-accent);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tt-capture__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

.tt-capture__container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.tt-capture__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
}

.tt-capture__heading {
  font-family: var(--tt-font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--tt-white);
  margin: 0 0 16px;
}

.tt-capture__subtext {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.96);
  margin: 0 0 36px;
}

.tt-capture__form { margin: 0; }

.tt-capture__input-group {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.tt-capture__input {
  flex: 1;
  font-family: var(--tt-font);
  font-size: 16px;
  padding: 16px 24px;
  border: 2px solid var(--tt-sand);
  border-radius: var(--tt-radius-pill);
  background: var(--tt-white);
  color: var(--tt-text);
  outline: none;
  transition: border-color var(--tt-transition);
}
.tt-capture__input:focus {
  border-color: var(--tt-primary);
}
.tt-capture__input::placeholder {
  color: #7A756F;
}

.tt-capture__submit {
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--tt-primary);
  color: var(--tt-white);
}
.tt-capture__submit:hover {
  background: var(--tt-primary-dark);
}

.tt-capture__success {
  font-size: 16px;
  font-weight: 600;
  color: var(--tt-white);
  margin-top: 16px;
}

.tt-capture__note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .tt-capture__bg { padding: 64px 0; }
  .tt-capture__input-group {
    flex-direction: column;
  }
  .tt-capture__submit { width: 100%; }
}

/* --------------------------------------------------------------------------
   OVERRIDE TASTE THEME DEFAULTS
   -------------------------------------------------------------------------- */
.tt-hero .section-header, .tt-trust .section-header,
.tt-products .section-header, .tt-story .section-header,
.tt-capture .section-header {
  display: none !important;
}

.shopify-section-group-header-group,
.section-header.shopify-section-group-header-group {
  position: sticky;
  top: 0;
  z-index: 40;
}

.shopify-section-group-header-group .utility-bar,
.shopify-section-group-header-group .header-wrapper {
  position: relative;
  z-index: 40;
}

/* Hide default Shopify announcement bar spacing conflicts */
.tt-hero + .shopify-section { margin-top: 0 !important; }

/* --------------------------------------------------------------------------
   PARALLAX EFFECTS & ENHANCEMENTS
   -------------------------------------------------------------------------- */

/* Lorenzo Story Parallax */
.tt-story__image.tt-parallax {
  transform: translateZ(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Enhanced Ingredients Section */
.tt-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.tt-ingredient-card {
  background: var(--tt-white);
  border-radius: var(--tt-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--tt-shadow);
  transition: all var(--tt-transition);
  position: relative;
  overflow: hidden;
}

.tt-ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tt-primary-light), var(--tt-primary));
  opacity: 0.7;
}

.tt-ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tt-shadow-lg);
}

.tt-ingredient-dose {
  display: inline-block;
  background: var(--tt-accent);
  color: var(--tt-white);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: var(--tt-radius-pill);
  margin-bottom: 16px;
}

.tt-ingredient-name {
  font-family: var(--tt-font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--tt-text);
  margin-bottom: 12px;
}

.tt-ingredient-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #4A4540;
  margin: 0;
}

/* Section spacing */
.tt-section {
  position: relative;
}

.tt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tt-bg-cream {
  background: var(--tt-cream);
}

.tt-text-center {
  text-align: center;
}

.tt-text-muted {
  color: #4A4540;
}

.tt-mt-md {
  margin-top: 32px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .tt-ingredients-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  
  .tt-ingredient-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   PRODUCT PAGE SECTIONS
   ========================================================================== */

/* Product Hero */
.tt-product-hero {
  padding: 48px 0 80px;
  background: linear-gradient(180deg, #264A39 0%, #2D5A45 100%);
}

.tt-product-hero .tt-container {
  max-width: 1280px;
}

.tt-product-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.tt-product-gallery {
  position: sticky;
  top: 88px;
}

.tt-gallery-main {
  position: relative;
  border-radius: var(--tt-radius);
  overflow: hidden;
  margin-bottom: 12px;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #F5EDE0 0%, #DCC7A1 100%);
  box-shadow: 0 20px 40px rgba(18, 31, 24, 0.18);
}

.tt-gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--tt-transition);
}

.tt-gallery-item.tt-active {
  opacity: 1;
}

.tt-gallery-item img,
.tt-gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--tt-radius);
}

.tt-gallery-thumbs {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.tt-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: var(--tt-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--tt-transition);
  background: none;
  padding: 0;
}

.tt-thumb:hover,
.tt-thumb.tt-active {
  border-color: var(--tt-primary);
}

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

.tt-product-info {
  position: relative;
}

.tt-product-info-sticky {
  position: sticky;
  top: 88px;
}

.tt-product-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(220, 199, 161, 0.92);
  margin-bottom: 12px;
}

.tt-product-title {
  font-family: var(--tt-font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--tt-white);
  margin: 0 0 12px;
}

.tt-product-summary {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 20px;
}

/* Buy box trust pills */
.tt-buybox-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.tt-buybox-trust span {
  font-size: 12px;
  font-weight: 500;
  color: var(--tt-white);
  background: rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 9999px;
  white-space: nowrap;
}

/* Bundle selector — integrated in buy box */
.tt-buybox-bundles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.tt-buybox-bundle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--tt-sand);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  background: var(--tt-white);
  position: relative;
}
.tt-buybox-bundle:hover {
  border-color: var(--tt-primary);
}
.tt-buybox-bundle--active {
  border-color: var(--tt-primary);
  background: #F5EDE0;
  box-shadow: 0 0 0 1px var(--tt-primary);
}
.tt-buybox-bundle__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--tt-sand);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s;
}
.tt-buybox-bundle--active .tt-buybox-bundle__radio {
  border-color: var(--tt-primary);
}
.tt-buybox-bundle--active .tt-buybox-bundle__radio::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tt-primary);
}
.tt-buybox-bundle__info {
  flex: 1;
  min-width: 0;
}
.tt-buybox-bundle__name {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: var(--tt-text);
  line-height: 1.3;
}
.tt-buybox-bundle__detail {
  display: block;
  font-size: 13px;
  color: #4F4A44;
  line-height: 1.4;
}
.tt-buybox-bundle__price {
  font-family: var(--tt-font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--tt-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.tt-buybox-bundle__badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--tt-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
}
.tt-buybox-bundle__badge--coral {
  background: var(--tt-accent);
}

/* ATC button */
.tt-buybox-atc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--tt-accent);
  color: #fff;
  border: 1px solid var(--tt-accent);
  border-radius: var(--tt-radius-pill);
  padding: 18px 32px;
  font-family: var(--tt-font);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.tt-buybox-atc:hover {
  background: #a85d49;
  border-color: #a85d49;
  transform: translateY(-1px);
}
.tt-buybox-atc:active { transform: translateY(0); }
.tt-buybox-atc:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Guarantee line */
.tt-buybox-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.tt-buybox-guarantee svg { flex-shrink: 0; }

.tt-buybox-shipping {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

/* Product Ingredients */
.tt-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.tt-ingredient-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--tt-white);
  border-radius: var(--tt-radius);
  box-shadow: var(--tt-shadow);
  transition: transform var(--tt-transition), box-shadow var(--tt-transition);
}

.tt-ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tt-shadow-lg);
}

.tt-ingredient-icon {
  margin-bottom: 20px;
}

.tt-ingredient-icon svg {
  width: 48px;
  height: 48px;
}

.tt-ingredient-name {
  font-family: var(--tt-font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--tt-text);
  margin-bottom: 8px;
}

.tt-ingredient-amount {
  font-size: 14px;
  font-weight: 400;
  color: var(--tt-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.tt-ingredient-description {
  font-size: 15px;
  line-height: 1.5;
  color: #4A4540;
  margin: 0;
}

.tt-ingredients-benefits {
  margin-top: 60px;
}

.tt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tt-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--tt-white);
  border-radius: var(--tt-radius);
}

.tt-benefit-icon {
  flex-shrink: 0;
  padding: 8px;
  background: var(--tt-cream);
  border-radius: 50%;
}

.tt-benefit-title {
  font-family: var(--tt-font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--tt-text);
  margin-bottom: 8px;
}

.tt-benefit-text {
  font-size: 14px;
  color: #4A4540;
  margin: 0;
}

/* Product FAQ */
.tt-container-narrow {
  max-width: 800px;
}

.tt-faq-accordion {
  margin-bottom: 60px;
}

.tt-faq-item {
  border-bottom: 1px solid #E5E5E5;
}

.tt-faq-item:last-child {
  border-bottom: none;
}

.tt-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--tt-font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--tt-text);
  cursor: pointer;
  transition: color var(--tt-transition);
}

.tt-faq-question:hover {
  color: var(--tt-primary);
}

.tt-faq-icon {
  flex-shrink: 0;
  transition: transform var(--tt-transition);
}

.tt-faq-item.tt-open .tt-faq-icon {
  transform: rotate(45deg);
}

.tt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tt-faq-content {
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #4A4540;
}

.tt-faq-contact {
  text-align: center;
  padding: 40px;
  background: var(--tt-cream);
  border-radius: var(--tt-radius);
}

.tt-faq-contact h3 {
  font-family: var(--tt-font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--tt-text);
  margin-bottom: 12px;
}

.tt-faq-contact p {
  font-size: 16px;
  color: #4A4540;
  margin-bottom: 24px;
}

/* Product Dosage */
.tt-dosage-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.tt-dosage-table {
  background: var(--tt-white);
  border-radius: var(--tt-radius);
  overflow: hidden;
  box-shadow: var(--tt-shadow);
  margin-bottom: 60px;
}

.tt-dosage-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--tt-primary);
  color: white;
}

.tt-dosage-header .tt-dosage-cell {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

.tt-dosage-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #E5E5E5;
}

.tt-dosage-row:last-child {
  border-bottom: none;
}

.tt-dosage-row:hover {
  background: #F8F9FA;
}

.tt-dosage-cell {
  padding: 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tt-weight-range,
.tt-dose-amount,
.tt-duration {
  font-weight: 700;
  color: var(--tt-text);
  margin-bottom: 4px;
}

.tt-weight-label,
.tt-dose-label {
  font-size: 14px;
  color: #4A4540;
}

.tt-dosage-instructions {
  margin-bottom: 40px;
}

.tt-instructions-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--tt-text);
  text-align: center;
  margin-bottom: 40px;
}

.tt-instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.tt-instruction-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tt-step-number {
  width: 48px;
  height: 48px;
  background: var(--tt-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.tt-step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--tt-text);
  margin-bottom: 8px;
}

.tt-step-content p {
  font-size: 15px;
  color: #4A4540;
  margin: 0;
}

.tt-dosage-tips {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--tt-cream);
  border-radius: var(--tt-radius);
  border-left: 4px solid var(--tt-accent);
}

.tt-tips-icon {
  flex-shrink: 0;
}

.tt-tips-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--tt-text);
  margin-bottom: 12px;
}

.tt-tips-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4540;
  margin-bottom: 16px;
}

.tt-tips-content p:last-child {
  margin-bottom: 0;
}

.tt-tips-signature {
  font-style: italic;
  font-weight: 600;
  color: var(--tt-accent);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.tt-contact-hero {
  padding: 80px 0;
  background: var(--tt-bg);
}

.tt-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.tt-contact-info {
  padding-right: 40px;
}

.tt-contact-subheading {
  font-size: 18px;
  line-height: 1.6;
  color: #4A4540;
  margin-bottom: 40px;
}

.tt-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tt-contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tt-contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--tt-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-primary);
  box-shadow: var(--tt-shadow);
}

.tt-contact-method h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--tt-text);
  margin-bottom: 4px;
}

.tt-contact-method a {
  font-size: 16px;
  font-weight: 600;
  color: var(--tt-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.tt-contact-method a:hover {
  text-decoration: underline;
}

.tt-contact-method p {
  font-size: 14px;
  color: #4A4540;
  margin: 0;
}

.tt-contact-form-wrap {
  position: relative;
}

.tt-contact-form-card {
  background: var(--tt-white);
  border-radius: var(--tt-radius);
  padding: 40px;
  box-shadow: var(--tt-shadow-lg);
  position: sticky;
  top: 120px;
}

.tt-form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--tt-text);
  margin-bottom: 32px;
  text-align: center;
}

.tt-form-success {
  text-align: center;
  padding: 40px 0;
}

.tt-form-success svg {
  margin-bottom: 16px;
}

.tt-form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--tt-primary);
  margin-bottom: 12px;
}

.tt-form-success p {
  font-size: 16px;
  color: #4A4540;
  margin: 0;
}

.tt-form-errors {
  padding: 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--tt-radius-sm);
  color: #DC2626;
  margin-bottom: 24px;
  font-size: 14px;
}

.tt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.tt-form-group {
  margin-bottom: 20px;
}

.tt-form-group label {
  display: block;
  font-weight: 600;
  color: var(--tt-text);
  margin-bottom: 8px;
}

.tt-form-group input,
.tt-form-group select,
.tt-form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E5E5E5;
  border-radius: var(--tt-radius-pill);
  font-size: 16px;
  transition: border-color var(--tt-transition);
  background: var(--tt-white);
  font-family: var(--tt-font);
}

.tt-form-group textarea {
  border-radius: var(--tt-radius);
  resize: vertical;
  min-height: 120px;
}

.tt-form-group input:focus,
.tt-form-group select:focus,
.tt-form-group textarea:focus {
  outline: none;
  border-color: var(--tt-primary);
}

.tt-contact-faq {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tt-contact-faq .tt-faq-item {
  background: var(--tt-white);
  padding: 32px;
  border-radius: var(--tt-radius);
  box-shadow: var(--tt-shadow);
  border: none;
}

.tt-contact-faq .tt-faq-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--tt-text);
  margin-bottom: 12px;
}

.tt-contact-faq .tt-faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4540;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tt-product-hero {
    padding: 16px 0 40px;
  }

  .tt-product-layout,
  .tt-contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tt-product-gallery {
    position: relative;
    top: auto;
  }

  .tt-product-info-sticky,
  .tt-contact-form-card {
    position: relative;
    top: auto;
  }

  .tt-product-title {
    font-size: 26px;
  }

  .tt-buybox-bundle__price {
    font-size: 18px;
  }
  
  .tt-contact-info {
    padding-right: 0;
  }
  
  .tt-contact-form-card {
    padding: 32px 24px;
  }
  
  .tt-form-grid {
    grid-template-columns: 1fr;
  }
  
  .tt-product-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .tt-dosage-header,
  .tt-dosage-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .tt-dosage-cell {
    padding: 16px;
    text-align: left;
  }
  
  .tt-instructions-grid {
    grid-template-columns: 1fr;
  }
  
  .tt-dosage-tips {
    flex-direction: column;
    text-align: center;
  }
  
  .tt-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.tt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--tt-bg);
  transition: background var(--tt-transition), box-shadow var(--tt-transition);
  font-family: var(--tt-font);
  -webkit-font-smoothing: antialiased;
}
.tt-header.tt-scrolled {
  background: var(--tt-white);
  box-shadow: 0 1px 12px rgba(46,42,38,0.08);
}

.tt-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.tt-header__logo {
  color: var(--tt-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.tt-header__logo:hover { color: var(--tt-primary); }

.tt-header__logo-icon {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}

.tt-header__logo-wordmark {
  display: block;
  width: auto;
  height: 28px;
  max-width: 180px;
}

.tt-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tt-header__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--tt-text);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--tt-transition);
  white-space: nowrap;
}
.tt-header__link:hover { color: var(--tt-primary); }
.tt-header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tt-primary);
  transition: width var(--tt-transition);
}
.tt-header__link:hover::after { width: 100%; }

.tt-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--tt-text);
  text-decoration: none;
  transition: color var(--tt-transition);
}
.tt-header__cart:hover { color: var(--tt-primary); }
.tt-header__cart svg { width: 22px; height: 22px; }
.tt-header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--tt-accent);
  color: var(--tt-white);
  font-family: var(--tt-font);
  font-size: 10px;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.tt-header__cart-count:empty { display: none; }

.tt-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--tt-text);
}
.tt-header__mobile-toggle svg { width: 26px; height: 26px; }

.tt-header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--tt-bg);
  z-index: 999;
  padding: 100px 32px 32px;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tt-header__mobile-nav.tt-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.tt-header__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--tt-text);
  cursor: pointer;
  padding: 8px;
}
.tt-header__mobile-close svg { width: 28px; height: 28px; }

.tt-header__mobile-link {
  font-family: var(--tt-font-heading);
  font-size: 1.75rem;
  color: var(--tt-text);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--tt-sand);
  display: block;
  transition: color 0.2s ease;
}
.tt-header__mobile-link:hover { color: var(--tt-accent); }

.tt-header__cta-mobile {
  margin-top: 32px;
  display: block;
  text-align: center;
  padding: 16px 32px;
  background: var(--tt-accent);
  color: var(--tt-white);
  font-family: var(--tt-font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--tt-radius-pill);
  text-decoration: none;
  transition: background 0.2s ease;
}
.tt-header__cta-mobile:hover { background: var(--tt-accent-dark); }

@media (max-width: 768px) {
  .tt-header__nav { display: none; }
  .tt-header__mobile-toggle { display: flex; align-items: center; }
  .tt-header__inner { height: 64px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.tt-footer {
  background: var(--tt-primary);
  color: var(--tt-white);
  font-family: var(--tt-font);
  -webkit-font-smoothing: antialiased;
  padding: 80px 0 32px;
}

.tt-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tt-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.tt-footer__brand-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tt-footer__brand-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 300px;
}

.tt-footer__social {
  display: flex;
  gap: 12px;
}

.tt-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-white);
  text-decoration: none;
  transition: all var(--tt-transition);
  font-size: 18px;
}
.tt-footer__social-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.tt-footer__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.tt-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-footer__link {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--tt-transition);
}
.tt-footer__link:hover { color: var(--tt-white); }

.tt-footer__newsletter-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tt-footer__newsletter-form {
  display: flex;
  gap: 8px;
}

.tt-footer__newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--tt-radius-pill);
  background: rgba(255,255,255,0.08);
  color: var(--tt-white);
  font-size: 14px;
  font-family: var(--tt-font);
  outline: none;
  transition: border-color var(--tt-transition);
}
.tt-footer__newsletter-input:focus { border-color: rgba(255,255,255,0.5); }
.tt-footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

.tt-footer__newsletter-btn {
  padding: 12px 20px;
  background: var(--tt-accent);
  color: var(--tt-white);
  border: none;
  border-radius: var(--tt-radius-pill);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--tt-font);
  cursor: pointer;
  transition: all var(--tt-transition);
  white-space: nowrap;
}
.tt-footer__newsletter-btn:hover { background: var(--tt-accent-light); }

.tt-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tt-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.tt-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

@media (max-width: 768px) {
  .tt-footer { padding: 48px 0 24px; }
  .tt-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .tt-footer__newsletter-form { flex-direction: column; }
  .tt-footer__bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   PREMIUM DYNAMICS & MICRO-INTERACTIONS
   ========================================================================== */

/* --------------------------------------------------------------------------
   4. ENHANCED BUTTON INTERACTIONS
   -------------------------------------------------------------------------- */
.tt-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tt-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 42, 38, 0.15);
}
.tt-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.1);
}

/* --------------------------------------------------------------------------
   5. ENHANCED CARD HOVER EFFECTS
   -------------------------------------------------------------------------- */
.tt-product-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(46, 42, 38, 0.1);
}

.tt-ingredient-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(46, 42, 38, 0.12);
}

/* No hover on touch devices — use active instead */
@media (hover: none) {
  .tt-product-card:hover,
  .tt-ingredient-card:hover {
    transform: none;
    box-shadow: var(--tt-shadow);
  }
  .tt-product-card:active,
  .tt-ingredient-card:active {
    transform: scale(0.98);
  }
}

/* --------------------------------------------------------------------------
   7. STICKY CTA ON MOBILE
   -------------------------------------------------------------------------- */
.tt-sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--tt-white);
  box-shadow: 0 -4px 24px rgba(46, 42, 38, 0.12);
  transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--tt-font);
}
.tt-sticky-cta.tt-visible {
  bottom: 0;
}
.tt-sticky-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tt-sticky-cta__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--tt-text);
}
.tt-sticky-cta__btn {
  padding: 12px 28px;
  font-size: 15px;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .tt-sticky-cta { display: none; }
}

/* --------------------------------------------------------------------------
   9. IMAGE BLUR-UP LAZY LOAD EFFECT
   -------------------------------------------------------------------------- */
.tt-img-loading {
  filter: blur(8px);
  transform: scale(1.02);
  transition: filter 0.6s ease-out, transform 0.6s ease-out;
}
.tt-img-loaded {
  filter: blur(0);
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   3. MOBILE HORIZONTAL PRODUCT SCROLL + DOTS
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .tt-products__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .tt-products__grid::-webkit-scrollbar { display: none; }

  .tt-products__grid .tt-product-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

.tt-scroll-dots {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 20px;
  width: 100%;
  max-height: 20px;
}
.tt-scroll-dots span,
.tt-scroll-dot {
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  min-height: 8px !important;
  max-width: 8px !important;
  max-height: 8px !important;
  border-radius: 50% !important;
  background: var(--tt-sand);
  transition: all 0.3s ease;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  float: none !important;
}
.tt-scroll-dot.tt-active {
  background: var(--tt-primary);
  transform: scale(1.3);
}

@media (min-width: 768px) {
  .tt-scroll-dots { display: none; }
}

/* --------------------------------------------------------------------------
   10. INGREDIENT CARD ACCENT GLOW ON HOVER
   -------------------------------------------------------------------------- */
.tt-ingredient-card:hover {
  box-shadow: 0 16px 48px rgba(45, 90, 69, 0.12),
              0 0 0 1px rgba(45, 90, 69, 0.06);
}


/* --------------------------------------------------------------------------
   REDUCED MOTION — respect user preference
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tt-animate { opacity: 1; transform: none; transition: none; }
  .tt-product-card,
  .tt-ingredient-card,
  .tt-btn { transition: none; }
  .tt-product-card:hover,
  .tt-ingredient-card:hover { transform: none; }
  .tt-img-loading { filter: none; transform: none; }
  .tt-sticky-cta { transition: none; }
  .tt-hero__bg { background-attachment: scroll; }
}

/* --------------------------------------------------------------------------
   BRAND ASSETS / MASCOT
   -------------------------------------------------------------------------- */
.tt-brand-icon,
.tt-brand-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.tt-footer__brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tt-footer__brand-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.tt-footer__brand-wordmark {
  width: auto;
  height: 42px;
  max-width: min(220px, 100%);
}

.tt-trust__icon--mascot {
  background: var(--tt-surface);
  padding: 8px;
}

.tt-trust__icon--mascot img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tt-section-accent,
.tt-section-accent::before {
  pointer-events: none;
}

.tt-section-accent {
  position: relative;
}

.tt-section-accent::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 24px;
  width: 72px;
  height: 72px;
  background: url('tt-bernese-icon.svg') center/contain no-repeat;
  opacity: 0.08;
}

/* --------------------------------------------------------------------------
   BRAND PATTERN
   -------------------------------------------------------------------------- */
.tt-pattern-bg {
  background-color: var(--tt-text);
  background-image: url('tt-bernese-icon.svg');
  background-repeat: repeat;
  background-size: 72px 72px;
  background-position: 0 0;
}

@media (max-width: 768px) {
  .tt-footer__brand-lockup {
    justify-content: center;
  }

  .tt-footer__brand-wordmark {
    max-width: 180px;
    height: 36px;
  }

  .tt-section-accent::before {
    width: 52px;
    height: 52px;
    top: 16px;
    right: 16px;
  }
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.tt-announcement {
  background: var(--tt-primary);
  color: var(--tt-white);
  font-family: var(--tt-font);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 8px 24px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.tt-announcement a {
  color: var(--tt-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tt-announcement a:hover { opacity: 0.85; }

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.tt-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.tt-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}
.tt-whatsapp svg { width: 28px; height: 28px; }

@media (max-width: 768px) {
  .tt-whatsapp { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .tt-whatsapp svg { width: 24px; height: 24px; }
}

/* ==========================================================================
   COOKIE CONSENT
   ========================================================================== */
.tt-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--tt-text);
  color: var(--tt-white);
  font-family: var(--tt-font);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
}
.tt-cookie.tt-hidden { display: none; }
.tt-cookie__text { max-width: 600px; }
.tt-cookie__text a {
  color: var(--tt-sand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tt-cookie__btn {
  background: var(--tt-accent);
  color: var(--tt-white);
  border: none;
  border-radius: var(--tt-radius-pill);
  padding: 10px 28px;
  font-family: var(--tt-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.tt-cookie__btn:hover { background: var(--tt-accent-light); }

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.tt-404 {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--tt-font);
}
.tt-404__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
}
.tt-404__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tt-404__heading {
  font-family: var(--tt-font-heading);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--tt-text);
  margin: 0 0 16px;
  line-height: 1.1;
}
.tt-404__text {
  font-size: 17px;
  color: #4A4540;
  line-height: 1.6;
  margin: 0 0 32px;
}
