/* =====================================================
   Trend Dres - Ana Stil Dosyası
   Renkler: Gül pembesi, gold, krem, zarif siyah
   ===================================================== */

:root {
  --rose-50:  #fff5f7;
  --rose-100: #ffe4ec;
  --rose-200: #ffc7d6;
  --rose-300: #ffa0b8;
  --rose-400: #ff7a9c;
  --rose-500: #ec407a;
  --rose-600: #c92868;

  --gold:       #d4a574;
  --gold-light: #e8c79b;
  --gold-dark:  #a67c4a;

  --cream:      #fdfaf5;
  --cream-dark: #f5ede0;

  --ink:     #1a1a1a;
  --ink-soft:#3a3a3a;
  --muted:   #8a8a8a;
  --line:    #ece5dc;

  --white: #ffffff;

  --shadow-sm: 0 2px 10px rgba(200, 140, 160, .10);
  --shadow-md: 0 10px 30px rgba(200, 140, 160, .15);
  --shadow-lg: 0 20px 60px rgba(200, 140, 160, .22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --t-fast: .2s;
  --t-med:  .4s;
  --t-slow: .8s;

  --ease: cubic-bezier(.25,.8,.3,1);

  --font-serif:  'Playfair Display', 'Georgia', serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans:   'Poppins', -apple-system, 'Segoe UI', sans-serif;
}

/* ============ RESET ============ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--rose-500); }
button { cursor: pointer; border: 0; background: transparent; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--font-serif); font-weight: 500; line-height: 1.25; color: var(--ink); }

::selection { background: var(--rose-300); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rose-300), var(--gold));
  border-radius: 8px;
}

/* ============ LAYOUT ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.site-main { min-height: 60vh; padding-top: 1px; }

/* ============ PAGE LOADER ============ */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-50) 50%, var(--cream) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; animation: loaderFadeIn 1s var(--ease); }
.loader-dress { width: 120px; height: 140px; margin: 0 auto 20px; }
.loader-brand { font-family: var(--font-script); font-size: 3.6rem; color: var(--ink); letter-spacing: 1px; }
.loader-sub   { font-family: var(--font-serif); font-style: italic; color: var(--gold-dark); font-size: .95rem; margin-top: -6px; }
@keyframes loaderFadeIn { from { opacity: 0; transform: translateY(20px); } }

/* ============ PARTICLES (Background flowers) ============ */
.particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  font-size: 18px;
  opacity: 0;
  animation: particleFloat linear infinite;
  filter: blur(.3px);
  color: var(--rose-300);
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) rotate(0deg) scale(.6); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .4; }
  100% { transform: translateY(-10vh) rotate(360deg) scale(1); opacity: 0; }
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: linear-gradient(90deg, var(--ink) 0%, #2d1f26 50%, var(--ink) 100%);
  color: var(--gold-light);
  font-size: .82rem;
  letter-spacing: .5px;
  overflow: hidden;
  height: 36px;
  line-height: 36px;
  position: relative;
  z-index: 100;
}
.announcement-slider {
  display: flex; gap: 60px;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding-left: 100%;
}
.announcement-slider span { white-space: nowrap; display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(253, 250, 245, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 165, 116, .15);
  transition: background var(--t-med), box-shadow var(--t-med);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-icon { width: 44px; height: 56px; display: flex; align-items: center; color: var(--gold-dark); }
.brand-icon svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-script); font-size: 2.2rem; }
.brand-tag  { font-family: var(--font-serif); font-style: italic; font-size: .72rem; color: var(--gold-dark); letter-spacing: 1px; }
.brand.big .brand-name { font-size: 2.8rem; }

/* Nav */
.main-nav .nav-list { display: flex; align-items: center; gap: 30px; list-style: none; }
.main-nav a {
  font-weight: 500; font-size: .92rem;
  letter-spacing: .5px;
  position: relative; padding: 8px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--rose-400), var(--gold));
  transition: all var(--t-med);
  transform: translateX(-50%);
}
.main-nav a:hover::after { width: 100%; }
.has-dropdown { position: relative; }
.has-dropdown > a i { font-size: .7rem; margin-left: 4px; transition: transform var(--t-fast); }
.has-dropdown:hover > a i { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 220px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: all var(--t-med);
  border: 1px solid var(--line);
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(8px);
}
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .9rem;
}
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--rose-50); color: var(--rose-600); }
.dropdown li a i { color: var(--gold); width: 18px; text-align: center; }

