:root {
  --ink: #211632;
  --ink-soft: #564864;
  --blue-900: #17225f;
  --blue-700: #2460b9;
  --blue-500: #37a2e6;
  --purple-700: #6e3fba;
  --purple-500: #9466df;
  --violet-100: #f1eaff;
  --sky-100: #e8f7ff;
  --cream: #fffaf3;
  --white: #ffffff;
  --cookie: #8a4f2a;
  --caramel: #ffbf4b;
  --coral: #ff7b70;
  --mint: #80d8bd;
  --shadow-soft: 0 18px 42px rgba(27, 28, 88, 0.12);
  --shadow-card: 0 24px 54px rgba(27, 28, 88, 0.18);
}

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

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 100% 8%, rgba(55, 162, 230, 0.22), transparent 60%),
    radial-gradient(780px 460px at 0% 18%, rgba(148, 102, 223, 0.22), transparent 58%),
    linear-gradient(180deg, #fbfdff 0%, #fffaf3 52%, #f6efff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.shipping-bar {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1rem;
  color: #1c1531;
  background: linear-gradient(90deg, #ffce62, #ffb143);
  font-weight: 800;
  text-align: center;
}

.shipping-bar p {
  margin: 0;
}

.shipping-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.78rem;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(110, 63, 186, 0.12);
}

.nav {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  font-family: "Baloo 2", cursive;
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  line-height: 0.95;
  font-size: 1.05rem;
  background:
    radial-gradient(circle at 68% 24%, #fff4b6 0 8%, transparent 9%),
    linear-gradient(145deg, var(--purple-700), var(--blue-700));
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(148, 102, 223, 0.13);
  color: var(--purple-700);
}

.nav-actions {
  display: flex;
  gap: 0.45rem;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-700), var(--purple-700));
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(36, 96, 185, 0.2);
}

.icon-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: calc(100vh - 132px);
  padding: 3rem 0 4rem;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(28, 35, 111, 0.96), rgba(52, 146, 211, 0.9)),
    linear-gradient(180deg, #1c4c98, #7a4bc0);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 70px 64px, rgba(255, 255, 255, 0.38) 0 1px, transparent 2px);
  background-size: 120px 120px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -130px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 38%, #70441f 0 7%, transparent 8%),
    radial-gradient(circle at 62% 52%, #5f351b 0 6%, transparent 7%),
    radial-gradient(circle at 36% 62%, #3e2416 0 5%, transparent 6%),
    linear-gradient(135deg, #d89345, #a8612f);
  border: 34px solid #ffcf58;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.18);
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding: 2rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--caramel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", cursive;
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 4.2vw, 3.85rem);
}

h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2.05rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  max-width: 64ch;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-primary {
  color: var(--ink);
  background: var(--caramel);
}

.btn-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
}

.hero-offer {
  width: min(520px, 100%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-offer strong {
  color: var(--caramel);
  font-size: 1.65rem;
  line-height: 1;
  white-space: nowrap;
}

.hero-offer span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-cookie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 0.9rem;
  transform: rotate(-2deg);
  min-width: 0;
}

.cookie-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(10, 16, 54, 0.34);
}

.cookie-photo-large {
  grid-row: span 2;
}

.feature-strip {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--purple-700), var(--blue-700), var(--purple-700));
}

.feature-track {
  width: max-content;
  display: flex;
  gap: 2rem;
  padding: 0.68rem 0;
  font-weight: 800;
  white-space: nowrap;
  animation: feature-scroll 28s linear infinite;
}

.feature-track span {
  display: inline-flex;
  align-items: center;
}

.feature-track span::before {
  content: "*";
  margin-right: 0.55rem;
  color: var(--caramel);
}

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

.section {
  padding: 4.6rem 0;
}

section[id] {
  scroll-margin-top: 150px;
}

#home {
  scroll-margin-top: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.7rem;
}

.section-intro {
  margin: 0;
  color: var(--ink-soft);
  max-width: 68ch;
}

.section-blue {
  background:
    linear-gradient(180deg, rgba(232, 247, 255, 0.9), rgba(241, 234, 255, 0.88));
}

.section-blue .eyebrow,
.section-purple .eyebrow {
  color: #ffc857;
}

.section-purple {
  color: var(--white);
  background:
    radial-gradient(620px 360px at 88% 10%, rgba(55, 162, 230, 0.36), transparent 65%),
    linear-gradient(135deg, #34206d, #2460b9);
}

.section-purple .section-intro {
  color: rgba(255, 255, 255, 0.82);
}

.bestseller-grid,
.occasion-grid,
.recipe-grid,
.testimonials-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.bestseller-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.slider-wrapper {
  width: 100%;
}

.bestseller-slider {
  width: 100%;
  overflow: hidden;
}

.bestseller-slider .bestseller-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.25rem;
}

.bestseller-slider .bestseller-grid::-webkit-scrollbar {
  display: none;
}

.bestseller-slider .bestseller-card {
  flex: 0 0 min(320px, 100%);
  scroll-snap-align: start;
}

