/* ===== ASHU'S ARTISTRY - Luxury Jewelry Store CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --gold-dark: #9a7b2f;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --medium: #2d2d2d;
  --light-gray: #f8f5f0;
  --text: #3a3a3a;
  --text-light: #888;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --nav-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  height: var(--nav-height);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.08); }
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-social { display: flex; gap: 1rem; }
.nav-social a {
  color: var(--text-light);
  font-size: 1.1rem;
  transition: color var(--transition);
}
.nav-social a:hover { color: var(--gold); }
.nav-brand {
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-tagline {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--gold); }
.cart-btn {
  position: relative;
  color: var(--black);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color var(--transition);
}
.cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #faf7f2 0%, #f5f0e8 50%, #ede5d5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  text-align: center;
  z-index: 1;
  animation: fadeUp 1s ease both;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  top: 15%; right: 8%;
  width: 300px; height: 300px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.hero-dots {
  position: absolute;
  bottom: 20%; left: 8%;
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.3;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--black);
  color: white;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--black);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--black);
  color: white;
}
.btn-full { width: 100%; text-align: center; }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--black);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 300;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--black);
}
.section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}
.product-card {
  cursor: pointer;
  position: relative;
  transition: transform var(--transition);
}
.product-card:hover { transform: translateY(-5px); }
.product-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--light-gray);
}
.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.no-image {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f5f0, #ede5d5);
  color: var(--gold);
  font-size: 3rem;
}
.product-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  transform: translateY(100%);
  transition: transform var(--transition);
}
.product-card:hover .product-overlay { transform: translateY(0); }
.btn-cart-quick {
  width: 100%;
  padding: 0.7rem;
  background: white;
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cart-quick:hover { background: var(--gold); color: white; }
.badge-featured {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-info { padding: 1.2rem 0; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.product-cat {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.product-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 0.3rem;
}

/* ===== VALUES STRIP ===== */
.values-strip {
  background: var(--light-gray);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.value-item i { color: var(--gold); font-size: 1.3rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, #faf7f2, #f0e8d8);
}
.page-hero.small { padding: calc(var(--nav-height) + 2rem) 2rem 2rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--black);
}
.page-hero p {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ===== SHOP SECTION ===== */
.shop-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}
.shop-filters { margin-bottom: 2.5rem; }
.filter-form { display: flex; flex-direction: column; gap: 1.2rem; }
.search-wrap {
  display: flex;
  max-width: 400px;
  border: 1px solid #ddd;
  overflow: hidden;
}
.search-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.search-wrap button {
  padding: 0 1.2rem;
  background: var(--black);
  color: white;
  border: none;
  cursor: pointer;
}
.cat-filters { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cat-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid #ddd;
  background: white;
  text-decoration: none;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-page {
  padding: calc(var(--nav-height) + 3rem) 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-gray);
}
.main-media {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.7rem;
  flex-wrap: wrap;
}
.thumb {
  width: 70px; height: 70px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: var(--light-gray);
}
.thumb.active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-video {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--gold);
  font-size: 1.2rem;
}
.product-detail-info { padding-top: 1rem; }
.product-detail-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--black);
  margin: 0.5rem 0;
}
.product-detail-price {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin: 1rem 0;
}
.product-description {
  color: var(--text-light);
  line-height: 1.7;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.qty-wrap { margin: 1.5rem 0; }
.qty-wrap label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  width: fit-content;
}
.qty-control button {
  width: 40px; height: 40px;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--transition);
}
.qty-control button:hover { background: var(--light-gray); }
.qty-control input {
  width: 60px; height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 1rem;
}
.social-cta { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #eee; }
.social-cta p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }
.social-btns { display: flex; gap: 1rem; }
.btn-wa, .btn-ig {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  border: 2px solid;
}
.btn-wa { background: #25D366; color: white; border-color: #25D366; }
.btn-wa:hover { background: white; color: #25D366; }
.btn-ig { background: #E1306C; color: white; border-color: #E1306C; }
.btn-ig:hover { background: white; color: #E1306C; }

/* ===== CART ===== */
.cart-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}
.cart-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
.cart-item-image { width: 80px; height: 80px; overflow: hidden; background: var(--light-gray); }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}
.cart-item-price { color: var(--gold-dark); font-size: 0.9rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.7rem; }
.cart-item-qty button {
  width: 28px; height: 28px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}
.cart-item-qty button:hover { background: var(--light-gray); }
.cart-item-total { font-weight: 500; min-width: 80px; text-align: right; }
.cart-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1rem;
  transition: color var(--transition);
  padding: 0.3rem;
}
.cart-remove:hover { color: #e00; }
.cart-summary {
  background: var(--light-gray);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.cart-summary h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e0d8cc;
  font-size: 0.9rem;
}
.summary-row.total {
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: none;
  margin-top: 0.5rem;
  color: var(--black);
}

/* ===== CHECKOUT ===== */
.checkout-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.checkout-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  background: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.payment-methods { display: flex; gap: 1rem; margin-bottom: 1rem; }
.payment-option {
  flex: 1;
  padding: 1rem;
  border: 2px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: border-color var(--transition);
}
.payment-option input[type="radio"] { display: none; }
.payment-option.active { border-color: var(--gold); }
.payment-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.gpay-icon { background: #1a73e8; color: white; }
.phonepe-icon { background: #5f259f; color: white; }
.upi-preview {
  background: #f8f5f0;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  border-left: 3px solid var(--gold);
}

.order-summary-wrap {
  background: var(--light-gray);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.order-summary-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e0d8cc;
}
.order-item img { width: 50px; height: 50px; object-fit: cover; }
.order-item-info { flex: 1; }
.order-item-info p { font-size: 0.9rem; font-weight: 500; }
.order-item-info small { color: var(--text-light); font-size: 0.8rem; }
.summary-divider { margin: 1rem 0; border: none; border-top: 1px solid #e0d8cc; }

/* ===== PAYMENT PAGE ===== */
.payment-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}
.payment-card {
  background: white;
  border: 1px solid #eee;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.payment-header { text-align: center; margin-bottom: 2rem; }
.payment-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
}
.payment-header p { color: var(--text-light); font-size: 0.9rem; }
.gpay-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px; height: 70px;
  background: #1a73e8;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.phonepe-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px; height: 70px;
  background: #5f259f;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.upi-section { margin-bottom: 2rem; }
.upi-label { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.5rem; }
.upi-id-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light-gray);
  padding: 1rem 1.2rem;
  border: 2px dashed var(--gold);
}
.upi-id-box span { font-weight: 600; font-size: 1.1rem; letter-spacing: 0.05em; }
.copy-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 1rem;
}
.qr-placeholder { text-align: center; margin: 1.5rem 0; }
.qr-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
  border: 2px solid #eee;
  color: var(--text-light);
}
.qr-box i { font-size: 5rem; color: var(--black); }
.payment-steps { margin: 2rem 0; }
.payment-steps h4 { margin-bottom: 1rem; }
.payment-steps ol { padding-left: 1.5rem; }
.payment-steps li { margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-light); }
.confirm-form { margin-top: 1.5rem; }
.payment-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}
.payment-note a { color: var(--gold); }

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #faf7f2, #f0e8d8);
  padding: 2rem;
}
.success-card {
  background: white;
  padding: 4rem;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.success-icon { font-size: 4rem; color: var(--gold); margin-bottom: 1.5rem; }
.success-card h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.success-card p { color: var(--text-light); margin-bottom: 1.5rem; }
.success-details {
  background: var(--light-gray);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.detail-row span { color: var(--text-light); }
.success-note { font-size: 0.85rem; margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 0.1em; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4, .footer-contact h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-links a, .footer-contact a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-light);
}
.empty-state i { font-size: 4rem; color: #ddd; margin-bottom: 1.5rem; }
.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.empty-state p { margin-bottom: 2rem; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: white;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  z-index: 9999;
  transition: transform 0.3s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .product-detail-container { grid-template-columns: 1fr; }
  .cart-container { grid-template-columns: 1fr; }
  .checkout-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .hero-circle { display: none; }
}
@media (max-width: 600px) {
  .nav-social { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item-qty, .cart-item-total { display: none; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .payment-methods { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
