/* =============================================
   ASSY SURPRISES — PAGE-SPECIFIC STYLES
   ============================================= */

/* ═══════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════ */

/* Floating bubbles in hero */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,9,126,0.2);
  animation: floatBubble linear infinite;
  pointer-events: none;
}

@keyframes floatBubble {
  from { transform: translateY(100vh) scale(0.5); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  to   { transform: translateY(-200px) scale(1.2); opacity: 0; }
}

/* Services overview section */
.home-services-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

/* Feature highlight cards */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(232,9,126,0.1);
  box-shadow: 0 4px 20px rgba(232,9,126,0.06);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-pale), #FFD6ED);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon { transform: scale(1.15) rotate(-8deg); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: #7A4060;
  line-height: 1.6;
}

/* Quick links grid */
.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quick-link-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: block;
}

.quick-link-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.quick-link-card.pink {
  background: linear-gradient(160deg, var(--dark), var(--dark-mid), var(--magenta));
}

.quick-link-card.gold {
  background: linear-gradient(160deg, #2A1500, #6B3A00, var(--gold));
}

.quick-link-card.dark {
  background: linear-gradient(160deg, #1A0010, #4A003A, #8B0050);
}

.quick-link-card .qlc-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.quick-link-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.quick-link-card .qlc-arrow {
  display: inline-block;
  margin-top: 1rem;
  color: var(--pink-light);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.quick-link-card:hover .qlc-arrow {
  transform: translateX(6px);
}

/* ═══════════════════════════════════════
   SWEET TREATS PAGE
═══════════════════════════════════════ */

.sweet-treats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 1.5rem;
}

.treat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232,9,126,0.08);
  border: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.treat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-light), var(--pink), var(--magenta), var(--pink-light));
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

.treat-card:hover {
  transform: translateY(-10px);
  border-color: var(--pink-light);
  box-shadow: 0 15px 45px rgba(232,9,126,0.2);
}

.treat-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-pale), #FFD6ED);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  box-shadow: 0 4px 15px rgba(232,9,126,0.15);
  transition: transform 0.3s;
}

.treat-card:hover .treat-image { transform: scale(1.1) rotate(-5deg); }

.treat-name {
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-mid);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

/* Party packs section */
.party-packs-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.party-pack-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(232,9,126,0.1);
  border: 2px solid rgba(232,9,126,0.15);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.party-pack-card:hover {
  transform: translateY(-10px);
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.party-pack-header {
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  padding: 1.5rem 2rem;
  color: var(--white);
}

.party-pack-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.party-pack-header .pack-price {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-display);
}

.party-pack-body {
  padding: 1.5rem 2rem;
}

.party-pack-desc {
  font-size: 0.88rem;
  color: #7A4060;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pack-colors {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}

.pack-color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
}

.pack-colors-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7A4060;
  margin-right: 0.5rem;
}

/* ═══════════════════════════════════════
   SURPRISES PAGE (Boys & Girls)
═══════════════════════════════════════ */

.gender-toggle {
  display: flex;
  background: rgba(232,9,126,0.08);
  border-radius: 50px;
  padding: 0.4rem;
  margin: 0 auto 3rem;
  width: fit-content;
  border: 1px solid rgba(232,9,126,0.2);
}

.gender-btn {
  padding: 0.7rem 2rem;
  border-radius: 40px;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  color: #7A4060;
}

.gender-btn.active-girls {
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232,9,126,0.4);
}

