:root {
  --noir: #000000;
  --nude: #D4B5A0;
  --nude-light: #E8D5C4;
  --nude-dark: #B89968;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --text-dark: #2C2C2C;
  --text-light: #666666;
}

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

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar {
  background-color: var(--noir);
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}

.main-nav {
  background-color: var(--white);
  border-bottom: 1px solid #E0E0E0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--noir);
  text-decoration: none;
  letter-spacing: 3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--nude-dark);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.nav-icons {
  display: flex;
  gap: 20px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--noir);
  position: relative;
  transition: color 0.3s;
}

.icon-btn:hover {
  color: var(--nude-dark);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--noir);
  color: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--noir);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.search-overlay.active {
  display: flex;
}

.search-container {
  position: relative;
  width: 90%;
  max-width: 600px;
}

.search-input {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  border: none;
  background: var(--white);
}

.close-search {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--text-dark);
}

.hero-banner {
  background: linear-gradient(135deg, var(--noir) 0%, var(--nude-dark) 100%);
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
}

.banner-title {
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.banner-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.promo-code {
  display: inline-block;
  background: var(--nude);
  color: var(--noir);
  padding: 15px 30px;
  margin: 20px 0;
  font-size: 18px;
  font-weight: bold;
}

.promo-code span {
  color: var(--noir);
  font-size: 24px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--noir);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--nude-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--noir);
  border: 2px solid var(--noir);
}

.btn-secondary:hover {
  background: var(--noir);
  color: var(--white);
}

.gender-section {
  padding: 60px 0;
}

.gender-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gender-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  height: 500px;
}

.gender-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: grayscale(20%);
}

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

.gender-card h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  letter-spacing: 3px;
  z-index: 1;
}

.gender-card button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.featured-products, .products-section {
  padding: 80px 0;
  background: var(--gray);
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  letter-spacing: 2px;
  color: var(--noir);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card a {
  text-decoration: none;
  color: inherit;
}

.product-image {
  position: relative;
  overflow: hidden;
  padding-top: 125%;
  background: var(--gray);
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.badge-sale {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--noir);
  color: var(--white);
  padding: 5px 15px;
  font-size: 12px;
  letter-spacing: 1px;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: var(--noir);
}

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

.site-footer {
  background: var(--noir);
  color: var(--nude-light);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--nude-light);
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nude-dark);
  border-radius: 50%;
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--nude);
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  background: var(--nude-dark);
  color: var(--white);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--nude);
  color: var(--noir);
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--nude-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 181, 160, 0.2);
  flex-wrap: wrap;
  gap: 20px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-methods img {
  height: 25px;
}

.page-header {
  background: var(--nude-light);
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  z-index: 2001;
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
}

.cart-overlay.active {
  display: block;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.cart-header h3 {
  font-size: 24px;
  color: var(--noir);
}

.close-cart {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-light);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--noir);
}

.cart-item-info p {
  color: var(--text-light);
  font-size: 14px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-actions button {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: var(--white);
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-actions span {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

.cart-footer {
  padding: 20px;
  border-top: 2px solid #e0e0e0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  color: var(--noir);
}

@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .cart-sidebar.active {
    right: 0;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 40px;
    transition: left 0.3s;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .gender-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}