/* Hero Section */
.hero {
  height: 85vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700;
  letter-spacing: 8px;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out;
}

.hero-tagline {
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s both;
  margin-bottom: 32px;
}

.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: var(--transition);
  animation: fadeInUp 1s ease-out 0.4s both;
  border: 1px solid #1a1a1a;
}

.btn-hero:hover {
  transform: translateY(-3px);
  background: #f5f5f5;
}

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

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1a1a1a;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.02);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--secondary-color);
  aspect-ratio: 3/4;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  transform: scale(1);
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-quick-view {
  background: white;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .btn-quick-view {
  transform: translateY(0);
}

.product-info {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
  transition: var(--transition);
}

.product-card:hover .product-info h3 {
  color: #1a1a1a;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
  flex-wrap: wrap;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.price-original {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
}

.product-info .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.discount-badge {
  display: inline-block;
  background: #4caf50;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}

.btn-add-cart {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: scale(0.8);
  white-space: nowrap;
}

.product-card:hover .btn-add-cart {
  opacity: 1;
  transform: scale(1);
}

.btn-add-cart:hover {
  background: #333;
  transform: scale(1.05);
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.section-title p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
  }

  .product-info {
    padding: 16px;
  }
}
  