@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-elevated: #1c1c1c;
  --gold-primary: #c9a84c;
  --gold-light: #e2c06b;
  --gold-dark: #a07c30;
  --gold-glow: rgba(201,168,76,0.2);
  --text-primary: #f5f0e8;
  --text-secondary: #8a8070;
  --text-muted: #4a4540;
  --border-subtle: rgba(201,168,76,0.15);
  --border-gold: rgba(201,168,76,0.4);
  --success: #4a9c6f;
  --danger: #9c4a4a;
  --warning: #c9a84c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background-color: var(--bg-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%230a0a0a'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23c9a84c' fill-opacity='0.03'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23c9a84c' fill-opacity='0.03'/%3E%3C/svg%3E"), radial-gradient(ellipse at 15% 40%, rgba(201,168,76,0.04) 0%, transparent 55%), radial-gradient(ellipse at 85% 70%, rgba(201,168,76,0.03) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--gold-primary);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.price-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--gold-primary);
  font-size: 1.3rem;
}

.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold-primary);
  margin: 1rem auto;
  animation: expandLine 1s ease forwards;
}

.gold-line.left {
  margin-left: 0;
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 40px; }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.section {
  animation: slideInUp 0.8s ease forwards;
}

.section:nth-child(even) {
  animation-delay: 0.1s;
}

.product-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.15);
}

