/* Configuration des fonts personnalisées */
body {
  font-family: "Inter", sans-serif;
}

.font-serif {
  font-family: "Cormorant Garamond", serif;
}

/* Palette de couleurs */
:root {
  /* Palette moderne minimaliste */
  --accent-coral: #ff8b6a;
  --accent-coral-hover: #ff7353;
  --neutral-100: #f8f9fa;
  --neutral-200: #e9ecef;
  --neutral-300: #dee2e6;
  --neutral-800: #1a1a1a;
  --neutral-900: #0a0a0a;

  /* Palette conservée pour compatibilité */
  --sable-doux: #e8e4dc;
  --ocean-calme: #c8d8dc;
  --perle-nacre: #f4f0e8;
  --gris-perle: #d4d0c8;
  --blanc-casse: #fafaf8;
  --terre-sienne: #c8b8a8;
  --bleu-profond: #8ca8b0;

  /* Palette luxury cinématique */
  --champagne-gold: #f4e4c1;
  --ivory-white: #fffef9;
  --rose-gold: #d4af6a;
  --deep-charcoal: #2a2826;
  --warm-beige: #e8dcc4;
  --soft-cream: #faf8f3;
  --elegant-bronze: #c9a876;
  --subtle-shadow: rgba(42, 40, 38, 0.08);
  --luxury-overlay: rgba(42, 40, 38, 0.75);

  /* Couleurs ROSE */
  --rose-primary: #d4738c;
  --rose-light: #f4d4dc;
  --rose-dark: #a84860;
}

/* Line-clamp support */
.line-clamp-2 {
  display: -webkit-box;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


.line-clamp-3 {
  display: -webkit-box;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Aspect-ratio support */
.aspect-\[3\/4\] {
  aspect-ratio: 3 / 4;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

/* Animations pétales */
.petal {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(232, 212, 212, 0.6) 0%, rgba(232, 212, 212, 0) 70%);
  border-radius: 50% 0 50% 0;
  animation: float 15s infinite ease-in-out;
}

.petal-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.petal-2 {
  top: 30%;
  right: 20%;
  animation-delay: 5s;
}

.petal-3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translate(100px, 200px) rotate(180deg);
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
}

/* Animations vagues */
.wave {
  position: absolute;
  width: 100%;
  height: 100px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 228, 232, 0.3) 50%, transparent 100%);
  animation: wave 20s infinite linear;
}

.wave-1 {
  top: 20%;
  animation-delay: 0s;
}

.wave-2 {
  bottom: 30%;
  animation-delay: 10s;
}

@keyframes wave {
  0% {
    transform: translateX(-100%) skewY(-2deg);
  }
  100% {
    transform: translateX(100%) skewY(-2deg);
  }
}

/* Effet de lumière */
.light-effect {
  position: relative;
  overflow: hidden;
}

.light-effect::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: rotate-light 30s infinite linear;
}

@keyframes rotate-light {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Canvas 3D */
.canvas-3d {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 400px !important;
  pointer-events: none;
  z-index: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.canvas-3d-interactive {
  position: relative;
  width: 100%;
  height: 400px;
  cursor: pointer;
}

.bg-3d-container {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.bg-3d-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.bg-3d-container > *:not(canvas) {
  position: relative;
  z-index: 2;
}

/* Effets 3D */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d:hover {
  transform: perspective(1000px) rotateY(5deg) rotateX(2deg) translateZ(20px);
}

.parallax-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.parallax-layer {
  transform: translateZ(0);
  transition: transform 0.3s ease-out;
}

.depth-effect {
  position: relative;
  transform-style: preserve-3d;
}

.depth-effect::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(200, 216, 220, 0.3), rgba(212, 208, 200, 0.3));
  transform: translateZ(-20px);
  border-radius: inherit;
  z-index: -1;
}

@keyframes rotate3d {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}

.rotate-3d-scroll {
  animation: rotate3d 20s linear infinite;
}

@keyframes float3d {
  0%,
  100% {
    transform: perspective(1000px) translateY(0px) translateZ(0px);
  }
  50% {
    transform: perspective(1000px) translateY(-20px) translateZ(20px);
  }
}

.float-3d {
  animation: float3d 6s ease-in-out infinite;
}

.canvas-3d,
.card-3d,
.parallax-3d {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Navigation mobile */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--neutral-200);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0.75rem 0;
  z-index: 50;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.mobile-bottom-nav-item.active {
  color: var(--accent-coral);
}

.mobile-bottom-nav-item svg {
  width: 24px;
  height: 24px;
}

/* Navigation */
.nav-link.active {
  color: #881337;
  border-bottom: 1px solid #fda4af;
}

/* Scroll */
html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: var(--blanc-casse);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--bleu-profond);
}

