/* ==========================================================================
   Mnet's World - Component Library
   Mobile-first reusable components: nav, hero, buttons, cards, sections,
   grid, footer, tabs, and more.
   ========================================================================== */

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: transparent;
  border-bottom: none;
  z-index: var(--z-sticky);
  transition: background 0.35s ease, box-shadow 0.35s ease,
              -webkit-backdrop-filter 0.35s ease, backdrop-filter 0.35s ease;
}

.nav.nav--scrolled {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .nav__inner {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .nav__inner {
    padding: 0 var(--space-8);
  }
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition-base), filter var(--transition-base);
}

.nav__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid var(--color-gold-light);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nav__logo:hover {
  transform: none;
}

.nav__logo:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(197, 165, 90, 0.3);
}

@media (min-width: 768px) {
  .nav__logo img {
    height: 56px;
  }
}

/* Centered brand name */
.nav__brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-pink-600, #b44563);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(180, 69, 99, 0.10);
}

@media (min-width: 768px) {
  .nav__brand {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .nav__brand {
    display: none;
  }
}

/* Desktop nav links */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-1);
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  position: relative;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background-color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--color-gold);
  transition: transform var(--transition-base);
  border-radius: var(--radius-full);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-pink-500);
  background: rgba(212, 96, 122, 0.06);
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__link.active {
  color: var(--color-pink-500);
}

/* CTA in nav */
.nav__cta {
  margin-left: var(--space-3);
}

/* Hamburger button */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: calc(var(--z-overlay) + 1);
  transition: transform 0.2s ease;
}

.nav__hamburger:hover {
  transform: scale(1.08);
}

@media (min-width: 1024px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__hamburger-line {
  display: block;
  width: 26px;
  height: 1.5px;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base),
              background-color var(--transition-base);
}

.nav__hamburger:hover .nav__hamburger-line {
  background-color: var(--color-pink-500);
}

.nav__hamburger-line + .nav__hamburger-line {
  margin-top: 6px;
}

/* Hamburger open state */
.nav__hamburger.active .nav__hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active .nav__hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 32, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: var(--z-overlay);
}

.nav__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile menu panel */
.nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: calc(var(--z-overlay) + 1);
  padding: var(--space-6) var(--space-6) var(--space-8);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
}

.nav__mobile.active {
  transform: translateX(0);
}

/* Mobile menu — logo header */
.nav__mobile-header {
  text-align: center;
  padding: var(--space-4) 0 var(--space-2);
  margin-bottom: var(--space-2);
}

.nav__mobile-logo {
  display: inline-block;
}

.nav__mobile-logo img {
  width: 100px;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--color-gold-light);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

/* Mobile menu — links */
.nav__mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-pink-50);
  border-left: 3px solid transparent;
  transition: color var(--transition-base), padding-left var(--transition-base),
              border-color var(--transition-base), background var(--transition-base);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.nav__mobile-link:hover {
  color: var(--color-gold);
  padding-left: var(--space-5);
  background: var(--color-pink-50);
}

.nav__mobile-link.active {
  color: var(--color-pink-500);
  border-left-color: var(--color-gold);
  padding-left: var(--space-5);
  background: var(--color-pink-50);
}

/* Mobile menu — CTA */
.nav__mobile-cta {
  margin-top: var(--space-6);
  text-align: center;
}

/* Mobile menu — social links */
.nav__mobile-social {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-6);
}

.nav__mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-cream-dark);
  color: var(--color-text-light);
  transition: all var(--transition-base);
}

.nav__mobile-social a:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Prevent body scroll when mobile nav open */
body.nav-open {
  overflow: hidden;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--color-pink-100) 0%,
    var(--color-pink-50) 40%,
    var(--color-cream) 100%
  );
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-10);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
  width: 100%;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-script);
  font-size: var(--text-lg);
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.hero__title em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--color-pink-500);
  font-size: 1.1em;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.hero__image {
  position: relative;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

/* Hero decorative floating shapes */
.hero__decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.hero__decor--1 {
  width: 200px;
  height: 200px;
  background: var(--color-pink-300);
  top: -60px;
  right: -40px;
}

.hero__decor--2 {
  width: 120px;
  height: 120px;
  background: var(--color-gold-light);
  bottom: 40px;
  left: -30px;
}

.hero__decor--3 {
  width: 80px;
  height: 80px;
  background: var(--color-pink-200);
  top: 50%;
  right: 10%;
}

/* Hero placeholder for cake image */
.hero__placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(
    145deg,
    var(--color-pink-200) 0%,
    var(--color-cream) 50%,
    var(--color-pink-100) 100%
  );
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 96, 122, 0.12);
  border: 3px solid var(--color-pink-200);
  overflow: hidden;
  position: relative;
}

.hero__placeholder-icon {
  font-size: 4rem;
  margin-bottom: var(--space-2);
  opacity: 0.6;
}

