/* ===================================
   LYAMEE JEWELS - PREMIUM THEME
   =================================== */

:root {
  /* Primary Colors */
  --midnight-blue: #0a1128;
  --deep-navy: #1c2541;

  /* Accent Colors */
  --rose-gold: #d4a373;
  --soft-rose: #e8b4b8;
  --blush-pink: #fce7f3;
  --light-blush: #fff5f7;

  /* Neutral Colors */
  --off-white: #fafafa;
  --warm-grey: #6b7280;
  --light-grey: #e5e7eb;
  --text-dark: #1f2937;

  /* Accent Highlights */
  --gold-accent: #d4af37;
  --pearl-white: #f8f6f4;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================
   ANNOUNCEMENT BAR
   ================== */
.announcement-bar {
  background: linear-gradient(135deg, var(--midnight-blue), var(--deep-navy));
  color: var(--rose-gold);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}

/* ==================
   NAVIGATION
   ================== */
/* ==================
   NAVIGATION
   ================== */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

/* yahan max-width dekar sab center kar rahe hain */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;       /* row1 + row2 */
  gap: 6px;
}

/* row 1: logo + icons */
.nav-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */
.logo-link {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-img {
  height: 56px;
  padding: 4px 10px;
  background: linear-gradient(50deg, #0a1128, #112272);

  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* row 2: menu */
.nav-menu {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--rose-gold);
}

/* icons */
.nav-icons {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.nav-icons a {
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  transition: transform 0.3s;
}

.nav-icons a:hover {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--rose-gold);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}


/* ==================
   HERO SECTION
   ================== */
/* ==================
   HERO CAROUSEL
   ================== */

.hero-carousel {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

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

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 40, 0.4);
  z-index: 1;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 600px;
  width: 100%;
  padding: 20px;
}

.carousel-content .hero-subtitle {
  color: var(--rose-gold);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 400;
}

.carousel-content .hero-title {
  font-size: 72px;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.carousel-content .hero-description {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 35px;
  line-height: 1.8;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 30px;
}

.carousel-next {
  right: 30px;
}

/* Carousel Indicators (Dots) */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--rose-gold);
  width: 30px;
  border-radius: 6px;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-carousel {
    height: 400px;
  }

  .carousel-content .hero-title {
    font-size: 48px;
  }

  .carousel-content .hero-description {
    font-size: 16px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }
}
/* ==================
   CAROUSEL SHOP BUTTON
   ================== */

.carousel-shop-btn {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.btn-shop {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(135deg, var(--rose-gold), var(--soft-rose));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Hover Effect 1: Scale + Shadow */
.btn-shop:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 50px rgba(212, 163, 115, 0.5);
}

/* Hover Effect 2: Shine animation */
.btn-shop::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-shop:hover::before {
  left: 100%;
}

/* Active State */
.btn-shop:active {
  transform: translateY(-1px) scale(0.98);
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-shop-btn {
    bottom: 60px;
  }

  .btn-shop {
    padding: 14px 35px;
    font-size: 13px;
  }
}

/* View All Products button (home featured section) */
.featured-products .btn.btn-primary {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 999px;
  border: 1px solid #d4a373;
  background: #ffffff;
  color: #0a1128;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(10, 17, 40, 0.06);
}

/* Gradient border + shine */
.featured-products .btn.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #d4a373, #e8b4b8);

  /* mask (standard + webkit) */
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

/* Hover: fill gradient, lift */
.featured-products .btn.btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #d4a373, #e8b4b8);
  box-shadow: 0 14px 35px rgba(212, 163, 115, 0.45);
  transform: translateY(-2px);
}

/* Active */
.featured-products .btn.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(212, 163, 115, 0.35);
}

/* Mobile adjust */
@media (max-width: 600px) {
  .featured-products .btn.btn-primary {
    padding: 11px 26px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

/* ==================
   COLLECTIONS
   ================== */
/* Collections section wrapper */
.collections {
  padding: 70px 20px 60px;
  background: #fff;
}

.collections .section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 6px;
  color: #171b2b;
}

.collections .section-header p {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 32px;
}

/* Grid like Shopify */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 992px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Card style */
.collection-card {
  background: linear-gradient(135deg, #fff5f8, #ffeef6); /* soft pink gradient */
  border-radius: 24px;
  padding: 32px 26px 26px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.09);
  background: #fff4f1;
}

/* Round image on top */
.collection-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.4);
}

.collection-thumb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}


/* Title & subtitle */
.collection-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: #181827;
  margin-bottom: 8px;
}

.collection-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

/* Explore link like Shopify */
.collection-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #c58a4a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.collection-card .link-arrow::after {
  content: "→";
  font-size: 13px;
  transition: transform 0.2s ease;
}

.collection-card:hover .link-arrow::after {
  transform: translateX(3px);
}


/* ==================
   FEATURED PRODUCTS
   ================== */
.featured-products {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--blush-pink), var(--off-white));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--rose-gold);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
}