.nav-close, .nav-toggle { display: none; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  position: relative;
  transition: all var(--t-fast);
}
.icon-btn:hover { background: var(--rose-50); color: var(--rose-500); transform: translateY(-2px); }
.fav-btn .badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--rose-500); color: #fff;
  font-size: .65rem; font-weight: 600;
  min-width: 18px; height: 18px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  animation: badgePop .3s var(--ease);
}
@keyframes badgePop { from { transform: scale(0); } }

.user-menu { position: relative; }
.user-menu:hover .user-dropdown { opacity: 1; visibility: visible; transform: translateY(8px); }
.user-dropdown {
  position: absolute; top: 100%; right: 0;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 10px;
  min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all var(--t-med);
  border: 1px solid var(--line);
}
.user-greet { padding: 10px 14px; border-bottom: 1px solid var(--line); margin-bottom: 6px; font-size: .85rem; }
.user-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; font-size: .9rem; }
.user-dropdown a:hover { background: var(--rose-50); color: var(--rose-600); }
.user-dropdown i { color: var(--gold); width: 18px; }

/* Search Overlay */
.search-overlay {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  transform: translateY(-120%);
  transition: transform var(--t-med) var(--ease), opacity var(--t-med), visibility 0s linear var(--t-med);
  border-top: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.search-overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med), visibility 0s;
}

.search-form {
  max-width: 800px; margin: 0 auto;
  display: flex; gap: 10px; align-items: center;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
}
.search-form input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-family: var(--font-serif); font-size: 1.5rem; padding: 8px;
}
.search-form input::placeholder { color: var(--muted); font-style: italic; }
.search-form button { font-size: 1.2rem; color: var(--gold-dark); padding: 6px 14px; }
.search-form .search-close { color: var(--rose-500); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans); font-weight: 600; font-size: .88rem;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-500) 0%, var(--rose-600) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(236, 64, 122, .3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(236, 64, 122, .45);
  color: #fff;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .6s;
}
.btn-primary:hover::before { left: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 165, 116, .35);
}
.btn-gold:hover { transform: translateY(-3px); color: #fff; }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1ebe5a; color: #fff; transform: translateY(-3px); }

.btn-sm { padding: 10px 20px; font-size: .78rem; }
.btn-lg { padding: 18px 40px; font-size: .95rem; }

/* ============ FLASH MESSAGES ============ */
.flash-container {
  position: fixed; top: 100px; right: 24px; z-index: 1000;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 380px;
}
.flash {
  background: #fff;
  border-left: 4px solid;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem;
  animation: flashIn .5s var(--ease);
}
.flash-success { border-color: #25D366; color: #1a7a3f; }
.flash-error   { border-color: var(--rose-500); color: var(--rose-600); }
@keyframes flashIn { from { transform: translateX(100%); opacity: 0; } }

/* ============ SECTION COMMON ============ */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-sub {
  font-family: var(--font-script); font-size: 2rem;
  color: var(--gold-dark); line-height: 1;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 500; margin-top: 4px;
  position: relative; display: inline-block;
}
.section-title::before, .section-title::after {
  content: ''; display: inline-block; vertical-align: middle;
  width: 50px; height: 1px;
  background: var(--gold); margin: 0 20px;
}
.section-desc {
  max-width: 640px; margin: 18px auto 0;
  color: var(--muted); font-size: .95rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-50) 50%, #fff 100%);
}
.hero-bg-decor {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,192,212,.35), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(212,165,116,.25), transparent 45%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  flex: 1; padding: 40px 0;
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .accent { font-style: italic; color: var(--rose-500); }
.hero-desc {
  font-size: 1.05rem; color: var(--ink-soft);
  max-width: 520px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
  padding-top: 28px; border-top: 1px dashed var(--line);
}
.hero-stat strong {
  display: block; font-family: var(--font-serif);
  font-size: 2.2rem; color: var(--rose-500);
}
.hero-stat span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual {
  position: relative; flex: 1;
  height: 560px;
  display: flex; align-items: center; justify-content: center;
}
.hero-shape {
  position: absolute; inset: 10% 0;
  background: linear-gradient(135deg, rgba(255,192,212,.4), rgba(212,165,116,.25));
  border-radius: 50% 40% 50% 50%;
  animation: blob 12s ease-in-out infinite;
}
@keyframes blob {
  0%, 100% { border-radius: 50% 40% 50% 50%; transform: scale(1); }
  50%      { border-radius: 40% 60% 40% 60%; transform: scale(1.05); }
}
.hero-dress-svg {
  position: relative; z-index: 2;
  max-height: 500px;
  filter: drop-shadow(0 20px 40px rgba(200,140,160,.35));
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-20px); }
}
.sparkle {
  position: absolute;
  font-size: 24px;
  color: var(--gold);
  animation: sparkle 3s ease-in-out infinite;
}
.sparkle:nth-child(1){ top: 15%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2){ top: 35%; right: 18%; animation-delay: .8s; }
.sparkle:nth-child(3){ bottom: 25%; left: 12%; animation-delay: 1.6s; }
.sparkle:nth-child(4){ bottom: 12%; right: 22%; animation-delay: 2.2s; font-size: 18px; }
@keyframes sparkle {
  0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
  50%      { transform: scale(1) rotate(180deg); opacity: 1; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  font-size: .75rem; color: var(--gold-dark);
  letter-spacing: 3px; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator::after {
  content: ''; display: block; width: 1px; height: 36px;
  background: var(--gold-dark); margin: 10px auto 0;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .8; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============ CATEGORIES ============ */
.categories-section { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.category-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.category-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
  border: 1px solid var(--line);
  cursor: pointer;
}
.category-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--rose-100) 0%, var(--cream-dark) 100%);
  opacity: 0; transition: opacity var(--t-med);
  z-index: 0;
}
.category-card:hover::before { opacity: 1; }
.category-card:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.category-card > * { position: relative; z-index: 1; }
.category-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--rose-100), var(--cream-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold-dark);
  transition: all var(--t-med);
}
.category-card:hover .category-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, var(--gold), var(--rose-400));
  color: #fff;
}
.category-name { font-size: 1.3rem; margin-bottom: 6px; }
.category-count { font-size: .8rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.category-arrow {
  margin-top: 16px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--rose-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--rose-500);
  transition: all var(--t-med);
}
.category-card:hover .category-arrow {
  background: var(--rose-500); color: #fff;
  transform: translateX(6px);
}

