/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: #000;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #fff;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  animation: slide-down 0.6s ease both;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
}

.announcement-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-content svg {
  flex-shrink: 0;
}

.announcement-content .separator {
  opacity: 0.5;
  font-size: 10px;
}


/* Header */
.site-header {
  position: fixed;
  top: 43px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 18px 32px;
  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
  animation: slide-down 0.8s ease both 0.2s;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  animation: slide-from-left 1s ease both 0.2s;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1.5px solid #000;
  border-radius: 8px;
  animation: logo-color-change 6s ease-in-out infinite;
}

.brand-mark svg {
  width: 18px;
  height: 18px;
  fill: #000;
  animation: logo-color-change 6s ease-in-out infinite;
}

.brand-text {
  animation: logo-color-change 6s ease-in-out infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}

.nav-link:nth-child(1) {
  animation: fade-in-up 0.6s ease both 0.3s;
}

.nav-link:nth-child(2) {
  animation: fade-in-up 0.6s ease both 0.4s;
}

.nav-link:nth-child(3) {
  animation: fade-in-up 0.6s ease both 0.5s;
}

.nav-link:nth-child(4) {
  animation: fade-in-up 0.6s ease both 0.6s;
}

.nav-link {
  position: relative;
  padding-bottom: 6px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  animation: slide-from-right 1s ease both 0.3s;
}