.hero__placeholder-text {
  font-family: var(--font-script);
  font-size: var(--text-xl);
  color: var(--color-pink-500);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .hero {
    min-height: 560px;
    padding: var(--space-16) 0;
  }

  .hero__title {
    font-size: var(--text-5xl);
  }

  .hero__subtitle {
    font-size: var(--text-xl);
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 600px;
  }

  .hero__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }

  .hero__content {
    flex: 1;
    max-width: 520px;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__image,
  .hero__placeholder {
    flex-shrink: 0;
    max-width: 440px;
  }

  .hero__title {
    font-size: var(--text-6xl);
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-3) var(--space-6);
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* Primary: pink fill */
.btn-primary {
  background-color: var(--color-pink-500);
  color: var(--color-white);
  border-color: var(--color-pink-500);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-pink-600);
  border-color: var(--color-pink-600);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 96, 122, 0.28);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Outline: gold border */
.btn-outline {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline:active {
  transform: translateY(0);
}

/* WhatsApp */
.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background-color: #1DA851;
  border-color: #1DA851;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Secondary: cream bg */
.btn-secondary {
  background-color: var(--color-cream-dark);
  color: var(--color-text);
  border-color: var(--color-cream-dark);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--color-pink-100);
  border-color: var(--color-pink-200);
  color: var(--color-pink-500);
  transform: translateY(-2px);
}

/* Large variant */
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* Small variant */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

/* Icon only */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-cream);
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body {
  padding: var(--space-4);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-normal);
}

/* ── Cake Product Card ─────────────────────────────────────────────────── */

.card-cake {
  position: relative;
  text-align: center;
}

.card-cake .card__image {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-cake .card__body {
  padding: var(--space-4) var(--space-3);
}

.card-cake .card__title {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.card-cake__price {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-pink-500);
}

.card-cake__price-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--color-white);
  color: var(--color-pink-500);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  z-index: var(--z-base);
}

.card-cake__category {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.card-cake__actions {
  margin-top: var(--space-3);
}

/* Cake card image placeholder */
.card-cake__placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-pink-100), var(--color-cream));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-cake__placeholder-icon {
  font-size: 3rem;
  margin-bottom: var(--space-2);
  opacity: 0.4;
}

.card-cake__placeholder-text {
  font-family: var(--font-script);
  color: var(--color-pink-400);
  font-size: var(--text-sm);
}

/* ── Blog Post Card ────────────────────────────────────────────────────── */

.card-blog .card__image {
  aspect-ratio: 16 / 10;
}

.card-blog .card__body {
  padding: var(--space-5);
}

.card-blog__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.card-blog__category {
  display: inline-block;
  background: var(--color-pink-100);
  color: var(--color-pink-500);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.card-blog__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.card-blog .card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  transition: color var(--transition-base);
}

.card-blog:hover .card__title {
  color: var(--color-pink-500);
}

.card-blog .card__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.card-blog__link {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--color-pink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}

.card-blog__link:hover {
  color: var(--color-gold);
}

/* Blog card image placeholder */
.card-blog__placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-cream), var(--color-pink-100));
}

.card-blog__placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-2);
  opacity: 0.4;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: var(--space-12) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-16) 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-20) 0;
  }
}

.section--cream {
  background-color: var(--color-cream);
}

.section--pink {
  background-color: var(--color-pink-50);
}

.section--white {
  background-color: var(--color-white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .section__header {
    margin-bottom: var(--space-12);
  }
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.section__title--script {
  font-family: var(--font-script);
  font-size: var(--text-3xl);
  color: var(--color-text);
}

@media (min-width: 768px) {
  .section__title {
    font-size: var(--text-3xl);
  }
  .section__title--script {
    font-size: var(--text-4xl);
  }
}

@media (min-width: 1024px) {
  .section__title {
    font-size: var(--text-4xl);
  }
  .section__title--script {
    font-size: var(--text-5xl);
  }
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: var(--space-4) auto 0;
  line-height: var(--leading-normal);
}

@media (min-width: 768px) {
  .section__subtitle {
    font-size: var(--text-lg);
  }
}

/* Section "View All" link */
.section__more {
  text-align: center;
  margin-top: var(--space-8);
}

.section__more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-pink-500);
  transition: color var(--transition-base), gap var(--transition-base);
}

.section__more-link:hover {
  color: var(--color-gold);
  gap: var(--space-3);
}

.section__more-link svg,
.section__more-link .arrow {
  transition: transform var(--transition-base);
}

.section__more-link:hover svg,
.section__more-link:hover .arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   GRID
   ========================================================================== */

.grid {
  display: grid;
  gap: var(--space-6);
}

/* 2-column grid */
.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3-column grid */
.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 4-column grid */
.grid-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   CATEGORY CARDS
   ========================================================================== */

.card-category {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-category:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card-category__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card-category:hover .card-category__bg {
  transform: scale(1.08);
}

/* Gradient overlay placeholder */
.card-category__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(61, 32, 40, 0.7) 100%
  );
  z-index: 1;
}

.card-category__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
  z-index: 2;
  color: var(--color-white);
}

.card-category__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

@media (min-width: 768px) {
  .card-category__title {
    font-size: var(--text-2xl);
  }
}

.card-category__subtitle {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2);
}

.card-category__link {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

.card-category__link:hover {
  color: var(--color-white);
}

/* Category placeholder background */
.card-category__placeholder-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.15;
}