/* ============ PRODUCT CARD ============ */
.product-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all var(--t-med) var(--ease);
  border: 1px solid var(--line);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.product-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.08); }

.product-media .secondary-img {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s;
}
.product-card:hover .secondary-img { opacity: 1; }

.product-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.badge-tag {
  padding: 4px 12px; border-radius: 20px;
  font-size: .7rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
  background: #fff; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.badge-tag.new  { background: var(--rose-500); color: #fff; }
.badge-tag.sale { background: var(--gold); color: #fff; }
.badge-tag.hot  { background: var(--ink); color: #fff; }

.product-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px; z-index: 2;
  opacity: 0; transform: translateX(12px);
  transition: all var(--t-med);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.p-action-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
}
.p-action-btn:hover { background: var(--rose-500); color: #fff; transform: scale(1.1); }
.p-action-btn.active { background: var(--rose-500); color: #fff; }

.product-quick-wa {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: #25D366; color: #fff;
  padding: 10px; border-radius: 10px;
  text-align: center; font-size: .8rem; font-weight: 600;
  transform: translateY(20px); opacity: 0;
  transition: all var(--t-med);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.product-card:hover .product-quick-wa { transform: translateY(0); opacity: 1; }
.product-quick-wa:hover { background: #1ebe5a; color: #fff; }

.product-body { padding: 18px; }
.product-category { font-size: .72rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.product-name {
  font-family: var(--font-serif); font-size: 1.1rem;
  margin-bottom: 10px; line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-price-row {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding-top: 10px; border-top: 1px dashed var(--line);
}
.price-rental { color: var(--rose-500); font-weight: 600; font-size: 1rem; }
.price-sale   { color: var(--ink); font-weight: 600; }
.price-label  { font-size: .7rem; color: var(--muted); }
.price-old    { color: var(--muted); text-decoration: line-through; font-size: .85rem; }

.product-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--muted);
}
.product-meta .views { display: flex; align-items: center; gap: 4px; }
.product-meta .rating i { color: var(--gold); font-size: .75rem; }

/* ============ FEATURED STRIP ============ */
.featured-section { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }

/* ============ PROMO BANNER ============ */
.promo-banner {
  background: linear-gradient(135deg, #2d1f26 0%, var(--ink) 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(236,64,122,.2), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(212,165,116,.25), transparent 50%);
}
.promo-content { position: relative; z-index: 1; }
.promo-banner .section-title { color: #fff; }
.promo-banner .section-title::before, .promo-banner .section-title::after { background: var(--gold); }
.promo-banner .section-sub { color: var(--gold-light); }

/* ============ WHY US ============ */
.why-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.why-item {
  text-align: center; padding: 30px 20px;
  position: relative;
}
.why-icon {
  width: 88px; height: 88px; margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-100), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--rose-500);
  position: relative;
  transition: all var(--t-med);
}
.why-icon::before {
  content: ''; position: absolute; inset: -6px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}
.why-item:hover .why-icon { transform: scale(1.1); }
.why-item h4 { font-size: 1.2rem; margin-bottom: 10px; }
.why-item p { color: var(--muted); font-size: .92rem; }
@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: linear-gradient(135deg, var(--rose-50) 0%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  height: 100%;
}
.testimonial-card .quote-mark {
  position: absolute; top: -10px; left: 24px;
  font-family: var(--font-serif);
  font-size: 5rem; color: var(--rose-200); line-height: 1;
}
.testimonial-card p { font-style: italic; color: var(--ink-soft); margin: 20px 0; }
.testimonial-card .stars i { color: var(--gold); margin: 0 1px; }
.testimonial-card .author { margin-top: 14px; font-weight: 600; color: var(--rose-600); }

/* ============ INSTAGRAM ============ */
.instagram-section { text-align: center; }
.instagram-grid {
  display: grid; gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}
.insta-item {
  aspect-ratio: 1; border-radius: var(--radius-sm);
  overflow: hidden; position: relative;
  cursor: pointer;
}
.insta-item::after {
  content: '\f16d'; font-family: 'Font Awesome 6 Brands';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(236,64,122,.8), rgba(212,165,116,.8));
  color: #fff; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t-med);
}
.insta-item:hover::after { opacity: 1; }
.insta-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic;
  background: linear-gradient(135deg, var(--rose-200), var(--gold-light));
  color: #fff;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='.5' opacity='.1'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .3;
}
.newsletter-inner { position: relative; }
.newsletter h2 { color: #fff; font-size: 2.4rem; }
.newsletter p { opacity: .95; margin: 16px 0 30px; }
.newsletter form {
  display: flex; gap: 10px; max-width: 500px; margin: 0 auto;
  background: #fff; padding: 8px; border-radius: 50px;
  box-shadow: var(--shadow-lg);
}
.newsletter input {
  flex: 1; border: 0; outline: 0; padding: 12px 20px;
  background: transparent; color: var(--ink);
}
.newsletter button {
  background: var(--ink); color: #fff;
  padding: 12px 30px; border-radius: 50px;
  font-weight: 600;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink); color: #cfc7bb;
  padding: 80px 0 30px;
  position: relative; margin-top: 80px;
}
.footer-wave {
  position: absolute; top: -1px; left: 0; right: 0;
  color: var(--cream);
  line-height: 0;
}
.footer-wave svg { width: 100%; height: 80px; display: block; }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  padding-top: 40px;
}
.footer-col h4 {
  color: #fff; font-size: 1.1rem; margin-bottom: 20px;
  position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: .9rem; }
.footer-col ul li a { transition: all var(--t-fast); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand .brand-tag { color: var(--gold-light); }
.footer-brand .slogan {
  font-family: var(--font-serif); font-style: italic;
  color: var(--gold-light); margin-bottom: 12px;
}
.footer-brand .about-short { font-size: .88rem; line-height: 1.7; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; margin-bottom: 14px;
}
.contact-list i { color: var(--gold); margin-top: 4px; }
.social-icons { display: flex; gap: 10px; margin-top: 14px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: all var(--t-med);
}
.social-icons a:hover {
  background: linear-gradient(135deg, var(--rose-500), var(--gold));
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 50px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; flex-wrap: wrap; gap: 10px;
}
.made-with { color: var(--gold-light); }

/* ============ WHATSAPP FLOATING ============ */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 60px; height: 60px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  transition: all var(--t-med);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); color: #fff; }
.whatsapp-float .wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.8); opacity: 0; }
}
.whatsapp-float .wa-tip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: #fff; color: var(--ink);
  padding: 8px 14px; border-radius: 20px;
  font-size: .82rem; font-weight: 500; white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-med);
}
.whatsapp-float:hover .wa-tip { opacity: 1; }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 800;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all var(--t-med);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--rose-500); color: #fff; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 20px 0;
  font-size: .85rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--rose-500); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 80px 0 50px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-50) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero .section-sub { font-size: 1.6rem; }
