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

:root {
  --rose-gold: #b76e79;
  --rose-light: #f0d4d8;
  --cream: #fdf6f0;
  --cream-dark: #f5ebe0;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --brown: #6b4c3b;
  --brown-light: #8b6f5e;
  --text-dark: #3a2a1f;
  --text-medium: #6b5b50;
  --text-light: #9a8a7f;
  --white: #ffffff;
  --blush: #fce4ec;
  --shadow-soft: 0 4px 30px rgba(183, 110, 121, 0.12);
  --shadow-hover: 0 12px 40px rgba(183, 110, 121, 0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: linear-gradient(135deg, var(--rose-gold), var(--brown));
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}
.announcement-bar span { animation: pulse-glow 2s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(183, 110, 121, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(183, 110, 121, 0.1);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
}
.nav-logo img {
  height: 55px;
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-medium);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--rose-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-icons { display: flex; gap: 18px; align-items: center; }
.nav-icons a {
  color: var(--text-medium);
  font-size: 1.2rem;
  transition: var(--transition);
}
.nav-icons a:hover { color: var(--rose-gold); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(253, 246, 240, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-nav.active { display: flex; opacity: 1; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--rose-gold); }
.mobile-nav-close {
  position: absolute;
  top: 25px; right: 30px;
  font-size: 2rem;
  background: none;
  color: var(--text-dark);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 42, 31, 0.55) 0%, rgba(183, 110, 121, 0.3) 50%, rgba(201, 169, 110, 0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.5s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-style: italic;
  animation: fadeUp 1s ease 0.7s both;
}
.hero-btn {
  display: inline-block;
  padding: 16px 48px;
  background: transparent;
  border: 2px solid var(--gold-light);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  animation: fadeUp 1s ease 0.9s both;
}
.hero-btn:hover {
  background: var(--gold-light);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold-light); border-color: var(--gold-light); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── FEATURED PRODUCTS ─── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.featured-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(183,110,121,0.08);
}
.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.featured-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.featured-info {
  padding: 16px 14px 14px;
  text-align: left;
}
.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  min-height: 44px;
}
.featured-price {
  font-family: 'Poppins', sans-serif;
  color: var(--rose-gold);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.featured-add-btn {
  width: 100%;
  padding: 10px;
  background: var(--cream-dark);
  color: var(--text-dark);
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.featured-item .featured-add-btn i {
  margin-right: 6px;
}
.featured-item:hover .featured-add-btn {
  background: var(--rose-gold);
  color: var(--white);
}
@media (max-width: 768px) {
  .featured-grid { padding: 0 20px; grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .featured-item img { height: 180px; }
}

/* ─── MARQUEE ─── */
.marquee-section {
  background: var(--cream-dark);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(183,110,121,0.08);
  border-bottom: 1px solid rgba(183,110,121,0.08);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0 40px;
  flex-shrink: 0;
}
.marquee-track span::after {
  content: '✦';
  margin-left: 40px;
  color: var(--rose-gold);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMON ─── */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold));
  margin: 0 auto;
}

/* ─── COLLECTIONS GRID ─── */
.collections-section {
  padding: 90px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.collection-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:hover img { transform: scale(1.08); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(58, 42, 31, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 20px;
  transition: var(--transition);
}
.collection-card:hover .collection-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(183, 110, 121, 0.6) 100%);
}
.collection-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: var(--transition);
}
.collection-card:hover .collection-card-name { transform: translateY(0); }
.collection-card-cta {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition);
}
.collection-card:hover .collection-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FEATURED / ABOUT ─── */
.featured-section {
  padding: 90px 40px;
  background: var(--cream-dark);
}
.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.featured-image:hover img { transform: scale(1.03); }
.featured-content { padding: 20px 0; }
.featured-content .section-label { text-align: left; }
.featured-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}
.featured-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 500;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* ─── GALLERY MOSAIC ─── */
.gallery-section {
  padding: 90px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }

/* ─── INSTAGRAM / CTA ─── */
.instagram-section {
  padding: 90px 40px;
  background: linear-gradient(135deg, var(--cream-dark), var(--blush));
  text-align: center;
}
.instagram-section .section-title { margin-bottom: 10px; }
.instagram-handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--rose-gold);
  margin-bottom: 40px;
  display: block;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
}
.instagram-grid img:hover { transform: scale(1.05); box-shadow: var(--shadow-hover); }
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}
.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(131, 58, 180, 0.3);
}