.bestseller-card,
.occasion-card,
.recipe-card,
.contact-card,
blockquote {
  border: 1px solid rgba(110, 63, 186, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.bestseller-card,
.occasion-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bestseller-card:hover,
.occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.bestseller-card img,
.occasion-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bestseller-card div,
.occasion-card {
  padding: 1rem;
}

.bestseller-card h3,
.occasion-card h3,
.recipe-card h3,
.contact-card h3 {
  margin: 0 0 0.35rem;
}

.bestseller-card p,
.occasion-card p,
.recipe-card p,
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.occasion-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.occasion-card {
  display: flex;
  flex-direction: column;
}

.occasion-card img {
  height: 165px;
  margin: -1rem -1rem 0.85rem;
  width: calc(100% + 2rem);
}

.flavours-wrap {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

.cookies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.cookie-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--purple-700), var(--blue-700));
  box-shadow: var(--shadow-soft);
}

.cookie-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.recipe-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recipe-card {
  padding: 1rem;
  color: var(--ink);
}

.recipe-badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.28rem 0.65rem;
  color: var(--blue-900);
  background: var(--caramel);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.75rem;
}

.recipe-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.review-card,
blockquote {
  margin: 0;
  padding: 1rem;
  border-left: 5px solid var(--coral);
}

blockquote {
  padding: 1rem;
  border-left: 5px solid var(--coral);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(66, 133, 244, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  min-height: 280px;
}

.review-head {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-author {
  font-weight: 800;
  color: var(--ink);
}

.review-meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stars {
  color: #f5b000;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.review-date {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.review-text {
  margin: 0;
  color: var(--ink);
  line-height: 1.7;
  font-size: 1rem;
}

.review-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #1a73e8;
  font-size: 0.95rem;
  font-weight: 900;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

@media (max-width: 650px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.instagram-section {
  background: linear-gradient(180deg, rgba(255, 245, 250, 0.95), rgba(255, 255, 255, 0.95));
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.instagram-grid .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.instagram-grid .instagram-media img {
  width: 100% !important;
  height: auto !important;
}

.instagram-footer {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.instagram-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.instagram-follow:hover {
  transform: translateY(-2px);
}

.contact-section {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.5), rgba(232, 247, 255, 0.9));
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
}

.contact-card {
  padding: 1.2rem;
}

.contact-card a:not(.social-icon) {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: none;
}

.social-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(48px, auto));
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  box-shadow: none;
  padding: 0;
  transition: transform 0.2s ease;
  background: transparent;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.social-icon span img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.whatsapp,
.instagram,
.zomato,
.swiggy,
.google {
  background: transparent;
}

.social-icon span svg,
.social-icon > svg {
  width: 24px;
  height: 24px;
}

.social-icon svg path,
.social-icon svg circle,
.social-icon svg rect {
  stroke: currentColor;
  fill: currentColor;
}

.whatsapp-mark {
  width: 58px;
  height: 58px;
  fill: var(--white);
}

.whatsapp {
  background: #25d366;
}

.instagram {
  background: linear-gradient(145deg, #833ab4, #fd1d1d, #fcb045);
}

.zomato {
  background: #e23744;
}

.swiggy {
  background: #fc8019;
}

.google {
  background: conic-gradient(from 45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.map-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 1rem;
  align-items: stretch;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
}

.map-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-footer {
  padding: 1.6rem 0 2rem;
  color: rgba(255, 255, 255, 0.86);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-cookie-grid {
    max-width: 720px;
    grid-auto-rows: 170px;
    transform: none;
  }

  .bestseller-grid,
  .occasion-grid,
  .recipe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flavours-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shipping-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .shipping-bar a {
    align-self: center;
  }

  .nav {
    flex-wrap: wrap;
    min-height: 0;
    gap: 0.7rem;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
    font-size: 0.9rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.1rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 0.42rem 0.7rem;
    white-space: nowrap;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 2.3rem 0 3.2rem;
  }

  .hero-stage {
    gap: 1rem;
  }

  .hero-copy {
    padding: 1rem 0;
  }

  .hero::after {
    display: none;
  }

  .hero-cookie-grid {
    grid-auto-rows: 150px;
    gap: 0.65rem;
    width: 100%;
  }

  .hero-offer {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 8px;
  }

  .section {
    padding: 3.4rem 0;
  }

  .bestseller-grid,
  .occasion-grid,
  .recipe-grid,
  .testimonials-grid,
  .cookies-grid,
  .social-card {
    grid-template-columns: 1fr;
  }

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

  .map-card iframe {
    min-height: 260px;
  }
}

@media (max-width: 500px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .shipping-bar {
    padding: 0.55rem 0.8rem;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 2.35rem);
  }

  .cta-row {
    gap: 0.65rem;
  }

  .btn {
    min-height: 46px;
    padding: 0.72rem 1rem;
  }

  .hero-cookie-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(104px, 30vw, 128px);
  }

  .cookie-photo {
    border-width: 4px;
  }

  .feature-track {
    gap: 1.35rem;
  }
}
