/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@400;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --lavender-50: #f5f3ff;
  --lavender-100: #ede9fe;
  --lavender-200: #ddd6fe;
  --lavender-300: #c4b5fd;
  --lavender-400: #a78bfa;
  --gold-400: #d4a574;
  --gold-500: #c49a6c;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--neutral-800);
  background: var(--pink-50);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
}

/* ========== DECORATIVE BACKGROUND ========== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(251, 207, 232, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(221, 214, 254, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(252, 231, 243, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ========== HEADER / NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(251, 207, 232, 0.3);
  padding: 0 2rem;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--pink-400), var(--lavender-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-logo .logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink-500), var(--lavender-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-600);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-400), var(--lavender-400));
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink-500);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 1px solid var(--pink-100);
  }

  .nav-links.open {
    transform: translateY(0);
  }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 40%, rgba(251, 207, 232, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(221, 214, 254, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 50% 30%, rgba(252, 231, 243, 0.2) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -2%) rotate(1deg); }
  66% { transform: translate(-1%, 1%) rotate(-0.5deg); }
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--pink-200);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pink-500);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge span {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--pink-500), var(--lavender-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--neutral-500);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--neutral-700);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--pink-300);
  color: var(--pink-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--pink-500);
  border: 2px solid var(--pink-300);
}

.btn-outline:hover {
  background: var(--pink-500);
  color: var(--white);
  border-color: var(--pink-500);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

/* ========== SECTIONS ========== */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--neutral-900);
}

.section-header p {
  color: var(--neutral-500);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-400), var(--lavender-400));
  border-radius: 3px;
  margin: 1rem auto 0;
}

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

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(251, 207, 232, 0.2);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-200);
}

.feature-card .icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card .icon.pink {
  background: var(--pink-100);
}

.feature-card .icon.lavender {
  background: var(--lavender-100);
}

.feature-card .icon.rose {
  background: var(--rose-100);
}

.feature-card .icon.gold {
  background: #fef3c7;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

/* ========== BLOG SECTION ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(251, 207, 232, 0.15);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--pink-100), var(--lavender-100));
}

.blog-card-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  background: var(--pink-100);
  color: var(--pink-600);
}

.blog-tag.lavender {
  background: var(--lavender-100);
  color: #7c3aed;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--neutral-500);
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

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

.blog-card p {
  font-size: 0.88rem;
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card .author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.blog-card .author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--lavender-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--white);
  font-weight: 600;
}

.blog-card .author-name {
  font-weight: 500;
  color: var(--neutral-700);
}

/* ========== BLOG PAGE FULL ========== */
.page-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--neutral-500);
  max-width: 500px;
  margin: 0 auto;
}

.blog-article {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(251, 207, 232, 0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-article:hover {
  box-shadow: var(--shadow-md);
}

.blog-article h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.blog-article h2 a:hover {
  color: var(--pink-500);
}

.blog-article .article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-article .article-body {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.8;
}

.blog-article .article-body p {
  margin-bottom: 1rem;
}

.blog-article .read-more {
  color: var(--pink-500);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-article .read-more:hover {
  gap: 8px;
}

/* ========== FORUM ========== */
.forum-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.forum-category {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(251, 207, 232, 0.15);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.forum-category:hover, .forum-category.active {
  border-color: var(--pink-300);
  box-shadow: var(--shadow-md);
}

.forum-category.active {
  background: linear-gradient(135deg, rgba(252, 231, 243, 0.5), rgba(237, 233, 254, 0.3));
}

.forum-category .cat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.forum-category .cat-info h3 {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.forum-category .cat-info p {
  font-size: 0.78rem;
  color: var(--neutral-500);
}

.forum-threads {
  max-width: 1200px;
  margin: 0 auto;
}

.forum-thread {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(251, 207, 232, 0.1);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.forum-thread:hover {
  border-color: var(--pink-200);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.forum-thread .thread-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--lavender-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}

.forum-thread .thread-content {
  flex: 1;
  min-width: 0;
}

.forum-thread .thread-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--neutral-800);
}

.forum-thread .thread-title a:hover {
  color: var(--pink-500);
}

.forum-thread .thread-excerpt {
  font-size: 0.82rem;
  color: var(--neutral-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.forum-thread .thread-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.forum-thread .thread-meta span {
  font-size: 0.75rem;
  color: var(--neutral-500);
  display: flex;
  align-items: center;
  gap: 3px;
}

.forum-thread .thread-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
  min-width: 50px;
}

.forum-thread .thread-stats .count {
  font-weight: 600;
  font-size: 1rem;
  color: var(--pink-500);
}

.forum-thread .thread-stats .label {
  font-size: 0.65rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.thread-type-badge {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.thread-type-badge.video {
  background: #fef3c7;
  color: #d97706;
}

.thread-type-badge.interview {
  background: var(--lavender-100);
  color: #7c3aed;
}

.thread-type-badge.discussion {
  background: var(--pink-100);
  color: var(--pink-600);
}

.thread-type-badge.link {
  background: #d1fae5;
  color: #059669;
}

.new-thread-bar {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.new-thread-bar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

/* ========== SHOP ========== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(251, 207, 232, 0.15);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.product-image {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--pink-100), var(--lavender-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.product-info {
  padding: 1.25rem;
}

.product-info h3 {
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.3rem;
}

.product-info .product-desc {
  font-size: 0.82rem;
  color: var(--neutral-500);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.product-info .product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink-500);
  margin-bottom: 0.75rem;
}

.product-info .product-price .old-price {
  font-size: 0.85rem;
  color: var(--neutral-400);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.5rem;
}

.product-info .delivery-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--neutral-500);
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.75rem;
  background: var(--neutral-50);
  border-radius: var(--radius-sm);
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.product-actions .btn {
  flex: 1;
  justify-content: center;
}

/* Shop filter bar */
.shop-filters {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--neutral-200);
  background: var(--white);
  color: var(--neutral-600);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--pink-300);
  background: var(--pink-50);
  color: var(--pink-500);
}

/* ========== NEWSLETTER ========== */
.newsletter {
  background: linear-gradient(135deg, rgba(252, 231, 243, 0.6), rgba(237, 233, 254, 0.4));
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(251, 207, 232, 0.2);
}

.newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: var(--neutral-500);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--pink-200);
  background: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-top: 1px solid var(--pink-100);
  padding: 3rem 2rem 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
}

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

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

.footer-brand .logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink-500), var(--lavender-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--pink-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--neutral-800);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--neutral-500);
  padding: 0.25rem 0;
}

.footer-col a:hover {
  color: var(--pink-500);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--neutral-500);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: var(--pink-500);
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--neutral-100);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

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

.modal h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--neutral-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--lavender-400));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination a, .pagination span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--neutral-200);
  background: var(--white);
  color: var(--neutral-600);
  transition: var(--transition);
}

.pagination a:hover, .pagination span.active {
  background: var(--pink-500);
  color: var(--white);
  border-color: var(--pink-500);
}

/* ========== ORDER FORM (Shop) ========== */
.order-summary {
  background: var(--pink-50);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.order-summary .item-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.order-summary .item-price {
  color: var(--pink-500);
  font-weight: 700;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--pink-50);
}

::-webkit-scrollbar-thumb {
  background: var(--pink-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-400);
}