/* ─── WHY CHOOSE US ─── */
.features-section {
  padding: 90px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(183,110,121,0.08);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
  background: linear-gradient(135deg, #2a1f1a, #3a2a1f);
  color: rgba(255,255,255,0.7);
  padding: 70px 40px 30px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand img {
  height: 72px;
  margin-bottom: 16px;
  filter: brightness(1.8);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px;
  background: rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 1rem;
}
.footer-social a:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer h4 {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer ul a:hover { color: var(--rose-gold); padding-left: 5px; }
.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 12px 24px;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold); }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CART BADGE ─── */
.nav-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

/* ─── FULL-PAGE CART OVERLAY ─── */
.cart-page-overlay {
  position: fixed; inset: 0; z-index: 9995;
  background: var(--white);
  display: none; flex-direction: column;
  overflow-y: auto;
  animation: cartFadeIn 0.3s ease;
}
.cart-page-overlay.active { display: flex; }
@keyframes cartFadeIn { from { opacity: 0; } to { opacity: 1; } }

.cart-page {
  max-width: 900px; width: 100%; margin: 0 auto;
  padding: 0 40px; display: flex; flex-direction: column;
  min-height: 100vh;
}
.cart-page-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 30px 0; border-bottom: 1px solid #eee;
}
.cart-page-header h1 {
  font-size: 2rem; color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}
.cart-page-close {
  font-size: 2.5rem; color: var(--text-medium);
  background: none; transition: var(--transition); line-height: 1;
}
.cart-page-close:hover { color: var(--text-dark); }

/* Empty cart */
.cart-page-empty {
  text-align: center; padding: 80px 20px; flex: 1;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px;
}
.cart-page-empty h2 { font-size: 1.8rem; color: var(--text-dark); }
.cart-page-empty p { color: var(--text-light); font-size: 0.95rem; }
.cart-page-shop-btn {
  background: var(--text-dark); color: var(--white);
  padding: 14px 36px; border-radius: 4px; font-size: 0.88rem;
  font-weight: 400; letter-spacing: 0.5px; transition: var(--transition);
  margin-top: 12px;
}
.cart-page-shop-btn:hover { background: var(--brown); }

