/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f0f0f;
  --bg-soft: #1a1a1a;
  --bg-card: #222;
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --accent: #c9a227;          /* gold */
  --accent-hover: #e0b830;
  --whatsapp: #25D366;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo span { color: var(--accent); }

.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav a:hover { color: var(--accent); }

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

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(135deg, rgba(15,15,15,0.75) 0%, rgba(15,15,15,0.55) 100%),
    url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  padding-top: 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.12), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 4rem 0;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--accent); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #111;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,162,39,0.35);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== Collections ===== */
.collections {
  padding: 6rem 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.6rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-header.light h2,
.section-header.light p { color: #fff; }
.section-header.light p { opacity: 0.8; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.collection-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.collection-card:hover .card-img { transform: scale(1.05); }

.card-img.men {
  background-image: url('https://images.unsplash.com/photo-1617137968427-85924c800a22?auto=format&fit=crop&w=600&q=80');
}
.card-img.accessories {
  background-image: url('https://images.unsplash.com/photo-1553062407-98eeb64c6a62?auto=format&fit=crop&w=600&q=80');
}

.card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}
.card-link:hover { color: var(--accent-hover); }

/* ===== About ===== */
.about {
  padding: 6rem 0;
  background: var(--bg-soft);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 1.2rem;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-text strong { color: var(--text); }

.about-points {
  margin-top: 1.5rem;
}
.about-points li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}
.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.about-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  color: var(--accent);
}
.location {
  display: flex;
  gap: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.location svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.social-link:hover { color: var(--accent); }
.social-link svg { color: #1877F2; }

/* ===== Contact ===== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(160deg, #1a1508 0%, #0f0f0f 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition), border-color var(--transition);
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,162,39,0.35);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
}
.contact-icon.whatsapp { background: rgba(37,211,102,0.15); color: var(--whatsapp); }
.contact-icon.email { background: rgba(201,162,39,0.15); color: var(--accent); }
.contact-icon.facebook { background: rgba(24,119,242,0.15); color: #1877F2; }

.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.contact-card .cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== Footer ===== */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo { margin-bottom: 0.8rem; display: inline-block; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.2rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: #666;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 99;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.whatsapp-float:active { transform: scale(0.96); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--bg-soft);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle { display: flex; }

  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin-inline: auto; }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ===== Extra: two-col collections ===== */
.collection-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-inline: auto;
}
.center-btn {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== Gallery / Picture Section ===== */
.gallery {
  padding: 6rem 0;
  background: var(--bg-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  height: 240px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-item.g1 { background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=600&q=80'); }
.gallery-item.g2 { background-image: url('https://images.unsplash.com/photo-1617137968427-85924c800a22?auto=format&fit=crop&w=600&q=80'); }
.gallery-item.g3 { background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=600&q=80'); }
.gallery-item.g4 { background-image: url('https://images.unsplash.com/photo-1553062407-98eeb64c6a62?auto=format&fit=crop&w=600&q=80'); }
.gallery-item.g5 { background-image: url('https://images.unsplash.com/photo-1583743814966-8936f5b7be1a?auto=format&fit=crop&w=600&q=80'); }
.gallery-item.g6 { background-image: url('https://images.unsplash.com/photo-1594938298603-c8148c4dae35?auto=format&fit=crop&w=600&q=80'); }

/* ===== Products Page ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1a1508 0%, #0f0f0f 100%);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.6rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.products-section {
  padding: 4rem 0 6rem;
}

.product-category {
  margin-bottom: 4rem;
}
.category-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1rem;
}
.category-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}
.category-header p {
  color: var(--text-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.04);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.2rem 1.3rem 1.4rem;
}
.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}

.btn-sm {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--accent);
  color: #111;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background var(--transition);
}
.btn-sm:hover {
  background: var(--accent-hover);
}

.order-note {
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.order-note p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.nav a.active {
  color: var(--accent);
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .collection-grid.two-col {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Product Detail Page ===== */
.product-detail {
  padding: 120px 0 5rem;
}
.back-link {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.back-link:hover { color: var(--accent); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}
.detail-image {
  height: 480px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.detail-category {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.detail-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.8rem;
}
.detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.detail-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.detail-features {
  margin-bottom: 2rem;
}
.detail-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.detail-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.suggested {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 3rem;
}
.suggested h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
  text-align: center;
}
.suggested .product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .detail-image {
    height: 320px;
  }
}

/* Product cards as links */
a.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.product-card .btn-sm {
  pointer-events: none;
}