/* Transitions */
a,
button,
input,
textarea,
select {
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Collections */
.collection-card {
  display: block;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover {
  transform: translateY(-4px);
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Produits modernes */
.modern-product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modern-product-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Boutons */
.btn-primary-modern {
  background: var(--accent-coral);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 139, 106, 0.3);
}

.btn-primary-modern:hover {
  background: var(--accent-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 139, 106, 0.4);
}

.btn-secondary-modern {
  background: transparent;
  color: var(--neutral-800);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--neutral-300);
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary-modern:hover {
  border-color: var(--neutral-800);
  background: var(--neutral-100);
}

/* Hero */
.hero-modern {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-modern h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--neutral-900);
}

.hero-modern p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--neutral-800);
  font-weight: 300;
}

/* Grille produits */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .products-grid-modern {
    gap: 3rem;
  }
}

/* Sélecteurs */
.size-selector-modern,
.color-selector-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid var(--neutral-300);
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.size-selector-modern:hover,
.color-selector-modern:hover {
  border-color: var(--neutral-800);
}

.size-selector-modern.active,
.color-selector-modern.active {
  border-color: var(--accent-coral);
  background: var(--accent-coral);
  color: white;
}

/* Badge */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 139, 106, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-coral);
}

/* Produit 3D */
.product-3d-viewer {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 24px;
  overflow: hidden;
  cursor: grab;
}

.product-3d-viewer:active {
  cursor: grabbing;
}

.rotation-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-800);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Typographie */
.text-display-modern {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.text-heading-modern {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.text-body-modern {
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  color: #666;
}

/* Espacements */
.section-padding-modern {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.container-modern {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* Animations */
.fade-in-up-modern {
  animation: fadeInUpModern 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

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

.scale-in-modern {
  animation: scaleInModern 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: scale(0.9);
}

@keyframes scaleInModern {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .mobile-bottom-nav {
    display: grid;
  }

  body {
    padding-bottom: 80px;
  }

  .hero-modern {
    min-height: 70vh;
    padding: 2rem 1.5rem;
  }

  .products-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .card-3d:hover {
    transform: perspective(1000px) rotateY(2deg) rotateX(1deg) translateZ(10px);
  }

  .canvas-3d-interactive {
    height: 300px;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-section {
    min-height: 85vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .collection-card {
    margin-bottom: 2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  button:active,
  a:active {
    opacity: 0.7;
    transform: scale(0.98);
  }

  .collection-card:active {
    transform: scale(0.98);
  }

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

  .philosophy-image img,
  .craft-item img,
  .material-item img {
    width: 100%;
    border-radius: 0;
  }

  nav {
    padding: 1rem 0;
  }

  nav .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  footer {
    text-align: center;
  }

  footer .grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* Carrousels */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: none;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 0 1rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gris-perle);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.4;
}

.carousel-dot.active {
  background: var(--bleu-profond);
  transform: scale(1.4);
  opacity: 1;
}

.carousel-dot:hover {
  opacity: 0.7;
  transform: scale(1.2);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  .carousel-container {
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }

  .carousel-slide {
    padding: 0 0.5rem;
  }

  .carousel-slide img {
    border-radius: 0;
  }
}

@media (min-width: 768px) {
  .carousel-slide-md {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide-lg {
    min-width: 33.333%;
  }
}

/* Menu mobile */
#mobile-menu {
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#mobile-menu.hidden {
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

#mobile-menu-btn {
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

#mobile-menu-btn:active {
  transform: scale(0.95);
}

/* Fade-in */
.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

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

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, #ff8b6a 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Boutons modernes e-commerce */
.modern-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ff8b6a 0%, #ff6347 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255, 139, 106, 0.3);
  text-decoration: none;
}

.modern-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 139, 106, 0.4);
}

.modern-btn-primary:active {
  transform: translateY(0);
}

.modern-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.modern-btn-secondary:hover {
  border-color: #1a1a1a;
  background: #f9fafb;
}

/* Luxury Hero Section */
.luxury-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--ivory-white) 100%);
}

.luxury-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 4rem 2rem;
}