.btn-primary {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.nav-menu a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

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

.mobile-menu {
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

input, select, textarea {
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201, 168, 76, 0.15);
}

.faq-question {
  transition: all 0.3s ease;
}

.faq-question:hover {
  padding-left: 10px;
}

.faq-answer {
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.testimonial-card {
  transition: all 0.4s ease;
}

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

.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

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

.footer-social a {
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--gold-primary);
}

.hero-content {
  animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
  animation: slideInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-content .hero-subtitle {
  animation: slideInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-content .gold-line {
  animation: expandLine 1s ease 0.6s forwards;
}

.hero-content .btn-primary {
  animation: slideInUp 1s ease 0.8s forwards;
  opacity: 0;
}

.product-image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-image {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-prev, .gallery-next {
  transition: all 0.3s ease;
}

.gallery-prev:hover, .gallery-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.gallery-dot {
  transition: all 0.3s ease;
}

.radio-card {
  transition: all 0.3s ease;
}

.radio-card:hover {
  transform: translateY(-2px);
}

.status-badge {
  transition: all 0.3s ease;
}

.admin-card {
  transition: all 0.3s ease;
}

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

.admin-table tr {
  transition: background 0.3s ease;
}

.admin-table tr:hover {
  background: var(--bg-elevated);
}

.action-btn {
  transition: all 0.3s ease;
}

.action-btn:hover {
  transform: translateY(-2px);
}

.story-stats .stat-item {
  animation: slideInUp 0.8s ease forwards;
  opacity: 0;
}

.story-stats .stat-item:nth-child(1) { animation-delay: 0.2s; }
.story-stats .stat-item:nth-child(2) { animation-delay: 0.4s; }
.story-stats .stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.loading-spinner {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer {
  background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.top-bar {
  background: var(--bg-secondary);
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-subtle);
}

.top-bar-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.8rem;
  letter-spacing: 8px;
  color: var(--gold-primary);
  text-decoration: none;
}

.nav-logo:hover {
  color: var(--gold-light);
}

.nav-tagline {
  font-family: 'Jost', sans-serif;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-align: center;
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-menu a:hover {
  color: var(--gold-primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 2000;
  padding: 2rem;
  transition: right 0.3s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 3rem;
}

.mobile-menu li {
  margin-bottom: 1.5rem;
}

.mobile-menu a {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 20px;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero .gold-line {
  margin: 1.5rem auto;
}

.btn-primary {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--bg-primary);
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
}

.btn-primary:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold-primary);
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

.values-bar {
  background: var(--bg-secondary);
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.values-bar ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
}

.values-bar li {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--gold-primary);
  white-space: nowrap;
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 6px;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.category-card.active {
  border-color: var(--gold-primary);
  background: var(--bg-elevated);
}

.category-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.category-name {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.products-section {
  background: var(--bg-secondary);
}

.search-filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.search-input {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.product-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

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

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

.product-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bg-elevated);
  padding: 4px 10px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.product-info {
  padding: 1rem;
}

.product-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.product-name {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.product-price::after {
  content: ' DA';
  font-size: 0.8rem;
  font-weight: 400;
}

.product-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.product-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
}

.story-section {
  background: var(--bg-secondary);
  text-align: center;
}

.story-content {
  max-width: 700px;
  margin: 0 auto;
}

.story-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 2rem 0;
}

.story-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-primary);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.testimonials-section {
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--gold-primary);
  line-height: 1;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin: 1rem 0;
  line-height: 1.7;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-top: 1rem;
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold-primary);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 0.95rem;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.faq-icon {
  color: var(--gold-primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding-bottom: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 8px;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer .gold-line {
  margin: 1.5rem auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.footer-social a:hover {
  color: var(--gold-primary);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-menu-btn {
    display: block;
  }

  .hero {
    min-height: 85vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .values-bar ul {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .values-bar li {
    flex-shrink: 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .search-filter-bar {
    flex-direction: column;
  }

  .search-input {
    max-width: none;
  }

  .story-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .hero {
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

input::placeholder {
  color: var(--text-muted);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px !important;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

.product-not-found {
  text-align: center;
  padding: 4rem 2rem;
}

.product-not-found h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.loading {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.error-message {
  background: rgba(156, 74, 74, 0.1);
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.success-message {
  background: rgba(74, 156, 111, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.product-page {
  padding: 2rem 0 4rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb span:last-child {
  color: var(--gold-primary);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1rem;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

.gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: var(--gold-primary);
}

.product-detail-info {
  padding: 1rem 0;
}

.product-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.product-detail-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.3;
}

.product-detail-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin: 1.5rem 0;
}

.product-detail-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 1rem 0 2rem;
}

.order-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  margin-top: 2rem;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.radio-card {
  cursor: pointer;
}

.radio-card input {
  display: none;
}

.radio-content {
  display: block;
  padding: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.radio-card input:checked + .radio-content {
  border-color: var(--gold-primary);
  background: var(--bg-secondary);
}

.radio-title {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.price-summary {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  margin: 1.5rem 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-row.total {
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-primary);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.submit-btn small {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.product-description {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.product-description h2 {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 6px;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.description-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.similar-products {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.order-success {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 500px;
}

.success-checkmark {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-checkmark::before {
  content: '✓';
  font-size: 3rem;
  color: var(--gold-primary);
  animation: fadeInUp 0.5s ease 0.3s forwards;
  opacity: 0;
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.success-message {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.order-ref {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-primary);
  letter-spacing: 3px;
  margin-bottom: 2rem;
  display: block;
}

.admin-body {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 250px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.admin-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 6px;
  color: var(--gold-primary);
  text-align: center;
  padding: 0 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}

.admin-nav {
  list-style: none;
}

.admin-nav li {
  margin-bottom: 0.3rem;
}

.admin-nav a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
  color: var(--gold-primary);
  background: var(--bg-card);
  border-left-color: var(--gold-primary);
}

.admin-nav .logout {
  color: var(--danger);
  margin-top: 2rem;
}

.admin-main {
  flex: 1;
  margin-left: 250px;
  padding: 2rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
}

.admin-card-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.admin-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.admin-table {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-table th {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

.admin-table td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.admin-table tr:hover td {
  background: var(--bg-elevated);
}

.status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 1px;
  border-radius: 3px;
}

.status-en_attente { background: rgba(201, 168, 76, 0.2); color: var(--warning); }
.status-confirmee { background: rgba(74, 156, 111, 0.2); color: var(--success); }
.status-en_livraison { background: rgba(74, 144, 226, 0.2); color: #4a90e2; }
.status-livree { background: rgba(74, 156, 111, 0.3); color: var(--success); }
.status-annulee { background: rgba(156, 74, 74, 0.2); color: var(--danger); }
.status-retournee { background: rgba(156, 74, 74, 0.3); color: var(--danger); }

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-box {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
}

.login-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  letter-spacing: 6px;
  color: var(--gold-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.login-form .form-group {
  margin-bottom: 1rem;
}

.login-form input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1rem;
}

.login-form input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.login-form button {
  width: 100%;
  padding: 14px;
  background: var(--gold-primary);
  border: none;
  color: var(--bg-primary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background: var(--gold-light);
}

.admin-section {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.admin-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.action-btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.action-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.action-btn.danger:hover {
  border-color: var(--danger);
  color: var(--danger);
}

@media (max-width: 768px) {
  .admin-sidebar {
    width: 100%;
    position: relative;
    height: auto;
  }
  
  .admin-main {
    margin-left: 0;
  }
  
  .admin-table {
    font-size: 0.8rem;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 0.5rem;
  }
}