/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 70px; /* Espace pour le header fixe */
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: #2c2c2c;
}

.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #2c2c2c;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #2c2c2c;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #2c2c2c;
  transition: all 0.3s ease;
}

/* Main Content */
main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Slogan Section */
.slogan-section {
  padding: 4rem 0 3rem;
  background: white;
  text-align: center;
}

.slogan {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #555555;
  margin: 0;
  letter-spacing: 2px;
  line-height: 1.5;
  font-style: normal;
}

.slogan br {
  display: block;
  margin: 0.5rem 0;
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 400px;
  overflow: hidden;
  background: #f5f5f5;
}

.banner-image {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  object-position: center;
  display: block;
}


.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid white;
  background: white;
  color: #2c2c2c;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: white;
}

.btn-primary {
  background: #2c2c2c;
  color: white;
  border-color: #2c2c2c;
}

.btn-primary:hover {
  background: transparent;
  color: #2c2c2c;
}

.btn-large {
  width: 100%;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* Sections */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 4rem 0 3rem;
  color: #2c2c2c;
  letter-spacing: 2px;
}

/* Categories */
.categories {
  padding: 4rem 0;
  background: #fafafa;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-content {
  padding: 2rem;
  text-align: center;
}

.category-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: #2c2c2c;
}

.category-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.4rem 0.8rem;
  background: rgba(44, 44, 44, 0.9);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.badge.unique {
  background: rgba(184, 134, 11, 0.9);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #2c2c2c;
  font-weight: 600;
}

.product-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
}

/* Image Placeholder */
.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  color: #999;
}

.placeholder-content svg {
  opacity: 0.5;
  width: 64px;
  height: 64px;
}

.placeholder-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
  padding: 0 1rem;
}

/* Product Page */
.product-page {
  min-height: 100vh;
  padding: 3rem 0;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  min-height: 400px;
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.thumbnail-images {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
  padding: 0;
  transition: border-color 0.3s ease;
}

.thumbnail:hover {
  border-color: #ccc;
}

.thumbnail.active {
  border-color: #2c2c2c;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2c2c2c;
  margin: 0 0 1rem;
  font-weight: 600;
}

.product-price {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0 0 2rem;
}

.product-description {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.product-description p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.size-selection {
  margin-bottom: 2rem;
}

.size-selection h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}

.size-btn {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.size-btn:hover:not(.unavailable):not(:disabled) {
  border-color: #2c2c2c;
  background: #fafafa;
}

.size-btn.active {
  border-color: #2c2c2c;
  background: #2c2c2c;
  color: white;
}

.size-btn.unavailable,
.size-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.size-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.size-stock {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  opacity: 0.8;
}

.size-btn.active .size-stock {
  opacity: 1;
}

/* About Page */
.about-page {
  min-height: 100vh;
  padding: 4rem 0;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #2c2c2c;
  margin: 0 0 0.5rem;
  letter-spacing: 2px;
}

.page-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin: 0;
  font-weight: 300;
  letter-spacing: 1px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin: 0 0 1.5rem;
}

.about-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact Page */
.contact-page {
  min-height: 100vh;
  padding: 4rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #2c2c2c;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c2c2c;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.submit-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.submit-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  background: #fafafa;
  padding: 2rem;
  border-radius: 8px;
}

.info-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2c2c2c;
  margin: 0 0 1rem;
}

.info-block p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin: 0 0 1rem;
}

/* Footer */
.footer {
  background: #2c2c2c;
  color: #f5f5f5;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.footer-section h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #d0d0d0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #d0d0d0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f5f5f5;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #d0d0d0;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .slogan {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    padding: 0 1rem;
  }

  .banner {
    min-height: 300px;
  }
  
  .banner-image img {
    max-height: 70vh;
  }

  .container {
    padding: 0 1.5rem;
  }

  .slogan-section {
    padding: 3rem 0 2rem;
  }

  .section-title {
    font-size: 2rem;
    margin: 3rem 0 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .product-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery {
    position: static;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .sizes-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.8rem;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: -1;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    order: -1;
  }
}