/* Category color variants */
.card-category--pink {
  background: linear-gradient(135deg, var(--color-pink-300) 0%, var(--color-pink-500) 100%);
}

.card-category--cream {
  background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-gold-light) 100%);
}

.card-category--blush {
  background: linear-gradient(135deg, var(--color-pink-100) 0%, var(--color-pink-400) 100%);
}

/* ==========================================================================
   ABOUT TEASER
   ========================================================================== */

.about-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}

.about-teaser__image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--color-pink-400);
  box-shadow:
    0 0 0 6px rgba(232, 124, 138, 0.3),
    0 0 30px rgba(212, 96, 122, 0.25),
    0 0 60px rgba(212, 96, 122, 0.15);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-pink-100), var(--color-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pink-glow-pulse 3s ease-in-out infinite;
}

.about-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-teaser__placeholder-icon {
  font-size: 4rem;
  opacity: 0.3;
}

.about-teaser__content {
  max-width: 600px;
}

.about-teaser__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.about-teaser__script {
  font-family: var(--font-script);
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.about-teaser__text {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .about-teaser__image {
    width: 260px;
    height: 260px;
  }

  .about-teaser__title {
    font-size: var(--text-3xl);
  }
}

@media (min-width: 1024px) {
  .about-teaser {
    flex-direction: row;
    text-align: left;
    gap: var(--space-12);
  }

  .about-teaser__image {
    width: 300px;
    height: 300px;
  }
}

/* ==========================================================================
   CATEGORY TABS
   ========================================================================== */

.tabs {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-2);
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: var(--color-cream-dark);
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.tab:hover {
  background: var(--color-pink-100);
  color: var(--color-pink-500);
}

.tab.active {
  background: var(--color-pink-500);
  color: var(--color-white);
  border-color: var(--color-pink-500);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: linear-gradient(180deg, #52203D 0%, var(--color-dark) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 3px solid var(--color-gold);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Footer brand column */
.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: var(--space-3);
  transition: transform var(--transition-base);
}

.footer__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  border-radius: 12px;
  border: 2px solid rgba(197, 165, 90, 0.4);
}

.footer__logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(197, 165, 90, 0.4));
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-4);
}

/* Footer social icons */
.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--text-lg);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--color-pink-500);
  border-color: var(--color-pink-500);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212, 96, 122, 0.35);
}

.footer__social-link--facebook:hover {
  background: var(--color-facebook);
  border-color: var(--color-facebook);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
}

/* Footer nav column */
.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  position: relative;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer__link:hover {
  color: var(--color-gold-light);
  padding-left: var(--space-2);
}

/* Footer contact */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer__contact-item a:hover {
  color: var(--color-gold-light);
}

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(197, 165, 90, 0.25);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  text-align: center;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer__copyright a {
  color: var(--color-gold-light);
  text-decoration: none;
}

.footer__copyright a:hover {
  color: var(--color-gold);
}

/* Script tagline */
.footer__script {
  font-family: var(--font-script);
  font-size: var(--text-lg);
  color: var(--color-gold-light);
  display: block;
  margin-top: var(--space-2);
}

/* ── Pink glow pulse (shared by profile bubbles) ──────────────────────── */

@keyframes pink-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(232, 124, 138, 0.3),
      0 0 30px rgba(212, 96, 122, 0.25),
      0 0 60px rgba(212, 96, 122, 0.15);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(232, 124, 138, 0.35),
      0 0 40px rgba(212, 96, 122, 0.35),
      0 0 80px rgba(212, 96, 122, 0.2);
  }
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */

.scroll-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  background: var(--color-pink-500);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-pink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
  font-size: var(--text-xl);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-pink-600);
  transform: translateY(-3px);
}

/* ==========================================================================
   LOADING STATES
   ========================================================================== */

/* Skeleton loading */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--color-cream-dark) 25%,
    var(--color-pink-50) 50%,
    var(--color-cream-dark) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton--text {
  height: 16px;
  margin-bottom: var(--space-2);
}

.skeleton--title {
  height: 24px;
  width: 60%;
  margin-bottom: var(--space-3);
}

.skeleton--image {
  aspect-ratio: 1 / 1;
  width: 100%;
}

.skeleton--card {
  height: 320px;
}

/* ==========================================================================
   HORIZONTAL SCROLL CONTAINER (mobile)
   ========================================================================== */

.hscroll {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--space-4);
}

.hscroll::-webkit-scrollbar {
  display: none;
}

.hscroll > * {
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* On desktop, hscroll becomes a regular grid */
@media (min-width: 1024px) {
  .hscroll--to-grid {
    display: grid;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .hscroll--to-grid > * {
    flex-shrink: unset;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

/* Fade in up – for elements entering the viewport */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Stagger children */
.stagger > *:nth-child(1) { animation-delay: 0s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.2s; }
.stagger > *:nth-child(4) { animation-delay: 0.3s; }
.stagger > *:nth-child(5) { animation-delay: 0.4s; }
.stagger > *:nth-child(6) { animation-delay: 0.5s; }

/* Gentle float animation for hero decoration */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
  animation: float 5s ease-in-out 1s infinite;
}