/* Cart table */
.cart-page-body { flex: 1; padding: 20px 0; }
.cart-page-table-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  padding: 12px 0; border-bottom: 1px solid #eee;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-light);
}
.cart-page-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  padding: 24px 0; border-bottom: 1px solid #f5f5f5;
  align-items: center;
}
.cart-page-product {
  display: flex; gap: 16px; align-items: center;
}
.cart-page-product img {
  width: 100px; height: 100px; object-fit: cover;
  border-radius: 4px; border: 1px solid #eee;
}
.cart-page-prod-name {
  font-size: 0.92rem; color: var(--text-dark);
  font-weight: 400; margin-bottom: 4px;
}
.cart-page-prod-price {
  font-size: 0.85rem; color: var(--text-medium);
}
.cart-page-qty {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.qty-control {
  display: flex; align-items: center;
  border: 1px solid #ddd; border-radius: 4px;
}
.qty-control button {
  width: 36px; height: 36px; background: transparent;
  font-size: 1.1rem; color: var(--text-dark); border: none;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-control button:hover { background: #f0f0f0; }
.qty-control span {
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; font-size: 0.88rem;
  border-left: 1px solid #ddd; border-right: 1px solid #ddd;
}
.cart-page-remove {
  color: var(--text-light); background: none; font-size: 1rem;
  padding: 4px; transition: var(--transition);
}
.cart-page-remove:hover { color: #e74c3c; }
.cart-page-row-total {
  font-size: 0.95rem; font-weight: 500; color: var(--text-dark);
  text-align: right;
}

/* Cart footer */
.cart-page-footer {
  padding: 24px 0 40px; border-top: 1px solid #eee;
  text-align: right;
}
.cart-page-total {
  display: flex; justify-content: flex-end; gap: 20px;
  font-size: 1.1rem; color: var(--text-dark); margin-bottom: 4px;
}
.cart-page-total span:last-child { font-weight: 600; }
.cart-page-tax {
  font-size: 0.78rem; color: var(--text-light); margin-bottom: 16px;
}
.cart-page-checkout-btn {
  display: block; width: 100%; max-width: 300px; margin-left: auto;
  padding: 16px; background: var(--text-dark); color: var(--white);
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.5px;
  border-radius: 50px; transition: var(--transition); margin-bottom: 12px;
}
.cart-page-checkout-btn:hover { background: var(--brown); }
.cart-page-continue {
  display: block; margin-left: auto; max-width: 300px; width: 100%;
  padding: 12px; background: transparent; color: var(--text-medium);
  font-size: 0.85rem; text-decoration: underline; transition: var(--transition);
}
.cart-page-continue:hover { color: var(--text-dark); }

/* ─── CHECKOUT FORM OVERLAY ─── */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  animation: cartFadeIn 0.3s ease;
}
.checkout-overlay.active { display: flex; }
.checkout-form-card {
  background: var(--white); border-radius: 12px;
  padding: 40px; width: 100%; max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
}
.checkout-form-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 1.8rem; background: none; color: var(--text-light);
  transition: var(--transition);
}
.checkout-form-close:hover { color: var(--text-dark); }
.checkout-form-card h2 {
  font-size: 1.5rem; color: var(--text-dark); margin-bottom: 8px;
}
.checkout-total-line {
  font-size: 1rem; color: var(--text-medium); margin-bottom: 24px;
}
.checkout-total-line strong { color: var(--text-dark); }
.checkout-field {
  margin-bottom: 16px;
}
.checkout-field label {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--text-medium); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.checkout-field input {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd;
  border-radius: 6px; font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; color: var(--text-dark);
  transition: var(--transition); outline: none;
}
.checkout-field input:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}
.checkout-pay-btn {
  width: 100%; padding: 16px; margin-top: 8px;
  background: var(--text-dark); color: var(--white);
  font-size: 0.95rem; font-weight: 500; border-radius: 50px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
}
.checkout-pay-btn:hover { background: var(--brown); }
.checkout-pay-btn i { font-size: 0.85rem; }
.checkout-secure {
  text-align: center; font-size: 0.78rem; color: var(--text-light);
  margin-top: 14px;
}

/* ─── CART TABLE (full page) ─── */
.cart-continue-link {
  font-size: 0.85rem; color: var(--text-medium);
  text-decoration: underline; transition: var(--transition);
}
.cart-continue-link:hover { color: var(--text-dark); }
.cart-table {
  width: 100%; border-collapse: collapse;
}
.cart-table thead th {
  text-align: left; padding: 12px 8px; border-bottom: 1px solid #eee;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-light);
}
.cart-table-row td { padding: 20px 8px; border-bottom: 1px solid #f5f5f5; vertical-align: middle; }
.cart-td-img img { width: 90px; height: 90px; object-fit: cover; border-radius: 4px; border: 1px solid #eee; }
.cart-td-name { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 2px; }
.cart-td-price { font-size: 0.82rem; color: var(--text-medium); }
.cart-td-qty { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.cart-td-remove { color: var(--text-light); background: none; font-size: 0.95rem; transition: var(--transition); }
.cart-td-remove:hover { color: #e74c3c; }
.cart-td-total { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); }

/* ─── CHECKOUT PAGE OVERLAY ─── */
.checkout-page-overlay {
  position: fixed; inset: 0; z-index: 9997;
  background: var(--white); overflow-y: auto;
  display: none;
}
.checkout-page-overlay.active { display: block; }
.checkout-page {
  display: grid; grid-template-columns: 1fr 420px;
  min-height: 100vh;
}
.ck-left {
  padding: 44px 52px 64px; max-width: 720px; margin: 0 auto; width: 100%;
}
.ck-right {
  background: #faf8f6; padding: 40px 35px; border-left: 1px solid #eee;
  position: sticky;
  top: 0;
  align-self: start;
  max-height: 100vh;
  overflow-y: auto;
}
.ck-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.ck-logo { height: 36px; }
.ck-brand span { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-dark); }
.ck-section { margin-bottom: 28px; }
.ck-section h3 {
  font-family: 'Poppins', sans-serif; font-size: 1.05rem;
  font-weight: 600; color: var(--text-dark); margin-bottom: 14px;
}
.ck-field { margin-bottom: 12px; position: relative; }
.ck-field label {
  position: absolute; top: 8px; left: 14px;
  font-size: 0.68rem; color: var(--text-light); font-weight: 400;
  pointer-events: none;
}
.ck-field input, .ck-field select {
  width: 100%; padding: 14px; border: 1px solid #ddd;
  border-radius: 6px; font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; color: var(--text-dark);
  transition: var(--transition); outline: none; background: var(--white);
}
.ck-field input.invalid {
  border-color: #d95555;
  box-shadow: 0 0 0 2px rgba(217,85,85,0.12);
}
.ck-field select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.ck-field input:focus, .ck-field select:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 2px rgba(183,110,121,0.12);
}
.ck-row { display: flex; gap: 12px; }
.ck-half { flex: 1; }
.ck-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.ck-checkbox {
  display: flex; align-items: center; gap: 8px; margin-top: 4px;
  font-size: 0.82rem; color: var(--text-medium); cursor: pointer;
}
.ck-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--rose-gold); }
.ck-shipping-options { display: flex; flex-direction: column; gap: 0; }
.ck-shipping-option {
  display: flex; align-items: center; gap: 12px; padding: 16px;
  border: 1px solid #ddd; border-radius: 8px; cursor: pointer;
  transition: var(--transition);
}
.ck-shipping-option.selected, .ck-shipping-option:hover {
  border-color: var(--rose-gold); background: rgba(183,110,121,0.04);
}
.ck-shipping-option input[type="radio"] { accent-color: var(--rose-gold); width: 18px; height: 18px; flex-shrink: 0; }
.ck-shipping-option div { flex: 1; }
.ck-shipping-option strong { font-size: 0.88rem; display: block; color: var(--text-dark); }
.ck-shipping-option span { font-size: 0.78rem; color: var(--text-light); }
.ck-ship-price { font-size: 0.88rem; font-weight: 500; color: var(--text-dark); }
.ck-secure-text { font-size: 0.78rem; color: var(--text-light); margin-bottom: 12px; }
.ck-secure-text i { margin-right: 4px; }
.ck-payment-box { border: 2px solid var(--rose-gold); border-radius: 8px; overflow: hidden; }
.ck-payment-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: rgba(183,110,121,0.06);
  font-size: 0.85rem; font-weight: 500; color: var(--text-dark);
}
.ck-pay-icons { font-size: 1.2rem; }
.ck-payment-desc {
  padding: 14px 16px; font-size: 0.8rem; color: var(--text-medium);
  border-top: 1px solid rgba(183,110,121,0.15);
}
.ck-pay-now-btn {
  width: 100%; padding: 18px; margin-top: 20px;
  background: var(--text-dark); color: var(--white);
  font-size: 1rem; font-weight: 500; border-radius: 6px;
  transition: var(--transition); letter-spacing: 0.3px;
}
.ck-pay-now-btn.secondary {
  background: #5f534b;
}
.ck-pay-now-btn:hover { background: var(--brown); }
.ck-pay-now-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.ck-back-btn {
  background: none; color: var(--text-medium); font-size: 0.85rem;
  margin-bottom: 20px; transition: var(--transition);
}
.ck-back-btn:hover { color: var(--text-dark); }
.ck-order-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.ck-order-item { display: flex; align-items: center; gap: 14px; }
.ck-order-img-wrap { position: relative; flex-shrink: 0; }
.ck-order-img-wrap img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; border: 1px solid #eee; }
.ck-order-qty-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--text-medium); color: var(--white);
  font-size: 0.6rem; font-weight: 600; min-width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.ck-order-item-name { flex: 1; font-size: 0.85rem; color: var(--text-dark); }