.product-badge.sale {
  background: #e63946;
}

.product-image {
  height: 260px;
  background: var(--light-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.product-info {
  padding: 20px;
}

.product-info h4 {
  font-size: 18px;
  color: var(--midnight-blue);
  margin-bottom: 12px;
}

.product-price {
  margin-bottom: 15px;
}

.current-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--rose-gold);
}

.original-price {
  font-size: 14px;
  color: var(--warm-grey);
  text-decoration: line-through;
  margin-left: 10px;
}

.btn-add-cart {
  width: 100%;
  padding: 12px;
  background: var(--midnight-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-add-cart:hover {
  background: var(--rose-gold);
}

/* ==================
   WHY US
   ================== */
.why-us {
  padding: 80px 20px;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--rose-gold);
}

.feature-card h4 {
  font-size: 20px;
  color: var(--midnight-blue);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--warm-grey);
  font-size: 14px;
}

/* ==================
   NEWSLETTER
   ================== */
.newsletter {
  background: linear-gradient(135deg, var(--midnight-blue), var(--deep-navy));
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.newsletter h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.newsletter p {
  font-size: 16px;
  margin-bottom: 30px;
  color: var(--rose-gold);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
}

.newsletter-form button {
  padding: 15px 40px;
  cursor: pointer;
}

/* ==================
   FOOTER
   ================== */
.footer {
  background: var(--midnight-blue);
  color: var(--light-grey);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
  color: var(--rose-gold);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column ul li a {
  color: var(--light-grey);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--rose-gold);
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a {
  color: var(--light-grey);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--rose-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

/* ==================
   RESPONSIVE
   ================== */
/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 768px) {
  /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }
  .hero-inner {
    flex-direction: column;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-image-placeholder {
    width: 280px;
    height: 280px;
    margin-top: 30px;
  }

  /* NAVBAR: row 1 = logo + icons, row 2 = menu */
  .nav-container {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-top-row .logo {
    flex: 0 0 auto;
  }

  .nav-top-row .nav-icons {
    flex: 0 0 auto;
  }

  .nav-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    font-size: 11px;
    flex-wrap: nowrap;
  }

  .nav-menu li a {
    white-space: nowrap;
  }

  /* GRID SECTIONS ON MOBILE */
  .collection-grid,
  .product-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
/* ==================
   ANIMATIONS
   ================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: trans lateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content,
.collection-card,
.product-card {
  animation: fadeInUp 0.8s ease-out;
}

/* ==================
 NAVBAR AVTAR STYLES
   ================== */
   .nav-user-initial {
  width: 32px;
  height: 32px;
  border-radius: 50%;
 background: linear-gradient(135deg, #d4a373, #b8946e);
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-left: 10px;
}

.nav-user-initial:hover {
  background: #d47aeb;
}
/* ===== PREMIUM CHECKOUT SIGNUP POPUP ===== */

.signup-modal-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(45,27,105,0.85), rgba(15,23,42,0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 16px;
}

.signup-modal {
  width: 100%;
  max-width: 560px;
  background: 
    linear-gradient(180deg, #fff7ec, #fdf1df);  /* ✅ Warm champagne tone */
  border-radius: 24px;
  padding: 28px 26px 26px;
  position: relative;
  text-align: center;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(212, 163, 115, 0.45),
    inset 0 8px 20px rgba(255, 255, 255, 0.6);

  animation: popupScaleIn 0.35s ease;
}


@keyframes popupScaleIn {
  0% {
    transform: scale(0.88);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.signup-modal h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #b8946e, #d4a373);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.4px;
}



.signup-modal p {
  margin: 0 0 12px 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5b4b3a;   /* ✅ warm brown-gold tone */
}

.signup-note {
  font-size: 13px;
  color: #7a6755;
}


.signup-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

/* ===== PRIMARY BUTTON ===== */
.signup-btn-primary {
  background: linear-gradient(135deg, #d4a373, #b8946e);
  color: #111827;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(212, 163, 115, 0.45);
  transition: all 0.3s ease;
}

.signup-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(212, 163, 115, 0.55);
}

/* ===== SECONDARY BUTTON ===== */
.signup-btn-secondary {
  background: transparent;
  border: 1px solid #e5e7eb;
  color: #374151;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.signup-btn-secondary:hover {
  background: #f3f4f6;
}

/* ===== CLOSE BUTTON ===== */
.signup-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(243, 244, 246, 0.9);
  color: #4b5563;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.signup-modal-close:hover {
  background: #e5e7eb;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .signup-modal {
    max-width: 100%;
    padding: 22px 18px 20px;
  }

  .signup-modal h3 {
    font-size: 19px;
  }

  .signup-modal p {
    font-size: 13.5px;
  }

  .signup-btn-primary {
    font-size: 14px;
    padding: 11px 18px;
  }

  .signup-btn-secondary {
    font-size: 13.5px;
    padding: 10px 18px;
  }
}