/* Gradient backgrounds */
.bg-gradient-champagne {
  background: linear-gradient(135deg, #f4e4c1 0%, #fffef9 50%, #faf8f3 100%);
}

/* Cinematic lighting */
.cinematic-lighting {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(244, 228, 193, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(212, 175, 106, 0.2) 0%, transparent 50%);
  animation: rotateLighting 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateLighting {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Luxury Typography */
.luxury-title {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--deep-charcoal);
  margin-bottom: 1.5rem;
}

.luxury-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--deep-charcoal);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
}

.luxury-section-title {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--deep-charcoal);
}

.luxury-section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--deep-charcoal);
  opacity: 0.75;
}

.luxury-section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold);
  background: linear-gradient(135deg, rgba(212, 175, 106, 0.1), rgba(244, 228, 193, 0.1));
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}

/* Luxury Badges */
.luxury-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 106, 0.3);
}

/* Luxury Buttons */
.luxury-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, #1a1816 100%);
  color: var(--ivory-white);
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(42, 40, 38, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.luxury-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(42, 40, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.luxury-btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 228, 193, 0.3), rgba(212, 175, 106, 0.3));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.luxury-btn-primary:hover .luxury-btn-glow {
  opacity: 1;
}

.luxury-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  background: transparent;
  color: var(--deep-charcoal);
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--deep-charcoal);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-btn-secondary:hover {
  background: var(--deep-charcoal);
  color: var(--ivory-white);
}

/* Luxury Scroll Indicator */
.luxury-scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid var(--deep-charcoal);
  border-radius: 20px;
  position: relative;
}

.luxury-scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--deep-charcoal);
  border-radius: 2px;
  animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
  0%,
  20% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* Luxury Animations */
.luxury-fade-in {
  opacity: 0;
  animation: luxuryFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.luxury-stagger-in {
  opacity: 0;
  animation: luxuryStaggerIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Luxury Product Cards */
.luxury-product-card {
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

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

.luxury-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.luxury-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 40, 38, 0.1), rgba(212, 175, 106, 0.1));
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

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

.luxury-card-title {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 0.5rem;
}

.luxury-card-description {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--deep-charcoal);
  opacity: 0.7;
}

.luxury-card-cta {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rose-gold);
  transition: all 0.3s ease;
}

.luxury-product-card:hover .luxury-card-cta {
  color: var(--deep-charcoal);
}

/* Luxury Texture Overlay */
.luxury-texture-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(42, 40, 38, 0.01) 2px,
      rgba(42, 40, 38, 0.01) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(42, 40, 38, 0.01) 2px,
      rgba(42, 40, 38, 0.01) 4px
    );
  pointer-events: none;
  opacity: 0.3;
}

/* Glassmorphism Navigation */
.glassmorphism-nav {
  background: rgba(255, 254, 249, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 40, 38, 0.08);
}

/* Motion Blur Effect */
.motion-blur-effect {
  transition: filter 0.3s ease;
}

.motion-blur-effect:hover {
  filter: blur(2px);
}

/* Responsive */
@media (max-width: 768px) {
  .luxury-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .luxury-subtitle {
    font-size: 1rem;
  }

  .luxury-btn-primary,
  .luxury-btn-secondary {
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }

  .luxury-product-card {
    margin-bottom: 2rem;
  }
}
