/* HerPicks.co — Luxury Beauty Affiliate Site
   Aesthetic: Editorial beauty magazine meets modern e-commerce
   Palette: Soft blush, rose gold, warm whites, deep rose accents */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --blush: #F2E0D9;
  --blush-light: #FBF5F3;
  --blush-dark: #E8CFC5;
  --rose: #C4727F;
  --rose-deep: #A3505E;
  --rose-gold: #B76E79;
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --cream: #FEFCFA;
  --white: #FFFFFF;
  --text-primary: #2D2226;
  --text-secondary: #6B5B60;
  --text-light: #9B8A90;
  --border: #EDE4E0;
  --shadow-soft: 0 2px 20px rgba(45,34,38,0.06);
  --shadow-card: 0 4px 24px rgba(45,34,38,0.08);
  --shadow-hover: 0 8px 40px rgba(45,34,38,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ═══════════ HEADER ═══════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(254,252,250,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-soft); }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--rose-deep);
  letter-spacing: -0.5px;
}

.logo span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 32px; }

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--rose-deep); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--rose-deep); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.search-toggle, .mobile-menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.search-toggle:hover, .mobile-menu-toggle:hover {
  background: var(--blush);
  color: var(--rose-deep);
}

.mobile-menu-toggle { display: none; }

/* Search overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254,252,250,0.97);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.search-overlay.active { opacity: 1; visibility: visible; }

.search-container {
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
}

.search-container input {
  width: 100%;
  padding: 20px 24px;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  border: none;
  border-bottom: 2px solid var(--rose-gold);
  background: transparent;
  color: var(--text-primary);
  outline: none;
}

.search-container input::placeholder { color: var(--text-light); }

.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--text-secondary);
  cursor: pointer;
}

.search-results {
  margin-top: 24px;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.search-result-item:hover { padding-left: 8px; }

.search-result-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.search-result-item .result-info h4 {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.search-result-item .result-info .result-price {
  color: var(--rose-deep);
  font-weight: 600;
  font-size: 14px;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--cream);
  z-index: 3000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-nav.active { right: 0; }

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-nav-backdrop.active { opacity: 1; visibility: visible; }

.mobile-nav .close-mobile {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--text-secondary);
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover { color: var(--rose-deep); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 50%, var(--blush-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,114,127,0.08) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid var(--rose-gold);
  border-radius: 24px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--rose-deep);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 48px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(163,80,94,0.3);
}

.hero-cta:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(163,80,94,0.35);
}

/* ═══════════ CATEGORIES NAV ═══════════ */
.categories-strip {
  padding: 48px 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--blush-light);
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--rose-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.category-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.category-card h3 {
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

.category-card p {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ═══════════ SECTION HEADERS ═══════════ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--rose-gold);
  margin: 16px auto 0;
}

/* ═══════════ PRODUCT GRID ═══════════ */
.products-section {
  padding: 64px 0;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tag:hover, .filter-tag.active {
  background: var(--rose-deep);
  color: var(--white);
  border-color: var(--rose-deep);
}

.sort-select {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  outline: none;
}

.sort-select:focus { border-color: var(--rose-gold); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ═══════════ PRODUCT CARD ═══════════ */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

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

.product-image .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  white-space: nowrap;
}

.badge.bestseller { background: var(--gold); color: var(--white); }
.badge.new { background: var(--rose-deep); color: var(--white); }
.badge.sale { background: #E85D75; color: var(--white); }

.product-image {
  display: block;
  position: relative;
  padding-top: 100%;
  background: var(--blush-light);
  overflow: hidden;
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-category-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rose-gold);
  margin-bottom: 8px;
}

.product-info h3 {
  font-size: 17px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 1px;
  color: var(--gold);
  font-size: 14px;
}

.stars .empty { color: var(--border); }

.review-count {
  font-size: 12px;
  color: var(--text-light);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-current {
  font-size: 20px;
  font-weight: 700;
  color: var(--rose-deep);
}

.price-original {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}

.btn-shop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--rose-deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-shop:hover {
  background: var(--rose);
  box-shadow: 0 4px 16px rgba(163,80,94,0.3);
}

.btn-shop svg { width: 16px; height: 16px; }

/* ═══════════ FEATURED BANNER ═══════════ */
.featured-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--text-primary) 0%, #3D2F33 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.featured-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(196,114,127,0.15) 0%, transparent 60%);
}

