/* Fashion Theme Styles for fashion-1.space.pro.vn */

:root {
  --primary-color: #d4af37;
  --secondary-color: #2c2c2c;
  --accent-color: #f8f8f8;
  --text-color: #333;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Inter', sans-serif;
  --gold-gradient: linear-gradient(135deg, #d4af37, #f4e4a6);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1.3;
}

/* Header Styles */
.fashion-header {
  background: white;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fashion-header a:hover {
  color: var(--primary-color) !important;
}

.header-icon:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.fashion-hero {
  background-attachment: fixed;
}

.fashion-hero a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Button Styles */
.btn-add-to-cart {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.btn-add-to-cart:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Card Hover Effects */
.featured-collections > div > div > div:hover,
.featured-products > div > div > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.featured-products img:hover {
  transform: scale(1.05);
}

.features-section > div > div > div:hover {
  transform: translateY(-5px);
}

/* Newsletter Section */
.newsletter-section input {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.newsletter-section input:focus {
  outline: none;
  background: rgba(255,255,255,0.2);
  border-color: var(--primary-color);
}

.newsletter-section input::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-section button:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

/* Footer Styles */
.fashion-footer {
  background: var(--secondary-color);
  color: #d1d5db;
}

.fashion-footer a:hover {
  color: var(--primary-color) !important;
}

.social-links a:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Product Cards */
.product-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Collection Cards */
.collection-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  
  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .site-logo h1 {
    font-size: 1.5rem;
  }
  
  .site-logo p {
    font-size: 0.7rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content > div {
    flex-direction: column;
    justify-content: center;
  }
  
  .newsletter-section > div > div {
    flex-direction: column;
  }
  
  .newsletter-section button {
    white-space: normal;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem !important;
  }
  
  .features-section h2,
  .featured-collections h2,
  .featured-products h2,
  .newsletter-section h2 {
    font-size: 2rem !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }

/* Print styles */
@media print {
  .header-actions,
  .newsletter-section,
  .btn-add-to-cart {
    display: none !important;
  }
}