.gender-btn.active-boys {
  background: linear-gradient(135deg, #1565C0, #0D47A1);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(21,101,192,0.4);
}

.gender-panel {
  display: none;
}

.gender-panel.active { display: block; }

/* Boys packages — dark/bold theme */
.boys-grid .package-card.dark-theme {
  background: linear-gradient(160deg, #0A0A1A, #1A1A3D, #001A3D);
  border-color: #1565C0;
}

.boys-grid .package-card.dark-theme .package-price { color: #64B5F6; }
.boys-grid .package-card.dark-theme .package-items li::before { content: '★'; color: #64B5F6; }

.boys-featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

/* ═══════════════════════════════════════
   KIDDIES PAGE
═══════════════════════════════════════ */

.kiddies-tab-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.kiddies-tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  border: 2px solid rgba(232,9,126,0.25);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7A4060;
}

.kiddies-tab-btn.active,
.kiddies-tab-btn:hover {
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(232,9,126,0.35);
}

.kiddies-panel { display: none; }
.kiddies-panel.active { display: block; }

/* Snack hamper tiers */
.hamper-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.hamper-tier {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  border: 2px solid rgba(232,9,126,0.12);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamper-tier:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-pink);
  border-color: var(--pink);
}

.hamper-tier-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamper-tier-header.green  { background: linear-gradient(135deg, #1B5E20, #2E7D32); }
.hamper-tier-header.teal   { background: linear-gradient(135deg, #004D40, #00695C); }
.hamper-tier-header.blue   { background: linear-gradient(135deg, #0D47A1, #1565C0); }

.hamper-tier-count {
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
}

.hamper-tier-price {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 900;
  font-size: 1.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
}

.hamper-tier-body {
  padding: 1.5rem;
}

.hamper-items-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hamper-items-list li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hamper-items-list li::before { content: '🍬'; font-size: 0.75rem; }

/* Kids party packs */
.kids-packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.kids-pack-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.kids-pack-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.kids-pack-card.mini  { background: linear-gradient(160deg, #FCE4EC, #F8BBD9); border: 2px solid #F48FB1; }
.kids-pack-card.fun   { background: linear-gradient(160deg, #E8EAF6, #C5CAE9); border: 2px solid #9FA8DA; }
.kids-pack-card.dlx   { background: linear-gradient(160deg, #FFF8E1, #FFECB3); border: 2px solid #FFD54F; }
.kids-pack-card.vip   { background: linear-gradient(160deg, #F3E5F5, #E1BEE7); border: 2px solid #CE93D8; }
.kids-pack-card.vvip  { background: linear-gradient(160deg, #1A0010, #3D0022); border: 2px solid var(--pink); }
.kids-pack-card.vvip .kids-pack-title { color: var(--white); }
.kids-pack-card.vvip .kids-pack-items li { color: rgba(255,255,255,0.85); }
.kids-pack-card.vvip .kids-pack-items li::before { color: var(--gold-light); }

.kids-pack-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.kids-pack-price-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: var(--white);
  font-weight: 900;
  font-size: 1.4rem;
  padding: 0.3rem 0.9rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.kids-pack-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kids-pack-items li {
  padding: 0.3rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.kids-pack-items li:last-child { border-bottom: none; }

.kids-pack-items li::before {
  content: '★';
  color: var(--pink);
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════
   PICNIC PAGE
═══════════════════════════════════════ */

.picnic-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.picnic-price-card {
  background: linear-gradient(160deg, var(--dark), var(--dark-mid));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--pink);
  box-shadow: var(--shadow-pink);
}

.picnic-price-card h3 {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--pink-light);
  margin-bottom: 1.5rem;
}

.picnic-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(232,9,126,0.2);
  transition: all 0.2s;
}

.picnic-price-row:last-child { border-bottom: none; }

.picnic-price-row:hover { background: rgba(232,9,126,0.05); border-radius: 8px; padding-left: 0.5rem; }

.picnic-price-label {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 1rem;
}

.picnic-price-amt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}

.picnic-includes-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid rgba(232,9,126,0.15);
  box-shadow: 0 6px 30px rgba(232,9,126,0.08);
  margin-bottom: 2rem;
}

.picnic-includes-card h3 {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 1.5rem;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(232,9,126,0.15);
}

.includes-item:last-child { border-bottom: none; }

.includes-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-pale), #FFD6ED);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.includes-text h4 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.includes-text p {
  font-size: 0.82rem;
  color: #7A4060;
}

.picnic-addons {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CC);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  border: 2px solid var(--gold-light);
}

.picnic-addons h4 {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(212,160,23,0.3);
}

.addon-row:last-child { border-bottom: none; }

.addon-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-mid);
}

.addon-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}

/* ═══════════════════════════════════════
   BRACELETS PAGE
═══════════════════════════════════════ */

.bracelet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.bracelet-type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(232,9,126,0.12);
  box-shadow: 0 6px 30px rgba(232,9,126,0.06);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.bracelet-type-card:hover {
  transform: translateY(-10px);
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.bracelet-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: 1.2rem;
  animation: pulse 3s ease-in-out infinite;
}

.bracelet-type-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.bracelet-type-card p {
  font-size: 0.88rem;
  color: #7A4060;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Bracelet feature list */
.bracelet-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.bracelet-feature {
  background: linear-gradient(160deg, var(--pink-pale), #FFD6ED);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(232,9,126,0.2);
}

.bracelet-feature .bf-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.bracelet-feature h4 { font-weight: 800; font-size: 0.9rem; color: var(--dark-mid); margin-bottom: 0.3rem; }
.bracelet-feature p { font-size: 0.8rem; color: #9A5070; }

/* ═══════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════ */

.gallery-filter-bar {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  border: 2px solid rgba(232,9,126,0.2);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7A4060;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(232,9,126,0.3);
}

.masonry-grid {
  columns: 3;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--pink-pale);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.masonry-item:hover {
  transform: scale(1.02);
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.masonry-emoji {
  font-size: 6rem;
  opacity: 0.35;
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,0,16,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-label {
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .masonry-grid { columns: 2; }
  .picnic-layout { grid-template-columns: 1fr; }
  .quick-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .masonry-grid { columns: 1; }
  .quick-links { grid-template-columns: 1fr; }
  .hamper-items-list { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════
   BEAUTY PAGE
═══════════════════════════════════════ */

.beauty-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 40%, #2D1060 0%, #120530 40%, #060112 100%);
  padding: 6rem 2rem 4rem;
}

.beauty-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 75% 50%, rgba(160,80,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 20% 60%, rgba(232,9,126,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.beauty-hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.beauty-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: starTwinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); }
}

.beauty-moon {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.moon-body {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #FFF8E1, #FFD966 40%, #C4860A);
  box-shadow:
    0 0 60px rgba(255,215,100,0.35),
    0 0 120px rgba(255,215,100,0.12),
    inset -20px -20px 40px rgba(0,0,0,0.25);
  animation: moonFloat 8s ease-in-out infinite;
}

.moon-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,100,0.15) 0%, transparent 70%);
  animation: moonFloat 8s ease-in-out infinite reverse;
}

@keyframes moonFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}

.beauty-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.beauty-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin: 1rem 0 0.75rem;
  text-shadow: 0 4px 40px rgba(160,80,255,0.5);
  animation: fadeInUp 0.8s ease both;
}

.beauty-hero-title span {
  background: linear-gradient(135deg, #C9A8FF, #E8097E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.beauty-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.btn-beauty-cta {
  background: linear-gradient(135deg, #7B2FBE, #C2006A);
  color: #fff !important;
  box-shadow: 0 8px 30px rgba(123,47,190,0.45);
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease 0.2s both;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-beauty-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123,47,190,0.6);
}

.beauty-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(180,120,255,0.15);
}

.beauty-product-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.beauty-product-card.reverse { direction: rtl; }
.beauty-product-card.reverse > * { direction: ltr; }

.beauty-product-img-wrap { position: relative; }

.beauty-product-img-placeholder {
  border-radius: 28px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.beauty-product-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.beauty-product-img-wrap:hover .beauty-product-img-placeholder {
  transform: scale(1.03) rotate(-1deg);
}

.beauty-product-emoji {
  font-size: 7rem;
  opacity: 0.6;
  position: absolute;
}

.beauty-product-img-placeholder:has(img) .beauty-product-emoji { display: none; }

.luna-restore-bg {
  background: radial-gradient(ellipse at 40% 40%, #1A4A2E, #0A2018);
  border: 2px solid rgba(100,200,120,0.25);
}

.luna-stone-bg {
  background: radial-gradient(ellipse at 40% 40%, #2A2A4A, #101020);
  border: 2px solid rgba(150,150,200,0.25);
}

.amber-kiss-bg {
  background: radial-gradient(ellipse at 40% 40%, #4A2800, #1A0E00);
  border: 2px solid rgba(200,130,40,0.3);
}

.beauty-img-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  padding: 0.4rem 1rem;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(232,9,126,0.5);
  z-index: 2;
}

.beauty-img-badge.stone {
  background: linear-gradient(135deg, #7B7BCC, #4A4A9A);
  box-shadow: 0 4px 15px rgba(100,100,200,0.5);
}

.beauty-img-badge.amber {
  background: linear-gradient(135deg, #D4880A, #8B5200);
  box-shadow: 0 4px 15px rgba(180,120,20,0.5);
}

.beauty-product-meta { margin-bottom: 0.75rem; }

.beauty-cat-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.beauty-cat-tag.restore {
  background: rgba(100,200,120,0.15);
  color: #7DDFAA;
  border: 1px solid rgba(100,200,120,0.3);
}

.beauty-cat-tag.stone {
  background: rgba(150,150,210,0.15);
  color: #A8A8E8;
  border: 1px solid rgba(150,150,210,0.3);
}

.beauty-cat-tag.amber {
  background: rgba(200,130,40,0.15);
  color: #F5A040;
  border: 1px solid rgba(200,130,40,0.3);
}

.beauty-product-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.beauty-product-tagline {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: #C9A8FF;
  margin-bottom: 1rem;
}

.beauty-product-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.beauty-accordion {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(180,120,255,0.2);
  border-radius: 16px;
  overflow: hidden;
}

.beauty-acc-btn {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: none;
  border-bottom: 1px solid rgba(180,120,255,0.15);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.beauty-acc-btn:last-of-type { border-bottom: none; }

.beauty-acc-btn:hover,
.beauty-acc-btn.active {
  background: rgba(180,120,255,0.12);
  color: #C9A8FF;
}

.beauty-acc-btn .acc-arrow {
  transition: transform 0.3s;
  font-size: 0.9rem;
}

.beauty-acc-btn.active .acc-arrow { transform: rotate(180deg); }

.beauty-acc-body {
  display: none;
  padding: 1.25rem;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(180,120,255,0.1);
}

.beauty-acc-body.open { display: block; }

.beauty-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}

.beauty-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.beauty-steps li::before {
  content: counter(step);
  min-width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #7B2FBE, #C2006A);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.beauty-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beauty-benefits li {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px dashed rgba(180,120,255,0.15);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.5;
}

.beauty-benefits li:last-child { border-bottom: none; }

.beauty-benefits li::before {
  content: '✦';
  color: #C9A8FF;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.beauty-caution-text {
  font-size: 0.85rem;
  color: rgba(255,220,150,0.8);
  line-height: 1.7;
  padding: 0.25rem 0;
}

.beauty-order-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.beauty-price-tag {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #E8097E;
  line-height: 1;
}

.beauty-price-tag.stone { color: #A8A8E8; }
.beauty-price-tag.amber { color: #F5A040; }

.btn-beauty-order {
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(232,9,126,0.4);
  border-radius: 50px;
  font-weight: 800;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.btn-beauty-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232,9,126,0.55);
}

.btn-beauty-order.stone {
  background: linear-gradient(135deg, #7B7BCC, #4A4A9A);
  box-shadow: 0 6px 20px rgba(100,100,200,0.4);
}

.btn-beauty-order.stone:hover { box-shadow: 0 10px 30px rgba(100,100,200,0.55); }

.btn-beauty-order.amber {
  background: linear-gradient(135deg, #D4880A, #8B5200);
  box-shadow: 0 6px 20px rgba(180,120,20,0.4);
}

.btn-beauty-order.amber:hover { box-shadow: 0 10px 30px rgba(180,120,20,0.55); }

.beauty-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.beauty-quick-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(180,120,255,0.25);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.beauty-quick-card:hover {
  transform: translateY(-6px);
  border-color: #C9A8FF;
  box-shadow: 0 10px 30px rgba(180,120,255,0.2);
}

.beauty-quick-card.stone { border-color: rgba(150,150,210,0.25); }
.beauty-quick-card.stone:hover { border-color: #A8A8E8; box-shadow: 0 10px 30px rgba(120,120,200,0.2); }
.beauty-quick-card.amber { border-color: rgba(200,130,40,0.25); }
.beauty-quick-card.amber:hover { border-color: #F5A040; box-shadow: 0 10px 30px rgba(180,120,20,0.2); }

.bqc-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

.bqc-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.bqc-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #E8097E;
  margin-bottom: 1rem;
  line-height: 1;
}

.bqc-price.stone { color: #A8A8E8; }
.bqc-price.amber { color: #F5A040; }

.beauty-divider::before { background: linear-gradient(90deg, transparent, #7B2FBE) !important; }
.beauty-divider::after  { background: linear-gradient(90deg, #7B2FBE, transparent) !important; }
.beauty-divider span    { color: #C9A8FF !important; }

@media (max-width: 900px) {
  .beauty-product-card,
  .beauty-product-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
  .beauty-product-card.reverse > * { direction: ltr; }
  .beauty-moon { display: none; }
  .beauty-quick-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 600px) {
  .beauty-hero { padding: 5rem 1.5rem 3rem; }
  .beauty-product-card { margin-bottom: 3rem; padding-bottom: 3rem; }
  .beauty-quick-grid { grid-template-columns: 1fr; max-width: 280px; }
  .beauty-quick-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-align: left;
  }
  .bqc-emoji, .bqc-name, .bqc-price { margin-bottom: 0; }
}