.featured-banner .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.featured-text { flex: 1; position: relative; z-index: 1; }

.featured-text .section-header { text-align: left; }
.featured-text .section-header h2 { color: var(--white); }
.featured-text .section-header p { color: rgba(255,255,255,0.7); }

.featured-products-row {
  display: flex;
  gap: 20px;
  flex: 1.2;
}

.featured-products-row .product-card {
  flex: 1;
  min-width: 0;
}

/* ═══════════ NEWSLETTER ═══════════ */
.newsletter {
  padding: 64px 0;
  background: var(--blush);
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 32px auto 0;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  outline: none;
}

.newsletter-form input:focus { border-color: var(--rose-gold); }

.newsletter-form button {
  padding: 14px 28px;
  background: var(--rose-deep);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition);
}

.newsletter-form button:hover { background: var(--rose); }
.newsletter-form button:disabled { opacity: 0.7; cursor: not-allowed; }

.newsletter-status {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
  color: var(--text-secondary);
}
.newsletter-status.success { color: #2e7d32; font-weight: 500; }
.newsletter-status.error { color: #c62828; }

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--rose-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 12px; }

.affiliate-disclosure {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  max-width: 600px;
  line-height: 1.6;
}

/* ═══════════ CATEGORY PAGE ═══════════ */
.category-hero {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  text-align: center;
}

.category-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.category-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  justify-content: center;
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--rose-deep); }

.category-content { padding: 48px 0 80px; }

.results-count {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ═══════════ PRODUCT DETAIL ═══════════ */
.product-detail { padding: 48px 0 80px; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush-light);
  margin-bottom: 16px;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

.product-detail-info .product-category-label { margin-bottom: 12px; }

.product-detail-info .product-rating { margin-bottom: 20px; }

.product-detail-info .product-price {
  margin-bottom: 24px;
}

.product-detail-info .price-current { font-size: 28px; }

.product-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.product-detail-info .btn-shop {
  width: auto;
  display: inline-flex;
  padding: 16px 40px;
  font-size: 14px;
  border-radius: 48px;
}

/* ═══════════ STATIC PAGES ═══════════ */
.page-hero {
  padding: 48px 0;
  background: var(--blush-light);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
}

.page-content {
  padding: 48px 0 80px;
  max-width: 768px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 24px;
  margin: 40px 0 16px;
}

.page-content p, .page-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.page-content ul { padding-left: 20px; }
.page-content li { list-style: disc; margin-bottom: 8px; }

/* ═══════════ LOAD MORE ═══════════ */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-load-more {
  padding: 14px 40px;
  border: 2px solid var(--rose-deep);
  color: var(--rose-deep);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 48px;
  transition: all var(--transition);
}

.btn-load-more:hover {
  background: var(--rose-deep);
  color: var(--white);
}

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

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

.animate-in:nth-child(1) { animation-delay: 0.05s; }
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.15s; }
.animate-in:nth-child(4) { animation-delay: 0.2s; }
.animate-in:nth-child(5) { animation-delay: 0.25s; }
.animate-in:nth-child(6) { animation-delay: 0.3s; }
.animate-in:nth-child(7) { animation-delay: 0.35s; }
.animate-in:nth-child(8) { animation-delay: 0.4s; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-banner .container { flex-direction: column; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero { padding: 48px 0; }
  .hero p { font-size: 16px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { padding: 20px 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-info { padding: 14px; }
  .product-info h3 { font-size: 14px; }
  .price-current { font-size: 17px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .featured-products-row { flex-direction: column; }
  .products-toolbar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-info { padding: 12px; }
  .btn-shop { padding: 10px; font-size: 12px; }
  .hero h1 { font-size: 32px; }
}

/* ═══════════ SKELETON LOADING ═══════════ */
.skeleton {
  background: linear-gradient(90deg, var(--blush-light) 25%, var(--blush) 50%, var(--blush-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

/* ═══════════ BACK TO TOP ═══════════ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--rose-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(163,80,94,0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }
