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

:root {
  --black: #0a0a0a;
  --deep: #111111;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --pink: #ad1457;
  --pink-light: #d81b60;
  --pink-glow: rgba(173,20,87,0.18);
  --gold: #d4a843;
  --text: #f0f0f0;
  --muted: #999;
  --white: #ffffff;
}

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

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--pink); }
.logo-img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; vertical-align: middle; margin-right: 10px; }
.logo-brand { display: flex; align-items: center; }
.logo-brand .logo-text { display: flex; flex-direction: column; line-height: 1.1; font-size: 0.85rem; font-weight: 600; color: var(--white); letter-spacing: 1px; }
.logo-brand .logo-text small { font-size: 0.55rem; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; font-family: 'Poppins', sans-serif; }

/* DROPDOWN */
.nav-links li.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 140%; left: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s;
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
}
.nav-links li.has-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  text-transform: none; letter-spacing: 0;
  font-size: 0.85rem; color: var(--text);
}
.dropdown-menu a:hover { background: var(--pink-glow); color: var(--pink); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--pink); }

/* ================================
   HERO SLIDER
   ================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 550px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  width: calc(100% / 3);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
}

.slide-1 {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a14 50%, #0a0a0a 100%);
}
.slide-2 {
  background: linear-gradient(135deg, #0a0012 0%, #1a0a20 50%, #0d000a 100%);
}
.slide-3 {
  background: linear-gradient(135deg, #0a0a0a 0%, #0a1218 50%, #0a0a0a 100%);
}

.slide::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.slide-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.15;
}
.deco-circle {
  width: 320px; height: 320px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--pink);
  color: var(--pink);
  padding: 6px 20px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 25px;
  animation: fadeUp 0.8s ease forwards;
}

.slide h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.slide h1 .accent { color: var(--pink); font-style: italic; }

.slide p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(173,20,87,0.2);
  border: 1px solid var(--pink);
  color: var(--pink);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.slider-btn:hover { background: var(--pink); color: white; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(173,20,87,0.4);
  border: 1px solid var(--pink);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.dot.active { background: var(--pink); transform: scale(1.3); }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--pink-light); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(233,30,140,0.4); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--pink);
  color: var(--pink);
  padding: 13px 35px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--pink); color: white; }

/* SECTIONS */
.section { padding: 80px 5%; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 12px; }
.section-title span { color: var(--pink); }
.section-sub { text-align: center; color: var(--muted); font-size: 0.95rem; margin-bottom: 50px; letter-spacing: 1px; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--pink), transparent); margin: 15px auto 40px; border-radius: 3px; }

/* PRODUCTS GRID */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; }

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.product-card:hover { border-color: var(--pink); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(233,30,140,0.2); }

.product-img { width: 100%; height: 240px; object-fit: cover; display: block; background: #222; }
.product-img-placeholder { width: 100%; height: 240px; background: linear-gradient(135deg, #1a1a1a, #2a1a22); display: flex; align-items: center; justify-content: center; font-size: 3rem; }

.product-badge { position: absolute; top: 14px; left: 14px; background: var(--pink); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px; }

.product-info { padding: 20px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.product-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 10px; }
.product-price { font-size: 1.25rem; font-weight: 700; color: var(--pink); margin-bottom: 8px; }
.product-price span { font-size: 0.85rem; color: var(--muted); font-weight: 400; }

.stock-info { font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; }
.stock-info.out { color: #ef4444; }

.btn-order {
  width: 100%;
  background: linear-gradient(135deg, var(--pink), #c4107a);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.btn-order:hover { background: linear-gradient(135deg, var(--pink-light), var(--pink)); box-shadow: 0 8px 25px rgba(233,30,140,0.4); }

/* ABOUT */
.about-section { background: var(--deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; }
.about-text h2 span { color: var(--pink); }
.about-text p { color: var(--muted); line-height: 1.9; font-size: 0.95rem; margin-bottom: 15px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.stat-box { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--pink); }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.about-visual { background: linear-gradient(135deg, #1a0a14, #0a0a0a); border: 1px solid var(--border); border-radius: 20px; padding: 50px; text-align: center; font-size: 5rem; position: relative; overflow: hidden; }
.about-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, var(--pink-glow), transparent 70%); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 20px; }
.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; padding: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
.contact-icon { font-size: 1.4rem; }
.contact-text p:first-child { font-weight: 600; font-size: 0.85rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.contact-text p:last-child { font-size: 0.95rem; margin-top: 3px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form input, .contact-form textarea { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; color: var(--text); font-family: 'Poppins', sans-serif; font-size: 0.9rem; transition: border-color 0.3s; outline: none; width: 100%; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--pink); }
.contact-form textarea { height: 130px; resize: none; }

/* ORDER MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(6px); }
.modal-overlay.active { display: flex; }
.modal { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 35px 40px; max-width: 500px; width: 100%; animation: fadeUp 0.3s ease; position: relative; max-height: 90vh; overflow-y: auto; }
.modal h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 8px; }
.modal .product-selected { color: var(--pink); font-size: 0.9rem; margin-bottom: 15px; font-weight: 600; }
.modal-close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; transition: color 0.2s; }
.modal-close:hover { color: var(--pink); }
.modal input { background: var(--deep); border: 1px solid var(--border); border-radius: 10px; padding: 13px 16px; color: var(--text); font-family: 'Poppins', sans-serif; font-size: 0.9rem; width: 100%; margin-bottom: 12px; outline: none; transition: border-color 0.3s; }
.modal input:focus { border-color: var(--pink); }
.modal label { font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; display: block; }

/* DELIVERY NOTICE */
.delivery-notice {
  background: rgba(173,20,87,0.1);
  border: 1px solid rgba(173,20,87,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-bottom: 15px;
  color: var(--text);
}
.delivery-notice small { display: block; color: var(--muted); margin-top: 3px; font-size: 0.78rem; }

/* ORDER SUMMARY */
.order-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 15px;
}
.summary-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 4px 0; color: var(--muted); }
.summary-row.total-row { color: var(--pink); font-weight: 700; font-size: 1rem; border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; }

.success-msg { display: none; text-align: center; padding: 20px 0; }
.success-msg .check { font-size: 3.5rem; margin-bottom: 15px; }
.success-msg h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 8px; }
.success-msg p { color: var(--muted); font-size: 0.9rem; }

/* FOOTER */
.footer { background: var(--deep); border-top: 1px solid var(--border); padding: 50px 5% 30px; text-align: center; }
.footer .logo { font-size: 1.5rem; }
.footer p { color: var(--muted); font-size: 0.85rem; margin-top: 15px; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin: 20px 0; list-style: none; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--pink); }

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

/* NOTIFICATION */
.notif { position: fixed; bottom: 30px; right: 30px; background: var(--card); border: 1px solid var(--pink); color: var(--text); padding: 14px 24px; border-radius: 12px; font-size: 0.9rem; z-index: 9998; display: none; animation: fadeUp 0.3s ease; box-shadow: 0 10px 40px rgba(233,30,140,0.3); }
.notif.show { display: block; }

/* RESPONSIVE */
@media(max-width:768px){
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-slider { height: 70vh; min-height: 480px; }
  .slide h1 { font-size: 2rem; }
  .slide p { font-size: 0.9rem; }
  .slider-btn { width: 38px; height: 38px; font-size: 1.2rem; }
  .deco-circle { display: none; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
  .modal { padding: 25px; }
}
