:root {
  --rose-pink: #E8A0BF;
  --rose-dark: #D4769E;
  --rose-light: #F5D5E4;
  --cream: #FFF8F0;
  --cream-dark: #F7EDE0;
  --lavender: #D4C5F9;
  --lavender-dark: #B8A4E8;
  --lavender-light: #EBE3FC;
  --sage: #9CAF88;
  --sage-dark: #7D9470;
  --sage-light: #C5D4B8;
  --gold: #D4A853;
  --gold-dark: #C49A3C;
  --gold-light: #E8C97A;
  --dark: #2D2B3A;
  --dark-soft: #4A4857;
  --dark-light: #6B6978;
  --white: #FFFFFF;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(212,168,83,0.3);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  margin-bottom: 12px;
}
.section-tag::after {
  content: '';
  display: inline-block;
  width: 40px; height: 2px;
  background: var(--gold);
  margin-left: 12px;
  vertical-align: middle;
}
.section-tag.no-line::after { display: none; }
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--dark-soft);
  max-width: 540px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-pink), var(--rose-dark));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(232, 160, 191, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232, 160, 191, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--rose-dark);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,168,83,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-sm { padding: 10px 24px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(232,160,191,0.3); }
  50% { box-shadow: 0 0 40px rgba(232,160,191,0.6); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TOP BAR */
.top-bar {
  background: var(--dark);
  color: var(--cream);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 300;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar i { color: var(--gold); margin-right: 6px; }
.top-bar-socials { display: flex; gap: 14px; }
.top-bar-socials a { color: var(--cream); font-size: 14px; }
.top-bar-socials a:hover { color: var(--gold); }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--rose-pink), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.logo span { color: var(--rose-dark); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--rose-pink), var(--gold));
  transition: var(--transition);
}
.nav-links a:hover { color: var(--rose-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--rose-dark); }
.nav-links a.active::after { width: 100%; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-actions a {
  font-size: 18px;
  color: var(--dark-soft);
  position: relative;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.header-actions a:hover {
  background: var(--rose-pink);
  color: var(--white);
}
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  width: 20px; height: 20px;
  background: var(--rose-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFF8F0 0%, #F7EDE0 30%, #F0E6D8 60%, #EBDCC8 100%);
  overflow: hidden;
}
.hero-sm { min-height: 60vh; }
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.hero-bg-shape:nth-child(1) {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rose-pink), transparent);
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-bg-shape:nth-child(2) {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: -100px; left: -100px;
  animation: float 10s ease-in-out infinite 2s;
}
.hero-bg-shape:nth-child(3) {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--lavender), transparent);
  top: 30%; left: 10%;
  animation: float 12s ease-in-out infinite 1s;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content-right { order: 2; }
.hero-content { padding-right: 20px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
.hero-badge i { color: var(--gold); }
.hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}
.hero h1 span {
  background: linear-gradient(135deg, var(--rose-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 17px;
  color: var(--dark-soft);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.9;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-main {
  width: 100%;
  max-width: 520px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 3/4;
  animation: float 7s ease-in-out infinite;
}
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
}
.hero-floating-card i { font-size: 22px; position: relative; z-index: 1; }
.hero-floating-card span { position: relative; z-index: 1; }
.hero-floating-card::before {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}
.hero-floating-card:nth-child(2) {
  top: 10%; right: -5%;
  color: var(--rose-dark);
  animation: float 6s ease-in-out infinite 1s;
}
.hero-floating-card:nth-child(2)::before {
  background: url('https://images.unsplash.com/photo-1591886960571-74d43a9d4166?w=100&q=80') center/cover no-repeat;
  bottom: -10px; right: -10px; width: 50px; height: 50px;
}
.hero-floating-card:nth-child(3) {
  bottom: 15%; left: -5%;
  color: var(--sage);
  animation: float 7s ease-in-out infinite 0.5s;
}
.hero-floating-card:nth-child(3)::before {
  background: url('https://images.unsplash.com/photo-1566378246598-5b11a0d486cc?w=100&q=80') center/cover no-repeat;
  top: -8px; left: -8px; width: 45px; height: 45px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.hero-stat {
  position: relative;
  padding: 8px 16px;
}
.hero-stat::after {
  content: '';
  position: absolute;
  bottom: -4px; right: -4px;
  width: 30px; height: 30px;
  background: url('https://images.unsplash.com/photo-1545235617-9465d2a55698?w=60&q=80') center/cover no-repeat;
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.hero-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--rose-dark);
}
.hero-stat p {
  font-size: 13px;
  color: var(--dark-soft);
  margin: 0;
}

/* PAGE BANNER */
.page-banner {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #F5E6F0, #FFF8F0, #F0E6F5);
}
.page-banner h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
}
.page-banner p {
  font-size: 16px;
  color: var(--dark-soft);
  max-width: 500px;
  margin: 12px auto 0;
}
.page-banner .breadcrumb {
  font-size: 14px;
  color: var(--dark-light);
  margin-bottom: 16px;
}
.page-banner .breadcrumb a { color: var(--rose-dark); }
.page-banner .breadcrumb a:hover { color: var(--gold); }
.page-banner .breadcrumb span { color: var(--gold); }

/* PRODUCT CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--rose-dark);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.product-badge.gold { background: var(--gold); }
.product-badge.sage { background: var(--sage); }
.product-badge.purple { background: var(--lavender-dark); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.1); }
.product-actions {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.product-actions button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--dark);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-actions button:hover {
  background: var(--rose-pink);
  color: var(--white);
}
.product-actions button.wishlist-active { background: var(--rose-dark); color: var(--white); }
.product-info {
  padding: 20px;
}
.product-info .rating {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-info .rating span { color: var(--dark-light); margin-left: 4px; }
.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-info .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--rose-dark);
}
.product-info .price del {
  font-size: 14px;
  color: #bbb;
  font-weight: 400;
  margin-left: 8px;
}

/* CATEGORY CARDS */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow);
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.category-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: var(--transition);
}
.category-card:hover img { transform: scale(1.08); }
.category-info {
  padding: 20px;
  text-align: center;
}
.category-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 4px;
}
.category-info p {
  font-size: 13px;
  color: var(--dark-soft);
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,43,58,0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover .category-overlay { opacity: 1; }

/* OFFER CARDS */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.offer-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 48px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}
.offer-card:hover { transform: translateY(-6px); }
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,43,58,0.7), rgba(45,43,58,0.2));
}
.offer-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 60%;
}
.offer-content .offer-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.offer-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.offer-content p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  border: 1px solid rgba(212, 168, 83, 0.1);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 15px; }
.testimonial-card p {
  font-size: 15px;
  color: var(--dark-soft);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--dark-soft);
}

/* INSTAGRAM GALLERY */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.instagram-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,43,58,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay i { color: var(--white); font-size: 32px; }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover img { transform: scale(1.05); }
.blog-body {
  padding: 28px;
}
.blog-body .blog-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rose-dark);
  margin-bottom: 8px;
}
.blog-body .blog-date {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.blog-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
}
.blog-body p {
  font-size: 14px;
  color: var(--dark-soft);
  margin-bottom: 16px;
}
.blog-body a {
  color: var(--rose-dark);
  font-weight: 500;
  font-size: 14px;
}
.blog-body a:hover { color: var(--gold); }

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
}
.faq-grid::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 160px; height: 160px;
  background: url('https://images.unsplash.com/photo-1605647540924-852290f6b0d5?w=300&q=80') center/cover no-repeat;
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.faq-grid::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 120px; height: 120px;
  background: url('https://images.unsplash.com/photo-1545235617-9465d2a55698?w=200&q=80') center/cover no-repeat;
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  transition: var(--transition);
}
.faq-question i {
  font-size: 14px;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-top: 16px;
  font-size: 15px;
  color: var(--dark-soft);
  line-height: 1.8;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, var(--rose-pink), var(--lavender));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1490750967868-88aa4f44baee?w=1200&q=80') center/cover no-repeat;
  opacity: 0.08;
}
.newsletter::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-pink), var(--lavender));
  opacity: 0.85;
}
.newsletter-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.newsletter-content h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}
.newsletter-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  outline: none;
  background: rgba(255,255,255,0.9);
}
.newsletter-form button {
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  background: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: #1a1a2e; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.contact-info-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.contact-info-item .icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pink), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-info-item p { font-size: 14px; color: var(--dark-soft); }
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  background: var(--cream);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--rose-pink);
  box-shadow: 0 0 0 4px rgba(232,160,191,0.1);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-top: 16px;
}
.contact-form button { margin-top: 16px; }

/* FOOTER */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-about .logo { color: var(--white); margin-bottom: 16px; }
.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--rose-pink);
  border-color: var(--rose-pink);
  color: var(--white);
}
.footer h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pink), var(--gold));
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(232,160,191,0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* QUICK VIEW MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  animation: fadeUp 0.4s ease;
  position: relative;
}
.modal-content img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
}
.modal-body {
  padding: 36px;
}
.modal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
}
.modal-body .price {
  font-size: 24px;
  font-weight: 600;
  color: var(--rose-dark);
  margin-bottom: 16px;
}
.modal-body p {
  font-size: 14px;
  color: var(--dark-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
  z-index: 10;
}
.modal-close:hover { background: var(--rose-pink); color: var(--white); }

/* PAGE HEADER / BANNER IMAGE HERO */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,43,58,0.6), rgba(45,43,58,0.3));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 20px;
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero-content p {
  font-size: 17px;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* FILTER / SORT BAR */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  margin-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--dark-soft);
}
.filter-tab:hover { border-color: var(--rose-pink); color: var(--rose-dark); }
.filter-tab.active {
  background: var(--rose-pink);
  border-color: var(--rose-pink);
  color: var(--white);
}
.sort-select {
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  background: var(--white);
  outline: none;
  cursor: pointer;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-soft);
  transition: var(--transition-fast);
  background: var(--white);
}
.pagination a:hover { border-color: var(--rose-pink); color: var(--rose-dark); }
.pagination a.active {
  background: var(--rose-pink);
  border-color: var(--rose-pink);
  color: var(--white);
}

/* FEATURES STRIP */
.features-strip {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.features-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1561181286-d3fee7d55364?w=1400&q=80') center/cover no-repeat;
  opacity: 0.03;
  pointer-events: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  font-size: 22px;
  flex-shrink: 0;
}
.feature-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-text p {
  font-size: 13px;
  color: var(--dark-light);
}

/* CART / WISHLIST TABLE */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cart-table th {
  background: var(--cream-dark);
  padding: 16px 20px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.cart-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  vertical-align: middle;
}
.cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-product img {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.cart-product h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  overflow: hidden;
}
.qty-control button {
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark-soft);
  transition: var(--transition-fast);
}
.qty-control button:hover { background: var(--rose-light); color: var(--rose-dark); }
.qty-control input {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1.5px solid rgba(0,0,0,0.1);
  border-right: 1.5px solid rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 6px 0;
  outline: none;
}
.cart-remove {
  color: #e74c3c;
  cursor: pointer;
  transition: var(--transition-fast);
}
.cart-remove:hover { transform: scale(1.2); }
.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.cart-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
}
.cart-summary-row.total {
  font-weight: 700;
  font-size: 20px;
  color: var(--rose-dark);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { padding-right: 0; }
  .hero-content-right { order: 0; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-main { max-width: 400px; }
  .hero-floating-card:nth-child(2) { right: 5%; }
  .hero-floating-card:nth-child(3) { left: 5%; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 1001;
  }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .offers-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .modal-content { grid-template-columns: 1fr; }
  .modal-content img { max-height: 300px; border-radius: var(--radius) var(--radius) 0 0; min-height: 250px; }
  .newsletter-form { flex-direction: column; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .offer-content { max-width: 100%; }
  .offer-card { padding: 32px; min-height: 300px; }
  .top-bar { font-size: 12px; }
  .top-bar .container { justify-content: center; }
  .top-bar-socials { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { min-height: 40vh; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .cart-table { font-size: 13px; }
  .cart-table th, .cart-table td { padding: 12px; }
  .cart-product img { width: 60px; height: 60px; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .cart-product { flex-direction: column; align-items: flex-start; }
}

/* BREADCRUMB */
.breadcrumb-wrap {
  padding: 16px 0;
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.breadcrumb-wrap .breadcrumb {
  font-size: 13px;
  color: var(--dark-light);
}
.breadcrumb-wrap .breadcrumb a { color: var(--rose-dark); }
.breadcrumb-wrap .breadcrumb a:hover { color: var(--gold); }
.breadcrumb-wrap .breadcrumb span { color: var(--gold); }

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state i {
  font-size: 64px;
  color: var(--rose-light);
  margin-bottom: 20px;
}
.empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 8px;
}
.empty-state p {
  color: var(--dark-soft);
  margin-bottom: 24px;
}

/* PRODUCT DETAIL ROW */
.product-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-detail-images img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
}
.product-detail-info .rating { font-size: 16px; color: var(--gold); margin-bottom: 12px; }
.product-detail-info h1 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 12px;
}
.product-detail-info .price-lg {
  font-size: 28px;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 20px;
}
.product-detail-info .price-lg del {
  font-size: 20px;
  color: #bbb;
  font-weight: 400;
  margin-left: 12px;
}
.product-detail-info .desc {
  font-size: 15px;
  color: var(--dark-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.product-meta span {
  font-size: 14px;
  color: var(--dark-soft);
}
.product-meta span strong { color: var(--dark); font-weight: 600; }

/* TEAM / ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}
.about-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.about-content p {
  color: var(--dark-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* COUNTER / STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-box {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: url('https://images.unsplash.com/photo-1591886960571-74d43a9d4166?w=200&q=80') center/cover no-repeat;
  opacity: 0.06;
  border-radius: var(--radius) 0 0 0;
  pointer-events: none;
}
.stat-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.stat-box .number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--rose-dark);
}
.stat-box .label {
  font-size: 14px;
  color: var(--dark-soft);
  margin-top: 4px;
}

/* TOAST NOTIFICATION */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast i { color: var(--gold); }
</style>
</head>
<body>
