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

body {
  font-family: 'Montserrat', sans-serif;
  background: #050505;
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #d4af37;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #d4af37;
}

.hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gold {
  color: #d4af37;
}

.hero p {
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: #e7e7e7;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #d4af37;
  color: #d4af37;
  margin-right: 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #d4af37;
  color: #000;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

.card {
  background: #111;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  padding: 24px;
}

.card h3 {
  margin-bottom: 12px;
  color: #d4af37;
}

.about {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

footer {
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 40px 0;
  text-align: center;
  font-size: 0.95rem;
  color: #c9c9c9;
}

/* PRODUCTS SECTION */
#products {
  padding: 30px 20px;
}

/* CATEGORY CONTAINERS */
#perfumes-container,
#wigs-container,
#bags-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  #perfumes-container,
  #wigs-container,
  #bags-container {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT CARD */
.product-card {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* IMAGE FIX */
.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 15px;
}

/* PRODUCT IMAGE */
..product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
  display: block;
}

/* PRODUCT NAME */
.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

/* PRICE */
.product-card .price {
  font-size: 20px;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 8px;
}

/* CATEGORY */
.product-card .category {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 10px;
}
.category-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  flex-wrap: wrap;
}

.category-nav a {
  text-decoration: none;
  background: #111;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.2s ease;
}

.category-nav a:hover {
  background: #d4af37;
  color: black;
}
/* DESCRIPTION */
.product-card p {
  color: #ddd;
  line-height: 1.5;
  font-size: 15px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
  }

/* Base button style */
.social-btn {
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.2s ease;
}

/* Individual brand styles */
.instagram {
  background: #E1306C;
}

.facebook {
  background: #1877F2;
}

.tiktok {
  background: #000000;
}

.email {
  background: #555;
}

/* Hover effect */
.social-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
    }