.page-hero .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 20 L45 35 L60 35 L48 45 L53 60 L40 50 L27 60 L32 45 L20 35 L35 35 Z' fill='%23d4a574' opacity='.04'/%3E%3C/svg%3E");
}

/* ============ SHOP LAYOUT ============ */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding: 40px 0 80px; }
.shop-sidebar {
  background: #fff; padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  height: fit-content;
  position: sticky; top: 120px;
}
.filter-group { margin-bottom: 26px; }
.filter-group h5 { font-size: .95rem; margin-bottom: 12px; }
.filter-group label {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; font-size: .88rem; cursor: pointer;
  transition: color var(--t-fast);
}
.filter-group label:hover { color: var(--rose-500); }
.filter-group input[type="checkbox"], .filter-group input[type="radio"] { accent-color: var(--rose-500); }
.filter-count { margin-left: auto; color: var(--muted); font-size: .78rem; }

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  margin-bottom: 26px;
  padding: 14px 20px;
  background: #fff; border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.toolbar-info { font-size: .88rem; color: var(--muted); }
.toolbar-info strong { color: var(--ink); }
.sort-select {
  padding: 8px 14px; border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: .85rem;
}

.pagination {
  display: flex; justify-content: center; gap: 6px; margin-top: 40px;
}
.pagination a, .pagination span {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem; background: #fff;
  border: 1px solid var(--line);
  transition: all var(--t-fast);
}
.pagination a:hover { background: var(--rose-50); border-color: var(--rose-300); }
.pagination .active {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  color: #fff; border-color: transparent;
}

