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

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8960C;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow: 0 0 20px rgba(212,175,55,0.3);
  --glow-strong: 0 0 40px rgba(212,175,55,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.footer { margin-top: auto; }

a { text-decoration: none; color: var(--gold); transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(0,0,0,0.95); box-shadow: 0 2px 30px rgba(0,0,0,0.8); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--white); font-size: 0.85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2px; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cart { position: relative; cursor: pointer; }
.nav-cart svg { width: 24px; height: 24px; stroke: var(--white); fill: none; transition: var(--transition); }
.nav-cart:hover svg { stroke: var(--gold); }
.cart-count {
  position: absolute; top: -8px; right: -10px; background: var(--gold);
  color: var(--black); font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; padding: 0 24px; }
.hero-badge {
  display: inline-block; font-size: 0.75rem; letter-spacing: 6px;
  text-transform: uppercase; color: var(--gold); border: 1px solid rgba(212,175,55,0.3);
  padding: 8px 24px; margin-bottom: 24px;
  animation: fadeInDown 1s ease;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.1rem; color: var(--gray-light); max-width: 560px;
  margin: 0 auto 36px; animation: fadeInUp 1s ease 0.4s both;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease 0.6s both; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; border-radius: 2px;
  cursor: pointer; transition: var(--transition); border: none; font-family: var(--sans);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}
.btn-gold:hover { box-shadow: var(--glow-strong); transform: translateY(-2px); color: var(--black); }
.btn-outline {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); box-shadow: var(--glow); }

/* ── SECTION COMMON ── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block; font-size: 0.7rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 16px;
}
.section-title .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-desc { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1rem; }
.section-dark { background: var(--dark); }
.section-darker { background: var(--dark-2); }

/* ── PRODUCT CARD ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.product-card {
  background: var(--dark-2); border: 1px solid rgba(212,175,55,0.08);
  border-radius: 4px; overflow: hidden; transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.25); box-shadow: var(--glow); }
.product-card-img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-img-wrap { overflow: hidden; position: relative; }
.product-card-badge {
  position: absolute; top: 12px; left: 12px; background: var(--gold);
  color: var(--black); font-size: 0.65rem; font-weight: 700;
  padding: 4px 12px; text-transform: uppercase; letter-spacing: 1px;
}
.product-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card-category { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.product-card-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.product-card-desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 14px; line-height: 1.5; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; word-wrap: break-word; }
.product-card-footer { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: auto; padding-top: 14px; }
.product-card-price { font-size: 1.15rem; font-weight: 700; color: var(--gold); text-align: center; line-height: 1.3; }
.product-card-price-old { text-decoration: line-through; color: var(--gray); font-size: 0.82rem; font-weight: 400; margin-left: 6px; }
.btn-add {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  padding: 10px 24px; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 1px; cursor: pointer; transition: var(--transition);
  font-family: var(--sans); border-radius: 2px; width: 100%; text-align: center;
}
.btn-add:hover { background: var(--gold); color: var(--black); }

/* ── CATEGORY CARDS ── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.category-card {
  position: relative; height: 340px; border-radius: 4px; overflow: hidden;
  cursor: pointer; border: 1px solid rgba(212,175,55,0.08);
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.category-card:hover img { transform: scale(1.1); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  transition: var(--transition);
}
.category-card:hover .category-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%); }
.category-card-name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 4px;
}
.category-card-count { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
.category-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: var(--transition);
}
.category-card:hover::after { width: 100%; }

/* ── COLLECTIONS ── */
.collection-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 30px; }
.collection-card {
  background: var(--dark-2); border: 1px solid rgba(212,175,55,0.1);
  border-radius: 4px; overflow: hidden; transition: var(--transition);
}
.collection-card:hover { border-color: rgba(212,175,55,0.3); box-shadow: var(--glow); }
.collection-card img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.6s ease; }
.collection-card:hover img { transform: scale(1.03); }
.collection-card-body { padding: 28px; }
.collection-card-title { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 10px; }
.collection-card-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 4px; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-img::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(212,175,55,0.2); border-radius: 4px;
  pointer-events: none;
}
.about-text h2 { font-family: var(--serif); font-size: 2.2rem; margin-bottom: 20px; }
.about-text p { color: var(--gray-light); margin-bottom: 16px; line-height: 1.8; }
.about-stats { display: flex; gap: 40px; margin-top: 32px; }
.about-stat-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.about-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; }
.testimonial-card {
  background: var(--dark-2); border: 1px solid rgba(212,175,55,0.08);
  padding: 36px; border-radius: 4px; position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: var(--serif); font-size: 5rem;
  color: rgba(212,175,55,0.15); position: absolute; top: 10px; left: 20px; line-height: 1;
}
.testimonial-text { font-style: italic; color: var(--gray-light); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.8; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; color: var(--black); font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.75rem; color: var(--gold); }

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(212,175,55,0.1); border-radius: 4px;
  padding: 60px; text-align: center; margin: 0 auto; max-width: 700px;
}
.newsletter h3 { font-family: var(--serif); font-size: 2rem; margin-bottom: 12px; }
.newsletter p { color: var(--gray); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; background: var(--dark); border: 1px solid rgba(212,175,55,0.2);
  color: var(--white); font-family: var(--sans); font-size: 0.9rem; border-radius: 2px; outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 20px; }