.ck-order-item-price { font-size: 0.85rem; color: var(--text-dark); font-weight: 500; }
.ck-order-totals { border-top: 1px solid #e0e0e0; padding-top: 16px; }
.ck-order-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.88rem; color: var(--text-medium); }
.ck-order-grand {
  font-size: 1.1rem; font-weight: 600; color: var(--text-dark);
  padding-top: 12px; margin-top: 6px; border-top: 1px solid #e0e0e0;
}
.ck-order-grand small { font-weight: 400; font-size: 0.75rem; color: var(--text-light); margin-right: 4px; }
.ck-summary-toggle {
  display: none;
  width: 100%;
  background: #fff;
  border: 1px solid #e7ddd8;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-dark);
  font-size: 0.84rem;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 500;
}
.ck-summary-toggle span {
  float: right;
  transition: transform 0.2s ease;
}
.ck-summary-toggle.is-open span {
  transform: rotate(180deg);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-image img { height: 400px; }
  .checkout-page { grid-template-columns: 1fr; }
  .ck-right { border-left: none; border-top: 1px solid #eee; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 12px 20px; }
  .hero { height: 75vh; min-height: 500px; }
  .hero-title { font-size: 2.2rem; }
  .collections-section, .featured-section,
  .gallery-section, .instagram-section,
  .features-section { padding: 60px 20px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer { padding: 50px 20px 20px; }
  .cart-page { padding: 0 20px; }
  .cart-table-row td { padding: 12px 4px; }
  .cart-td-img img { width: 70px; height: 70px; }
  .featured-grid { padding: 0 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .featured-item img { height: 180px; }
  .ck-left { padding: 24px 16px 24px; }
  .ck-right {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 20px 16px 24px;
  }
  .ck-order-line { font-size: 0.84rem; }
  .ck-order-grand { font-size: 1rem; }
  .ck-pay-now-btn { padding: 14px; font-size: 0.95rem; margin-top: 14px; }
  .ck-summary-toggle { display: block; }
  #ckOrderSummaryBody {
    display: none;
  }
  #ckOrderSummaryBody.is-open {
    display: block;
  }
  .ck-row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .collection-card { aspect-ratio: 2/3; }
  .hero-btn { padding: 12px 30px; font-size: 0.75rem; }
  .featured-title { min-height: 38px; font-size: 0.92rem; }
  .featured-price { font-size: 0.86rem; margin-bottom: 8px; }
  .featured-add-btn { font-size: 0.76rem; padding: 8px 10px; }
  .cart-page-header h1 { font-size: 1.5rem; }
  .cart-page-checkout-btn { max-width: 100%; }
  .cart-table thead { display: none; }
  .cart-table-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
  .cart-table-row td { border: none; padding: 8px 0; }
}

/* ─── AUTH + USER MENU ─── */
.aura-auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 10020;
  background: rgba(20, 16, 14, 0.42);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.aura-auth-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  padding: 24px 22px 20px;
}
.aura-auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.aura-auth-header h3 {
  font-size: 1.45rem;
}
.aura-auth-close {
  font-size: 1.9rem;
  line-height: 1;
  background: transparent;
  color: var(--text-medium);
}
.aura-auth-subtitle {
  margin-bottom: 14px;
  color: var(--text-medium);
  font-size: 0.92rem;
}
.aura-auth-resend {
  margin-top: 8px;
  text-decoration: underline;
  width: auto;
}
.aura-user-wrapper {
  display: inline-flex;
  align-items: center;
}
.aura-user-icon {
  font-size: 1.05rem !important;
  color: var(--text-medium);
}
.aura-user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  min-width: 200px;
  padding: 12px;
  box-shadow: 0 16px 30px rgba(22, 16, 12, 0.12);
  z-index: 10021;
}
.aura-user-dropdown p {
  font-size: 12px;
  color: #3d332d;
  margin-bottom: 10px;
  word-break: break-word;
}
.aura-user-dropdown button {
  width: 100%;
  border: none;
  background: var(--rose-gold);
  color: #fff;
  border-radius: 6px;
  padding: 8px 10px;
}

/* Google Places dropdown above checkout overlay */
.pac-container {
  z-index: 10050 !important;
  font-family: 'Poppins', sans-serif;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.checkout-page-overlay .ck-address-field {
  position: relative;
  z-index: 1;
}

.aura-admin-card { max-width: 920px; }
.aura-admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0 12px;
}
.aura-admin-toolbar .ck-pay-now-btn {
  width: auto;
  padding: 10px 16px;
  margin: 0;
}
.aura-admin-table-wrap {
  max-height: 420px;
  overflow: auto;
  border: 1px solid #eee;
  border-radius: 10px;
}
.aura-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.aura-admin-table th,
.aura-admin-table td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #f0ebe6;
}
.aura-admin-table input {
  width: 100%;
  border: 1px solid #e8dfd6;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 12px;
}
.aura-admin-save {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: var(--rose-gold);
  color: #fff;
  cursor: pointer;
}
.aura-admin-icon {
  font-size: 1.05rem !important;
  color: var(--rose-gold);
}

@media (max-width: 768px) {
  .aura-auth-card { max-width: 100%; border-radius: 14px; padding: 18px 16px; }
  .aura-auth-header h3 { font-size: 1.2rem; }
}
