/* ============================================================
   Sweetisserie — Brand Theme Override
   Warm gold (#F7C361) + cream (#FDEBCD) palette
   ============================================================ */

:root {
  --sw-primary:      #ffae18;
  --sw-primary-dark:  #e5ab3a;
  --sw-cream:        #FDEBCD;
  --sw-cream-dark:   #f5ddb5;
  --sw-text:         #3a2a0a;
  --sw-text-muted:   #7a6540;
  --sw-card:         #fff8ed;
  --sw-border:       #f0dbb8;
  --sw-white:        #fffcf5;
}

/* ---- Video section ---- */
.sw-video {
  padding: var(--section-padding);
  background: var(--sw-cream-dark);
  text-align: center;
}

.sw-video__header {
  margin-bottom: 3rem;
}

.sw-video__frame {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--sw-border);
  aspect-ratio: 16 / 9;
  background: var(--sw-card);
  box-shadow: 0 8px 30px rgba(58, 42, 10, .1);
}

.sw-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Page base ---- */
body.theme-sweetisserie {
  background: var(--sw-cream);
  color: var(--sw-text);
}

/* ---- Global navbar on light pages — dark logo & dark text ---- */
body.theme-sweetisserie .navbar {
  background: rgba(253, 235, 205, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.theme-sweetisserie .navbar.scrolled {
  background: rgba(253, 235, 205, .96);
  box-shadow: 0 1px 0 var(--sw-border);
}

body.theme-sweetisserie .navbar__links > a,
body.theme-sweetisserie .dropdown__trigger {
  color: var(--sw-text);
}

body.theme-sweetisserie .navbar__links > a:hover,
body.theme-sweetisserie .dropdown__trigger:hover,
body.theme-sweetisserie .dropdown.open .dropdown__trigger {
  color: var(--sw-primary-dark);
}

body.theme-sweetisserie .navbar__links > a::after {
  background: var(--sw-primary);
}

body.theme-sweetisserie .navbar__toggle span {
  background: var(--sw-text);
}

body.theme-sweetisserie .dropdown__menu {
  background: rgba(255, 252, 245, .97);
  border-color: var(--sw-border);
}

body.theme-sweetisserie .dropdown__menu a {
  color: var(--sw-text);
}

body.theme-sweetisserie .dropdown__menu a:hover {
  background: rgba(247, 195, 97, .15);
  color: var(--sw-primary-dark);
}

/* ---- Sub-nav color overrides (Sweetisserie) ---- */
body.theme-sweetisserie .subnav {
  background: var(--sw-white);
  border-bottom-color: var(--sw-border);
}

body.theme-sweetisserie .subnav__links a {
  color: var(--sw-text-muted);
}

body.theme-sweetisserie .subnav__links a:hover,
body.theme-sweetisserie .subnav__links a.active {
  color: var(--sw-primary-dark);
}

/* ---- Hero (Sweetisserie) ---- */
body.theme-sweetisserie .hero {
  background: linear-gradient(170deg, var(--sw-cream) 0%, var(--sw-white) 50%, var(--sw-cream) 100%);
}

body.theme-sweetisserie .hero::before {
  background: radial-gradient(ellipse at 50% 30%, rgba(247,195,97,.12) 0%, transparent 70%);
}

body.theme-sweetisserie .hero__tagline {
  color: var(--sw-primary-dark);
}

body.theme-sweetisserie .hero__title {
  color: var(--sw-text);
}

body.theme-sweetisserie .hero__description {
  color: var(--sw-text-muted);
}

/* ---- Buttons (Sweetisserie) ---- */
body.theme-sweetisserie .btn-primary {
  background: var(--sw-primary);
  color: var(--sw-text);
}

body.theme-sweetisserie .btn-primary:hover {
  background: var(--sw-primary-dark);
  box-shadow: 0 8px 24px rgba(247,195,97,.35);
}

body.theme-sweetisserie .btn-outline {
  color: var(--sw-primary-dark);
  border-color: var(--sw-primary-dark);
}

body.theme-sweetisserie .btn-outline:hover {
  background: var(--sw-primary);
  color: var(--sw-text);
}

/* ---- Section labels & titles ---- */
body.theme-sweetisserie .section-label {
  color: var(--sw-primary-dark);
}

body.theme-sweetisserie .section-title {
  color: var(--sw-text);
}

body.theme-sweetisserie .section-subtitle {
  color: var(--sw-text-muted);
}

/* ---- Philosophy / feature cards ---- */
.philosophy {
  padding: var(--section-padding);
  background: var(--sw-white);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.philosophy__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.philosophy__text p {
  color: var(--sw-text-muted);
  font-size: .98rem;
  line-height: 1.8;
}

/* ---- Product showcase cards ---- */
.showcase {
  padding: var(--section-padding);
  background: var(--sw-cream);
}

.showcase__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

.showcase-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.showcase-card__img {
  width: 100%;
  height: 220px;
  background: var(--sw-cream-dark);
  overflow: hidden;
}

.showcase-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-card__body {
  padding: 1.5rem;
}

.showcase-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--sw-text);
  margin-bottom: .35rem;
}

.showcase-card__desc {
  font-size: .9rem;
  color: var(--sw-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ---- Order CTA ---- */
.order-cta {
  padding: var(--section-padding);
  background: var(--sw-white);
}

.order-cta__inner {
  background: linear-gradient(135deg, var(--sw-cream) 0%, rgba(247,195,97,.12) 100%);
  border: 1px solid var(--sw-border);
  border-radius: 24px;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.order-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--sw-text);
  margin-bottom: 1rem;
}

.order-cta__desc {
  color: var(--sw-text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---- Services strip ---- */
.services-strip {
  padding: var(--section-padding);
  background: var(--sw-cream);
}

.services-strip__header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: 14px;
  padding: 1rem 1rem 1.25rem;
  text-align: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.service-card:hover {
  border-color: var(--sw-primary);
  transform: translateY(-3px);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

img.service-card__icon {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: .75rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--sw-text);
  margin-bottom: .4rem;
}

.service-card__desc {
  font-size: .85rem;
  color: var(--sw-text-muted);
  line-height: 1.6;
}

/* ---- Footer override ---- */
body.theme-sweetisserie .footer {
  background: var(--sw-white);
  border-top-color: var(--sw-border);
}

body.theme-sweetisserie .footer__col-title {
  color: var(--sw-text);
}

body.theme-sweetisserie .footer__col a,
body.theme-sweetisserie .footer__contact a,
body.theme-sweetisserie .footer__hours p,
body.theme-sweetisserie .footer__address p {
  color: var(--sw-text-muted);
}

body.theme-sweetisserie .footer__col a:hover,
body.theme-sweetisserie .footer__contact a:hover {
  color: var(--sw-primary-dark);
}

body.theme-sweetisserie .footer__copy {
  color: var(--sw-text-muted);
  border-top-color: var(--sw-border);
}

body.theme-sweetisserie .footer__logo img {
  opacity: 1;
}

/* ---- Responsive ---- */
@media (hover: none) {
  .showcase-card:hover,
  .service-card:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .subnav__links a {
    font-size: .68rem;
    padding: .4rem .6rem;
  }

  .subnav__links a i {
    font-size: 1.1rem;
  }

  body.theme-sweetisserie .navbar__links {
    background: rgba(255, 252, 245, .98);
  }

  body.theme-sweetisserie .navbar__links a,
  body.theme-sweetisserie .dropdown__trigger {
    color: var(--sw-text);
  }

  body.theme-sweetisserie .dropdown__menu {
    background: transparent;
    border-left-color: var(--sw-primary);
  }

  body.theme-sweetisserie .dropdown__menu a {
    color: var(--sw-text-muted);
  }

  .showcase-card__img {
    height: 180px;
  }

  .order-cta__inner {
    padding: 3rem 1.5rem;
    border-radius: 18px;
  }
}

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

  .services-strip__grid {
    grid-template-columns: 1fr;
  }

  .showcase-card__img {
    height: 160px;
  }

  .order-cta__inner {
    padding: 2.5rem 1.25rem;
    border-radius: 14px;
  }
}

/* ---- Add-on CTA (shared) ---- */
.addon-cta {
  padding: var(--section-padding);
  background: var(--sw-white);
}

.addon-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--sw-cream);
  border: 1px solid var(--sw-border);
  border-radius: 20px;
  padding: 3rem;
  overflow: hidden;
}

.addon-cta__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.addon-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--sw-text);
}

.addon-cta__desc {
  font-size: .95rem;
  color: var(--sw-text-muted);
  line-height: 1.7;
}

.addon-cta__desc strong {
  color: var(--sw-primary);
  font-weight: 700;
}

.addon-cta__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-cta__visual img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .addon-cta__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
  }

  .addon-cta__text {
    align-items: center;
  }

  .addon-cta__visual img {
    max-width: 280px;
  }
}
