/* ===== CSS Variables ===== */
:root {
  --plum: #4A1942;
  --plum-dark: #3A1234;
  --plum-light: #6B2D5C;
  --gold: #C9A962;
  --gold-light: #E8D5A3;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-muted: #666666;
  --pink-light: #F5E6EA;
  --pink-icon: #F0D4DC;
  --shadow: 0 4px 20px rgba(74, 25, 66, 0.08);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
  --announce-h: 36px;
}

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

html { scroll-behavior: smooth; }

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
  background: var(--plum);
  color: var(--white);
  height: var(--announce-h);
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.announcement-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  height: 100%;
  padding: 0 20px;
}

.announcement-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.announcement-track .sep {
  color: var(--gold);
  font-size: 8px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Header ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(74, 25, 66, 0.12);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  width: 80px;
  height: auto;
  transition: transform var(--transition);
  mix-blend-mode: lighten;
}

.logo:hover img { transform: scale(1.05); }

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

.main-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a:hover,
.main-nav a.active { color: var(--plum); }

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 180px;
  padding: 12px 0;
  box-shadow: var(--shadow);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: 8px 20px;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.dropdown li a:hover {
  background: var(--pink-light);
  color: var(--plum);
}

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

.icon-btn {
  color: var(--text);
  padding: 6px;
  transition: color var(--transition), transform var(--transition);
  position: relative;
}

.icon-btn:hover {
  color: var(--plum);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--plum);
  color: var(--white);
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h) - var(--announce-h));
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: kenBurns 8s ease-out forwards;
}

.hero-slide.active img { animation: kenBurns 8s ease-out forwards; }

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

.hero-content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  max-width: 520px;
  z-index: 2;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content h1 em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  font-size: 1.3em;
  letter-spacing: 0;
  color: var(--gold-light);
}

.hero-content p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  border: 2px solid var(--plum);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid var(--white);
  transition: all var(--transition);
}

.hero-dots button.active {
  background: var(--white);
  transform: scale(1.2);
}

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

/* ===== Section Common ===== */
.section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--plum);
  white-space: nowrap;
}

.flourish-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.flourish-line::after {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 10px;
  background: var(--cream);
  padding: 0 6px;
}

.section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-head-row .section-head { margin-bottom: 0; }

.view-all {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--plum);
  border-bottom: 1px solid var(--plum);
  padding-bottom: 2px;
  transition: color var(--transition);
  white-space: nowrap;
}

.view-all:hover { color: var(--gold); border-color: var(--gold); }

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Categories ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  text-align: center;
  transition: transform var(--transition);
}

.category-card:hover { transform: translateY(-8px); }

.category-arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  position: relative;
}

.category-arch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(74,25,66,0.15));
  opacity: 0;
  transition: opacity var(--transition);
}

.category-card:hover .category-arch::after { opacity: 1; }

.category-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-arch img { transform: scale(1.1); }

.category-card span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--plum);
}

/* ===== Products ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.product-card { transition: transform var(--transition); }

.product-card:hover { transform: translateY(-4px); }

.product-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 14px;
  border-radius: 2px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-actions button {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: var(--plum);
  transition: all var(--transition);
}

.product-actions button:hover {
  background: var(--plum);
  color: var(--white);
  transform: scale(1.1);
}

.product-card h3 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.product-card .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--plum);
}

/* ===== New Arrivals Masonry ===== */
.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.arrival-item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.arrival-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.arrival-item:hover img { transform: scale(1.08); }

.arrival-item.tall { grid-row: span 2; }
.arrival-item.wide { grid-column: span 2; }

/* ===== Services Bar ===== */
.services-bar {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid rgba(74,25,66,0.08);
  border-bottom: 1px solid rgba(74,25,66,0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.service-item:hover .service-icon { transform: scale(1.1) rotate(5deg); }

.service-item h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--plum);
  margin-bottom: 2px;
}

.service-item p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Testimonials ===== */
.testimonials-section {
  padding-bottom: 80px;
  overflow: hidden;
}

.testimonials-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: testimonialScroll 40s linear infinite;
  width: max-content;
  padding: 10px 0;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(74,25,66,0.12);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--plum);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--plum);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand img {
  width: 100px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.footer-links ul li { margin-bottom: 10px; }

.footer-links a {
  font-size: 13px;
  opacity: 0.85;
  transition: opacity var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 6px;
}

.footer-contact p {
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.85;
}

.footer-contact strong { color: var(--gold-light); }

.newsletter { margin-top: 24px; }

.newsletter-form {
  display: flex;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 13px;
  font-family: inherit;
  border-radius: 2px 0 0 2px;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-form button {
  padding: 12px 20px;
  background: var(--white);
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0 2px 2px 0;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  opacity: 0.7;
}

.payment-icons {
  display: flex;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6); }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .category-grid,
  .product-grid { grid-template-columns: repeat(3, 1fr); }

  .main-nav { display: none; }

  .main-nav.open {
    display: block;
    position: fixed;
    top: calc(var(--header-h) + var(--announce-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .main-nav.open li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .main-nav.open a { padding: 16px 0; font-size: 13px; }

  .main-nav.open .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }

  .main-nav.open .has-dropdown.open .dropdown { display: block; }

  .menu-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .logo img { width: 55px; }

  .hero {
    min-height: 400px;
    max-height: 550px;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    max-width: none;
  }

  .hero-content h1 { font-size: 26px; }

  .section { padding: 48px 0; }

  .section-head h2 { font-size: 20px; letter-spacing: 2px; }
  .flourish-line { max-width: 60px; }

  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .arrival-item.wide { grid-column: span 1; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 24px 20px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .payment-icons { flex-wrap: wrap; justify-content: center; }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr; }

  .announcement-track span { font-size: 11px; }

  .section-head-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
