/* Modern Variables & Reset */
:root {
  --primary-color: #2b2b2b;
  --secondary-color: #C0A080; /* Elegant soft gold/beige */
  --bg-color: #FAFAF8; /* Soft pearl background */
  --text-main: #333333;
  --text-muted: #777777;
  --white: #ffffff;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; color: var(--primary-color); }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

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

/* Navigation - Glassmorphism */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span {
  color: var(--secondary-color);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
}

.icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.icon:hover {
  transform: scale(1.1);
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* Categories Section */
.categories {
  padding: 5rem 5%;
  text-align: center;
}

.section-title {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  position: relative;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.5rem;
}

.category-title {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card:hover .category-title {
  transform: translateY(-10px);
  color: var(--secondary-color);
}

/* Bestsellers */
.bestsellers {
  padding: 5rem 5%;
  background-color: var(--white);
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  text-align: left;
  transition: var(--transition-smooth);
}

.product-image {
  width: 100%;
  height: 380px;
  background-color: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.add-to-cart {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--primary-color);
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border-top: 1px solid #eee;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card:hover .add-to-cart {
  bottom: 0;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-info h4 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h5 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.footer-col p, .footer-col a {
  color: #aaaaaa;
  margin-bottom: 0.8rem;
  display: block;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #777;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 2.5rem; }
  .nav-links { display: none; } /* Could add hamburger menu for a full app */
}