/* ============ PRODUCT DETAIL ============ */
.pd-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; padding: 30px 0 80px; }
.pd-gallery-main {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  margin-bottom: 14px;
}
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.pd-gallery-main:hover img { transform: scale(1.05); }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pd-thumbs .thumb {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--t-fast);
}
.pd-thumbs .thumb.active { border-color: var(--rose-500); }
.pd-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-info .pd-category {
  font-family: var(--font-script); font-size: 1.8rem; color: var(--gold-dark);
}
.pd-info .pd-title {
  font-family: var(--font-serif); font-size: 2.4rem; margin: 6px 0 16px;
}
.pd-rating-row {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
  flex-wrap: wrap; font-size: .88rem;
}
.pd-rating-row .stars i { color: var(--gold); margin-right: 2px; }
.pd-rating-row .views { color: var(--muted); display: flex; align-items: center; gap: 5px; }
.pd-rating-row .views i { color: var(--rose-400); }

.pd-prices { padding: 22px 0; border-bottom: 1px solid var(--line); }
.pd-price-block { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.pd-price-block .label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted); min-width: 80px;
}
.pd-price-block .price { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; }
.pd-price-block .price.rental { color: var(--rose-500); }
.pd-price-block .price.sale { color: var(--ink); }
.pd-price-block .old { text-decoration: line-through; color: var(--muted); font-size: 1.1rem; }

.pd-desc { padding: 20px 0; color: var(--ink-soft); line-height: 1.8; }
.pd-meta { padding: 14px 0 22px; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
.pd-meta-row { display: flex; gap: 14px; padding: 4px 0; font-size: .9rem; }
.pd-meta-row .k { color: var(--muted); min-width: 110px; }
.pd-meta-row .v { color: var(--ink); font-weight: 500; }

.pd-sizes { padding: 22px 0; border-bottom: 1px solid var(--line); }
.pd-sizes-label { font-size: .9rem; margin-bottom: 10px; font-weight: 500; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-opt {
  min-width: 48px; height: 44px; padding: 0 12px;
  border: 1px solid var(--line); background: #fff;
  border-radius: 8px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t-fast);
}
.size-opt:hover { border-color: var(--rose-500); }
.size-opt.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.pd-actions { display: flex; gap: 10px; padding: 24px 0; flex-wrap: wrap; }
.pd-actions .btn { flex: 1; min-width: 200px; }
.pd-fav-btn {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--line); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--ink);
  transition: all var(--t-fast);
}
.pd-fav-btn:hover, .pd-fav-btn.active { background: var(--rose-500); color: #fff; border-color: var(--rose-500); }

.pd-quick-info {
  margin-top: 20px; padding: 20px;
  background: var(--cream); border-radius: var(--radius-md);
  border: 1px dashed var(--gold);
}
.pd-quick-info p { display: flex; gap: 10px; margin-bottom: 8px; font-size: .88rem; }
.pd-quick-info p:last-child { margin-bottom: 0; }
.pd-quick-info i { color: var(--gold-dark); }

/* Tabs */
.pd-tabs { padding: 40px 0; }
.tab-nav {
  display: flex; gap: 30px; border-bottom: 2px solid var(--line); margin-bottom: 30px;
}
.tab-nav button {
  padding: 14px 0; font-weight: 600; font-size: .9rem;
  color: var(--muted); letter-spacing: 1px; text-transform: uppercase;
  position: relative;
}
.tab-nav button.active { color: var(--ink); }
.tab-nav button.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--rose-500);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } }

