/* ═══════════════════════════════════════════════
   CSS Variables & Reset
═══════════════════════════════════════════════ */
:root {
  --color-teal: #18B5A8;
  --color-teal-dark: #149e92;
  --color-teal-brand: #3dbeb7;
  --color-amber: #f99f2c;
  --color-amber-dark: #e08a18;
  --color-cream: #F7F3EC;
  --color-cream-dark: #ede8df;
  --color-dark: #1a1a1a;
  --color-muted: #666;
  --color-muted-light: #aaa;
  --color-white: #ffffff;
  --color-border: #e5e0d6;

  --font-heading: 'Fredoka One', cursive;
  --font-body: 'DM Sans', sans-serif;

  --max-width: 480px;
  --section-pad-v: 2rem;
  --section-pad-h: 1.25rem;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);

  --ease: 0.2s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: #ddd8cf;
  color: var(--color-dark);
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════════════
   Page shell — centres & caps width on desktop
═══════════════════════════════════════════════ */
.page-shell {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  background: var(--color-cream);
  min-height: 100dvh;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

/* ═══════════════════════════════════════════════
   Shared Buttons
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: scale(0.97); }

.btn-amber {
  background: var(--color-amber);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(249,159,44,0.38);
}
.btn-amber:hover {
  background: var(--color-amber-dark);
  box-shadow: 0 6px 20px rgba(249,159,44,0.45);
}

.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(24,181,168,0.3);
}
.btn-teal:hover { background: var(--color-teal-dark); }

.btn-teal-outline {
  background: transparent;
  color: var(--color-teal);
  border: 2px solid var(--color-teal);
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}
.btn-teal-outline:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn-contact {
  display: flex;
  width: 100%;
  background: var(--color-white);
  color: var(--color-teal);
  border: 2px solid var(--color-teal);
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.btn-contact:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

/* ═══════════════════════════════════════════════
   Scroll Fade-in
═══════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section heading shared style */
.section-heading {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--color-dark);
  line-height: 1.25;
}

/* ═══════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════ */
.hero {
  background: var(--color-teal);
  padding: 2.6rem var(--section-pad-h) 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.hero-logo img {
  height: 46px;
  width: auto;
  margin-inline: auto;
}
.logo-fallback {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  letter-spacing: 1px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-white);
  line-height: 1.2;
}

.hero-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  max-width: 320px;
  line-height: 1.65;
}

/* Discount block */
.discount-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-block: 0.15rem;
}

.discount-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.discount-pill {
  display: inline-flex;
  align-items: stretch;
  background: rgba(255,255,255,0.13);
  border: 1.5px solid rgba(255,255,255,0.38);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.discount-code {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  padding: 0.5rem 1.1rem 0.5rem 1.3rem;
  letter-spacing: 3px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.copy-btn {
  background: rgba(255,255,255,0.18);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-left: 1.5px solid rgba(255,255,255,0.28);
  transition: background var(--ease);
  min-width: 68px;
}
.copy-btn:hover { background: rgba(255,255,255,0.3); }
.copy-btn.copied { background: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════════
   2. SAVE CONTACT
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--color-white);
  padding: 1.3rem var(--section-pad-h);
  border-bottom: 1px solid var(--color-border);
}

/* ═══════════════════════════════════════════════
   3. CAROUSEL
═══════════════════════════════════════════════ */
.carousel-section {
  background: var(--color-cream);
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.carousel-section .section-header {
  padding-inline: var(--section-pad-h);
  margin-bottom: 1.1rem;
}

.carousel-wrapper {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.carousel-wrapper:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  padding: 0 var(--section-pad-h);
  box-sizing: border-box;
}

.slide-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.7rem;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-teal);
  box-shadow: var(--shadow-sm);
  min-height: 195px;
}

.slide-card--cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.slide-tag {
  display: inline-block;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 1.38rem;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

.slide-card--cta .slide-title {
  margin-bottom: 1.1rem;
}

.slide-body {
  font-size: 0.96rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.15rem var(--section-pad-h) 0.4rem;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-muted-light);
  transition: background var(--ease), width var(--ease), border-radius var(--ease);
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.dot.active {
  background: var(--color-teal);
  width: 22px;
  border-radius: var(--radius-pill);
}

/* ═══════════════════════════════════════════════
   4. FIND US ON
═══════════════════════════════════════════════ */
.find-us-section {
  background: var(--color-white);
  padding: var(--section-pad-v) var(--section-pad-h);
  border-top: 1px solid var(--color-border);
}

.find-us-section .section-heading {
  margin-bottom: 1.1rem;
}

.find-us-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.find-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.95rem;
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.find-link:hover {
  border-color: var(--color-teal);
  background: #edf8f7;
  box-shadow: var(--shadow-sm);
}

.find-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #232f3e;
  flex-shrink: 0;
}
.find-link-icon--amazon {
  background: var(--color-white);
  overflow: hidden;
}
.find-link-icon--amazon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.find-link-icon--blinkit {
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.find-link-icon--web { color: var(--color-teal); }

.find-link-text {
  flex: 1;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--color-dark);
}

.find-link-arrow {
  color: var(--color-muted-light);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   5. FOLLOW US
═══════════════════════════════════════════════ */
.follow-section {
  background: var(--color-cream);
  padding: var(--section-pad-v) var(--section-pad-h);
}

.instagram-card {
  display: block;
  border-radius: var(--radius);
  /* Instagram gradient border */
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 2px;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--ease), transform var(--ease);
}
.instagram-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.instagram-card-inner {
  background: var(--color-white);
  border-radius: calc(var(--radius) - 2px);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.instagram-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.instagram-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.instagram-text strong {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-dark);
}
.instagram-text span {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* ═══════════════════════════════════════════════
   6. OUR OTHER BRANDS
═══════════════════════════════════════════════ */
.brands-section {
  background: var(--color-white);
  padding: var(--section-pad-v) var(--section-pad-h);
  border-top: 1px solid var(--color-border);
}

.brands-section .section-heading {
  margin-bottom: 1.1rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: start;
}

.brand-card-wrap {
  display: flex;
  flex-direction: column;
}

.brand-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.1rem 0.7rem 0.85rem;
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--ease), background var(--ease);
  position: relative;
  text-align: center;
}
.brand-card:hover { border-color: var(--color-teal-brand); }
.brand-card[aria-expanded="true"] {
  border-color: var(--color-teal);
  background: #edf8f7;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.brand-logo-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.brand-logo-fallback {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-teal);
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
  padding-bottom: 1rem; /* space for chevron */
}

.brand-chevron {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  color: var(--color-muted-light);
  transition: transform 0.25s ease, color var(--ease);
}
.brand-card[aria-expanded="true"] .brand-chevron {
  transform: rotate(180deg);
  color: var(--color-teal);
}

/* Accordion drawer */
.brand-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  background: #edf8f7;
  border: 1.5px solid var(--color-teal);
  border-top: none;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.brand-drawer.expanded { max-height: 280px; }

.brand-drawer-inner {
  padding: 0.85rem 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.brand-drawer-inner p {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.brand-drawer-inner .btn-teal-outline {
  font-size: 0.8rem;
  padding: 0.5rem 0.7rem;
  width: 100%;
  border-width: 1.5px;
}

/* ═══════════════════════════════════════════════
   Footer
═══════════════════════════════════════════════ */
.site-footer {
  text-align: center;
  padding: 1.5rem var(--section-pad-h) 2.5rem;
  background: var(--color-cream);
  font-size: 0.82rem;
  color: var(--color-muted-light);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}
.site-footer a {
  color: var(--color-teal);
  font-weight: 500;
}