.contact-info p { color: var(--gray-light); margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px; border: 1px solid rgba(212,175,55,0.2);
  border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.contact-item-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 4px; }
.contact-item-value { color: var(--gray-light); font-size: 0.9rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }
.form-group input, .form-group textarea {
  padding: 14px 18px; background: var(--dark-2); border: 1px solid rgba(212,175,55,0.15);
  color: var(--white); font-family: var(--sans); font-size: 0.9rem; border-radius: 2px; outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 10px rgba(212,175,55,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
.footer { border-top: 1px solid rgba(212,175,55,0.1); padding: 40px 0 20px; background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 24px; }
.footer-brand .nav-logo { margin-bottom: 12px; display: inline-block; }
.footer-brand .nav-logo img { height: 36px; }
.footer-brand p { color: var(--gray); font-size: 0.8rem; line-height: 1.6; max-width: 260px; }
.footer h4 {
  font-family: var(--serif); font-size: 0.9rem; margin-bottom: 14px;
  color: var(--gold); letter-spacing: 1px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 6px; }
.footer ul a { color: var(--gray); font-size: 0.8rem; }
.footer ul a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-link {
  width: 34px; height: 34px; border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); }
.social-link svg { width: 14px; height: 14px; fill: var(--gold); transition: var(--transition); }
.social-link:hover svg { fill: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.08); padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--gray);
}
.payment-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay-icon {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px; overflow: hidden; line-height: 0;
  opacity: 0.7; transition: var(--transition); cursor: default;
}
.pay-icon:hover { opacity: 1; transform: translateY(-1px); }
.pay-icon svg { display: block; }
/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── CART SIDEBAR ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 400px; height: 100vh;
  background: var(--dark); border-left: 1px solid rgba(212,175,55,0.15);
  z-index: 2001; transition: right 0.4s ease; display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid rgba(212,175,55,0.1); }
.cart-header h3 { font-family: var(--serif); font-size: 1.3rem; }
.cart-close { background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-item { display: flex; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--gold); }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-item-qty button { width: 28px; height: 28px; background: var(--dark-3); border: 1px solid rgba(212,175,55,0.15); color: var(--white); cursor: pointer; border-radius: 2px; font-size: 0.9rem; }
.cart-item-qty span { font-size: 0.85rem; }
.cart-footer { padding: 24px; border-top: 1px solid rgba(212,175,55,0.1); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 1.1rem; font-weight: 600; }
.cart-total span:last-child { color: var(--gold); }
.cart-empty { text-align: center; color: var(--gray); padding: 60px 0; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── GOLD DIVIDER ── */
.gold-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 0 auto 24px; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 140px 0 60px; text-align: center;
  background: linear-gradient(to bottom, rgba(10,10,10,0.85), rgba(0,0,0,0.95)), url('../images/hero.png') center/cover no-repeat;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.page-header h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px; }
.page-header p { color: var(--gray); }
.breadcrumb { display: flex; gap: 8px; justify-content: center; margin-top: 16px; font-size: 0.8rem; }
.breadcrumb a { color: var(--gray); }
.breadcrumb span { color: var(--gold); }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
}

/* ── Shop Layout ── */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
.shop-sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-section { margin-bottom: 32px; }
.sidebar-section h4 { font-family: var(--serif); font-size: 1rem; margin-bottom: 16px; color: var(--white); }
.sidebar-section ul { list-style: none; }
.sidebar-section li { margin-bottom: 8px; }
.sidebar-filter { cursor: pointer; font-size: 0.85rem; color: var(--gray-light); transition: var(--transition); display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; border-radius: 4px; border: 1px solid transparent; }
.sidebar-filter:hover { color: var(--gold); background: rgba(212,175,55,0.05); }
.sidebar-filter.active { color: var(--gold); background: rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.15); font-weight: 600; }
.sort-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(212,175,55,0.08); }
.sort-bar span { font-size: 0.85rem; color: var(--gray); }
.sort-bar select { background: var(--dark-2); color: var(--gray-light); border: 1px solid rgba(212,175,55,0.15); padding: 8px 16px; font-family: var(--sans); font-size: 0.8rem; border-radius: 4px; cursor: pointer; outline: none; }
.sort-bar select:focus { border-color: var(--gold); }
@media(max-width: 768px) {
  .nav-links { position: fixed; top: 80px; left: 0; width: 100%; background: rgba(0,0,0,0.95); flex-direction: column; align-items: center; padding: 32px 0; gap: 20px; transform: translateY(-120%); transition: var(--transition); border-bottom: 1px solid rgba(212,175,55,0.1); }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 36px 24px; }
  .newsletter-form { flex-direction: column; }
  .cart-sidebar { width: 100%; right: -100%; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
}
@media(max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