.icon-btn {
  border: 1.5px solid #000;
  background: transparent;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

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

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.toast {
  background: #000;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1.5px solid #000;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 6px;
  transition: all 0.3s ease;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 380px);
  height: 100vh;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav.open {
  right: 0;
}

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

.mobile-nav-header .brand-text {
  font-weight: 800;
  font-size: 18px;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.mobile-nav-links {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.mobile-nav-link {
  display: block;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #f9f9f9;
  color: #000;
  border-left-color: #000;
}

.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s ease;
}

.mobile-nav-cta:hover {
  background: #333;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 32px;
  margin-top: 80px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.9;
  animation: fade-in-up 0.8s ease both 0.5s;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  margin: 0 0 20px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
  animation: fade-in-up 0.8s ease both 0.7s;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  margin: 0 0 36px;
  max-width: 520px;
  line-height: 1.6;
  opacity: 0.92;
  animation: fade-in-up 0.8s ease both 0.9s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease both 1.1s;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  opacity: 0.6;
  animation: hero-bounce 2s ease-in-out infinite 2s;
}

.hero-scroll-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Trust Badges */
.trust-badges {
  padding: 48px 32px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 24px 16px;
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.trust-item:hover .trust-icon {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.trust-icon svg {
  color: #000;
}

.trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #000;
}

.trust-item p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* Categories */
.categories {
  padding: 80px 32px 100px;
  background: #fff;
}

.section-header {
  max-width: 1280px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.category-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 550px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  scroll-margin-top: 140px;
  opacity: 0;
  transform: translateX(-100px);
}

.category-card.animate-in {
  animation: slide-in-view 0.8s ease forwards;
}

.category-card:nth-child(1) {
  transform: translateX(-120px);
}

.category-card:nth-child(2) {
  transform: translateX(120px);
}

.category-card:nth-child(3) {
  transform: translateX(-120px);
}

.category-card:nth-child(4) {
  transform: translateX(120px);
}

.category-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.category-overlay span {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.category-overlay::after {
  content: 'Voir plus →';
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

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

.category-card:hover .category-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.category-card:hover .category-overlay span {
  transform: translateY(-8px);
}

.category-card:hover .category-overlay::after {
  opacity: 1;
  transform: translateY(0);
}

.category-card:target {
  outline: 3px solid #000;
  transform: translateY(-12px) scale(1.02);
}

/* Bannière pleine largeur */
.category-card.full-width-banner {
  grid-column: 1 / -1;
  min-height: 400px;
  max-height: 600px;
}

.category-card.full-width-banner img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 760px) {
  .category-card.full-width-banner {
    min-height: 300px;
  }
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Animations d'entrée */
@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-from-left {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-from-right {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-color-change {
  0%, 100% {
    color: #000;
    border-color: #000;
    fill: #000;
  }
  33% {
    color: #fff;
    border-color: #fff;
    fill: #fff;
  }
  66% {
    color: #d4af37;
    border-color: #d4af37;
    fill: #d4af37;
  }
}

@keyframes slide-in-view {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* (promo-banner removed) */

/* Responsive */
@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .main-nav {
    justify-content: center;
    gap: 18px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 20px;
  }
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .main-nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .header-actions {
    gap: 8px;
  }
  .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .icon-btn svg {
    width: 18px;
    height: 18px;
  }
  .hero-content {
    margin-top: 60px;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .hero-scroll-indicator {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .trust-badges {
    padding: 32px 20px;
  }
  .trust-item {
    padding: 16px 8px;
  }
  .trust-icon {
    width: 52px;
    height: 52px;
  }
  .trust-icon svg {
    width: 24px;
    height: 24px;
  }
  .trust-item h4 {
    font-size: 13px;
  }
  .trust-item p {
    font-size: 12px;
  }
  .categories {
    padding: 60px 20px 90px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
}

@keyframes slide-in {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Marquee minimal */
.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  margin: 0;
}

.marquee-minimal {
  background: #000;
  border: none;
  box-shadow: none;
}

.marquee-content {
  display: flex;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

.marquee-text {
  display: inline-flex;
  white-space: nowrap;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.marquee-minimal .marquee-text {
  color: rgba(255, 255, 255, 0.7);
}

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

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

/* Value Strip */
.value-strip {
  padding: 80px 32px;
  background: #fff;
}

.value-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.value-col {
  flex: 1;
  text-align: center;
  padding: 20px 32px;
}

.value-number {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #000;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.value-label {
  display: block;
  font-size: 13px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.value-divider {
  width: 1px;
  height: 60px;
  background: #e0e0e0;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .marquee-text {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .value-strip {
    padding: 48px 20px;
  }

  .value-strip-inner {
    flex-wrap: wrap;
    gap: 0;
  }

  .value-col {
    flex: 0 0 50%;
    padding: 20px 16px;
  }

  .value-divider {
    display: none;
  }

  .value-number {
    font-size: 1.6rem;
  }
}

/* Section Headers */
.section-header-center {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 12px 0 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #666;
  margin: 0;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* Bestsellers Section */
.bestsellers {
  padding: 100px 32px;
  background: #fafafa;
}

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.product-image {
  position: relative;
  padding-top: 133%;
  overflow: hidden;
  background: #f5f5f5;
}

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

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.new {
  background: #0066ff;
}

.product-badge.sale {
  background: #ff3333;
}

.product-quick-view {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-quick-view {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #000;
}

.product-category {
  font-size: 14px;
  color: #999;
  margin: 0 0 12px 0;
}

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

.price-current {
  font-size: 20px;
  font-weight: 800;
  color: #000;
}

.price-original {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-large:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* (split-banner and new-collection removed) */

/* Testimonials */
.testimonials {
  padding: 100px 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 24px 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 4px 0;
  color: #000;
}

.author-location {
  font-size: 14px;
  color: #999;
  margin: 0;
}

/* Instagram Feed */
.instagram-feed {
  padding: 100px 32px;
  background: #fff;
}

.instagram-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.instagram-item {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.instagram-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

/* Newsletter */
.newsletter {
  padding: 100px 32px;
  background: #000;
  color: #fff;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

.newsletter-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 16px 0;
}

.newsletter-subtitle {
  font-size: 18px;
  margin: 0 0 40px 0;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 550px;
  margin: 0 auto 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.btn-newsletter {
  padding: 18px 36px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-privacy {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
}

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

@media (max-width: 960px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .bestsellers,
  .new-collection,
  .testimonials,
  .instagram-feed,
  .newsletter {
    padding: 60px 20px;
  }
  
  .section-header-center {
    margin-bottom: 40px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .btn-newsletter {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: #fff;
  padding: 80px 32px 32px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section {
  animation: fade-in-up 0.8s ease both;
}

.footer-brand {
  animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1.5px solid #fff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-logo .brand-mark svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-logo .brand-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px 0;
  line-height: 1.6;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 14px;
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-link.facebook {
  color: #fff;
}

.social-link:hover {
  background: #1877f2;
  border-color: #1877f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-hours li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-hours span:first-child {
  color: rgba(255, 255, 255, 0.7);
}

.footer-hours span:last-child {
  color: #fff;
  font-weight: 600;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 960px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 60px 20px 20px;
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    grid-column: 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .social-link {
    width: 100%;
    justify-content: center;
  }
}

/* Modal de recherche */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-modal.active {
  opacity: 1;
  pointer-events: all;
}

.search-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.search-modal-content {
  position: relative;
  width: 90%;
  max-width: 700px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
  transform: translateY(0);
}

.search-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.search-modal-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.search-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-bottom: 2px solid #f0f0f0;
}

.search-modal-header svg {
  flex-shrink: 0;
  color: #666;
}

.search-modal-header input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.search-modal-header input::placeholder {
  color: #999;
}

.search-results {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.search-result-item:hover {
  background: #f9f9f9;
  transform: translateX(4px);
}

.search-result-item img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f5;
}

.search-result-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-result-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.search-result-category {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.search-result-price {
  font-size: 15px;
  font-weight: 800;
  color: #000;
  margin-top: 2px;
}

.search-empty {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 15px;
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #333;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* Loader de page */
.page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 99999;
  transition: opacity 0.4s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f0f0f0;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.page-loader p {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.5px;
}

/* Animations fade-in */
.fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 768px) {
  .search-modal {
    padding-top: 60px;
  }

  .search-modal-content {
    width: 95%;
    border-radius: 12px;
  }

  .search-modal-header {
    padding: 16px;
  }

  .search-modal-header input {
    font-size: 16px;
  }

  .search-result-item {
    gap: 12px;
    padding: 10px;
  }

  .search-result-item img {
    width: 60px;
    height: 75px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* Product card on homepage - no btn-add-cart visible */
#homeBestsellersGrid .product-card {
  cursor: pointer;
}

#homeBestsellersGrid .product-card .product-info {
  padding: 20px;
}

#homeBestsellersGrid .product-card .product-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    animation: none;
  }
  .icon-btn:hover,
  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }
  .footer-section {
    animation: none;
  }
  .search-modal-content,
  .scroll-to-top,
  .page-loader,
  .whatsapp-float {
    transition: none;
    animation: none;
  }
  .hero-scroll-indicator {
    animation: none;
  }
}

/* ============================================================
   MARQUE NOUS UNIQUE — texte seul (pas de badge) avec dégradé
   animé noir / doré / blanc, sur toutes les pages.
   ============================================================ */

/* On retire complètement le badge/emblème : uniquement le texte */
.brand-mark { display: none !important; }

/* Nom de marque en dégradé animé (noir -> doré -> blanc) */
.brand-text {
  animation: none !important;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 0 !important; /* masque le texte HTML d'origine */
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
.brand-text::after {
  content: "Nous Unique";
  font-size: 22px;
  background: linear-gradient(100deg, #111 0%, #c2a36b 32%, #ffffff 50%, #c2a36b 68%, #111 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
  animation: hp-brand-shine 6s linear infinite;
}

@keyframes hp-brand-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* --- Footer (fond sombre) : dégradé doré -> blanc -> doré --- */
.footer-logo .brand-text {
  font-size: 0 !important;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-logo .brand-text::after {
  content: "Nous Unique";
  font-size: 24px;
  background: linear-gradient(100deg, #c2a36b 0%, #ffffff 50%, #c2a36b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: none;
  animation: hp-brand-shine 6s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .brand-text::after,
  .footer-logo .brand-text::after { animation: none !important; }
}