/* Comments */
.comment-list { display: flex; flex-direction: column; gap: 20px; }
.comment-item {
  background: #fff; padding: 20px; border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.comment-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 10px; flex-wrap: wrap; gap: 10px;
}
.comment-author { font-weight: 600; }
.comment-date { font-size: .78rem; color: var(--muted); }
.comment-rating i { color: var(--gold); font-size: .85rem; }
.comment-body { color: var(--ink-soft); line-height: 1.7; }

.comment-form {
  background: var(--cream); padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff;
  transition: border var(--t-fast);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 0; border-color: var(--rose-500);
}
.rating-input { display: flex; gap: 4px; direction: rtl; justify-content: flex-end; }
.rating-input input { display: none; }
.rating-input label { font-size: 1.6rem; color: var(--line); cursor: pointer; transition: color var(--t-fast); }
.rating-input label:hover, .rating-input label:hover ~ label,
.rating-input input:checked ~ label { color: var(--gold); }

/* ============ AUTH PAGES ============ */
.auth-page {
  min-height: calc(100vh - 100px);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-50) 100%);
}
.auth-card {
  background: #fff; width: 100%; max-width: 460px;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.auth-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 5px; background: linear-gradient(90deg, var(--rose-500), var(--gold), var(--rose-500));
}
.auth-head { text-align: center; margin-bottom: 30px; }
.auth-head .section-sub { font-size: 1.6rem; }
.auth-head h2 { font-size: 1.8rem; }
.auth-card .form-group { margin-bottom: 14px; }
.auth-card .btn { width: 100%; }
.auth-footer { text-align: center; margin-top: 20px; font-size: .88rem; color: var(--muted); }
.auth-footer a { color: var(--rose-500); font-weight: 600; }

/* ============ EMPTY STATE ============ */
.empty-state {
  text-align: center; padding: 80px 20px;
}
.empty-state i { font-size: 4rem; color: var(--rose-200); margin-bottom: 20px; }
.empty-state h3 { font-size: 1.6rem; margin-bottom: 10px; }
.empty-state p { color: var(--muted); max-width: 400px; margin: 0 auto 20px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .pd-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .header-inner { padding: 12px 16px; }
  .main-nav {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 300px; max-width: 85vw;
    background: #fff; padding: 80px 24px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,.1);
    transition: right var(--t-med) var(--ease);
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav .nav-list { flex-direction: column; gap: 20px; align-items: flex-start; }
  .nav-close { display: flex; position: absolute; top: 20px; right: 20px; font-size: 1.4rem; color: var(--rose-500); }
  .nav-toggle { display: inline-flex; }
  .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; padding: 10px 0 0 16px;
    background: transparent; border: 0; min-width: unset;
  }

  .hero { min-height: auto; padding: 60px 0 30px; }
  .hero-inner { flex-direction: column; }
  .hero-visual { height: 320px; margin-top: 30px; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.6rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .tab-nav { gap: 16px; overflow-x: auto; }
  .tab-nav button { white-space: nowrap; font-size: .8rem; }

  .pd-info .pd-title { font-size: 1.8rem; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-float .wa-tip { display: none; }
  .back-to-top { bottom: 82px; right: 20px; }

  .flash-container { left: 16px; right: 16px; top: 80px; max-width: none; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 1.8rem; }
  .brand-tag { font-size: .65rem; }
  .icon-btn { width: 38px; height: 38px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-name { font-size: .92rem; }
  .announcement-bar { font-size: .72rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .category-card { padding: 28px 14px; }
  .category-icon { width: 60px; height: 60px; font-size: 1.4rem; }
}
