/* ============================================
   GOFI Collection — Main Stylesheet
   ============================================ */

/* ---- Variables CSS ---- */
:root {
  --yellow:  #facc15;
  --yellow-dark: #f59e0b;
  --pink:    #ec4899;
  --pink-dark: #db2777;
  --blue:    #38bdf8;
  --blue-dark: #0ea5e9;
  --violet:  #a78bfa;
  --violet-dark: #7c3aed;
  --black:   #0a0a0a;
  --white:   #ffffff;
  --gray-50:  #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-400: #a1a1aa;
  --gray-600: #52525b;
  --gray-800: #27272a;
  
  /* Typographie */
  --font-display: 'Fredoka', 'Nunito', sans-serif;
  --font-body:    'Nunito', sans-serif;
  
  /* Espacements */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  
  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.16);
  --shadow-pink: 0 8px 32px rgba(236,72,153,.3);
  --shadow-yellow: 0 8px 32px rgba(250,204,21,.4);
  
  /* Transitions */
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --transition-bounce: all .4s cubic-bezier(.34,1.56,.64,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-bounce);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(250,204,21,.5);
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover {
  background: var(--pink-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(236,72,153,.5);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--black);
  background: transparent;
}
.btn-icon:hover {
  background: var(--gray-100);
  transform: scale(1.1);
}

.btn-sm {
  padding: 10px 20px;
  font-size: .9rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.15rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Nav menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.navbar-menu a {
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  color: var(--gray-600);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--black);
  background: var(--gray-100);
}

.navbar-menu a.nav-badge {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: var(--white);
  padding: 8px 16px;
}
.navbar-menu a.nav-badge:hover {
  opacity: .9;
  transform: scale(1.03);
}

/* Nav actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Cart badge */
.cart-icon { position: relative; }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pink);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  animation: pop .3s cubic-bezier(.34,1.56,.64,1);
}

@keyframes pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 4px;
}
.burger-btn span {
  display: block;
  height: 2.5px;
  border-radius: 999px;
  background: var(--black);
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .burger-btn { display: flex; }
  
  .navbar-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  
  .navbar-menu.open {
    transform: translateX(0);
  }
  
  .navbar-menu a {
    font-size: 1.4rem;
    padding: 12px 32px;
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 998;
  }
  .nav-overlay.open { display: block; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,204,21,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gray-600);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stat-label {
  font-size: .85rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--pink) 50%, var(--violet) 100%);
  opacity: .12;
  animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  66% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
}

.hero-main-img {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  max-width: 420px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  animation: floatBadge 5s ease-in-out infinite;
  z-index: 2;
  font-weight: 700;
}

.hero-floating-badge.badge-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.hero-floating-badge.badge-2 {
  bottom: 25%;
  right: -5%;
  animation-delay: 2s;
}

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 0;
    text-align: center;
  }
  .hero-desc { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition-bounce);
  position: relative;
  group: true;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-img {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

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

/* Placeholder SVG pour les produits sans image */
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  color: var(--gray-400);
  font-size: 4rem;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 1;
}

.product-badge.badge-limited { background: linear-gradient(135deg, var(--violet), var(--pink)); }
.product-badge.badge-new { background: var(--blue); }
.product-badge.badge-hot { background: linear-gradient(135deg, var(--yellow-dark), var(--pink)); color: var(--white); }

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  cursor: pointer;
  border: none;
}

.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--pink); color: var(--white); transform: scale(1.1); }

/* Quick add overlay */
.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.85);
  color: var(--white);
  padding: 14px;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  opacity: 0;
  transform: translateY(100%);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-card-body {
  padding: 20px;
}

.product-category {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--violet);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-name a:hover { color: var(--pink); }

.product-desc {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.product-price-sub {
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 400;
}

.product-add-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  flex-shrink: 0;
}
.product-add-btn:hover {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.15) rotate(10deg);
}

.product-stock-low {
  font-size: .78rem;
  color: var(--pink);
  font-weight: 700;
  margin-top: 8px;
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 80px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pink);
  margin-bottom: 12px;
}

/* ---- Featured Section ---- */
.featured-section { background: var(--gray-50); }

/* ---- Marquee ---- */
.marquee-section {
  background: var(--black);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.marquee-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Collection Universe ---- */
.universe-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.universe-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.universe-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.universe-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.universe-card:hover .universe-card-bg {
  transform: scale(1.06);
}

.universe-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.universe-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.universe-card-count {
  font-size: .85rem;
  opacity: .8;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .universe-grid {
    grid-template-columns: 1fr 1fr;
  }
  .universe-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ---- Why GOFI ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition-bounce);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--gray-600);
  font-size: .92rem;
}

/* ---- Testimonials ---- */
.testimonials-section { background: var(--black); color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.6); }

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

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,.85);
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: .95rem;
}

.testimonial-handle {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ============================================
   CATALOGUE PAGE
   ============================================ */
.catalogue-header {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.catalogue-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--gray-200);
  background: transparent;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.catalogue-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.products-count {
  color: var(--gray-600);
  font-size: .9rem;
}

.sort-select {
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--gray-200);
  font-size: .9rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  appearance: none;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  padding-right: 36px;
}

.sort-select:focus {
  border-color: var(--black);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
  padding: 60px 0;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: .88rem;
  color: var(--gray-400);
}

.product-breadcrumb a:hover { color: var(--black); }
.product-breadcrumb span { color: var(--gray-200); }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  aspect-ratio: 1;
  margin-bottom: 16px;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.product-detail-name {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.product-detail-price {
  font-size: 2.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 24px;
}

.product-detail-desc {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 32px;
}

.product-quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  color: var(--black);
}

.qty-btn:hover { background: var(--gray-200); }

.qty-input {
  width: 60px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  outline: none;
  padding: 0 8px;
}

.product-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-meta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

.product-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .92rem;
}

.product-meta-icon { font-size: 1.2rem; }
.product-meta-text strong { display: block; font-weight: 700; }
.product-meta-text span { color: var(--gray-600); font-size: .85rem; }

@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery { position: static; }
}

/* ============================================
   PANIER
   ============================================ */
.cart-page { padding: 60px 0; }
.cart-page-title { font-size: 2.5rem; margin-bottom: 40px; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cart-items-list { display: flex; flex-direction: column; gap: 16px; }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.cart-item:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.cart-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-50);
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-name {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.cart-item-price { color: var(--gray-600); font-size: .9rem; }

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cart-item-remove {
  color: var(--gray-400);
  font-size: .85rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}

.cart-item-remove:hover { color: var(--pink); background: rgba(236,72,153,.08); }

.cart-item-total {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-align: right;
  white-space: nowrap;
}

/* Cart summary */
.cart-summary {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
  border: 1px solid var(--gray-100);
}

.cart-summary-title {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .95rem;
}

.summary-row:last-of-type { border-bottom: none; }

.summary-row.total {
  font-weight: 700;
  font-size: 1.2rem;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--black);
}

.shipping-free { color: #16a34a; font-weight: 700; }
.shipping-progress {
  background: var(--gray-200);
  border-radius: 999px;
  height: 6px;
  margin: 12px 0;
  overflow: hidden;
}
.shipping-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
  transition: width .5s ease;
}

@media (max-width: 768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-total { grid-column: 1 / -1; text-align: left; }
}

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-page { padding: 60px 0; }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.checkout-form-section {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.checkout-section-title {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray-600);
}

.form-input {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  font-size: .95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
  background: var(--white);
}

.form-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236,72,153,.1);
}

.form-input.error { border-color: #ef4444; }

/* Stripe card element */
#card-element {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}

#card-element.StripeElement--focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236,72,153,.1);
}

#card-errors {
  color: #ef4444;
  font-size: .85rem;
  margin-top: 8px;
}

/* Checkout order summary */
.checkout-order-summary {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  position: sticky;
  top: 100px;
}

.checkout-items-list { margin-bottom: 24px; }

.checkout-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}

.checkout-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
  position: relative;
}

.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }

.checkout-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--pink);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-item-name { font-weight: 600; font-size: .9rem; flex: 1; }
.checkout-item-price { font-weight: 700; }

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  width: 100%;
  border: 1px solid var(--gray-100);
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 3rem;
  animation: bounceIn .6s cubic-bezier(.34,1.56,.64,1);
}

@keyframes bounceIn {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-wave {
  color: var(--gray-50);
  line-height: 0;
  transform: scaleY(-1);
}

.footer-wave svg {
  width: 100%;
  height: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding: 60px 24px;
}

.footer .logo-text { color: var(--white); }
.footer .logo-mark { background: linear-gradient(135deg, var(--yellow), var(--pink)); }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 8px 0;
  color: rgba(255,255,255,.7);
}

.footer-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 16px 0;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
}

.social-btn:hover {
  background: var(--pink);
  transform: translateY(-4px);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
}

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

.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-newsletter p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

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

.newsletter-form input:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,.12);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-legal a:hover { color: var(--white); }

.footer-payments { display: flex; gap: 16px; }

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-content { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================
   ADMIN STYLES
   ============================================ */
.admin-body {
  background: var(--gray-50);
  min-height: 100vh;
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--black);
  color: var(--white);
  padding: 24px 16px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.admin-logo .logo-text { color: var(--white); }

.admin-nav-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.3);
  padding: 8px 12px;
  margin-top: 16px;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  font-weight: 600;
  font-size: .92rem;
  transition: var(--transition);
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.admin-nav-item.active {
  background: linear-gradient(135deg, rgba(250,204,21,.2), rgba(236,72,153,.2));
  color: var(--yellow);
}

.admin-nav-item svg { flex-shrink: 0; }

.admin-main {
  margin-left: 260px;
  padding: 32px;
  min-height: 100vh;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-page-title {
  font-size: 1.8rem;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-icon.yellow { background: rgba(250,204,21,.15); }
.stat-icon.pink { background: rgba(236,72,153,.15); }
.stat-icon.blue { background: rgba(56,189,248,.15); }
.stat-icon.violet { background: rgba(167,139,250,.15); }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label { color: var(--gray-600); font-size: .85rem; margin-top: 4px; }

/* Admin table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-400);
  border-bottom: 2px solid var(--gray-100);
  white-space: nowrap;
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }

.admin-table .product-img-sm {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--gray-100);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}

.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-pending { background: rgba(250,204,21,.15); color: #92400e; }
.status-paid { background: rgba(56,189,248,.15); color: #0369a1; }
.status-preparing { background: rgba(167,139,250,.15); color: #5b21b6; }
.status-shipped { background: rgba(16,185,129,.15); color: #065f46; }
.status-delivered { background: rgba(16,185,129,.25); color: #064e3b; }
.status-cancelled { background: rgba(239,68,68,.15); color: #991b1b; }

/* Admin form */
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-form-grid .full { grid-column: 1 / -1; }

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-600);
}

.admin-input, .admin-textarea, .admin-select {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  font-size: .95rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  background: var(--white);
  width: 100%;
}

.admin-input:focus, .admin-textarea:focus, .admin-select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(167,139,250,.15);
}

.admin-textarea { min-height: 120px; resize: vertical; }

/* Image upload */
.upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.upload-area:hover, .upload-area.dragover {
  border-color: var(--violet);
  background: rgba(167,139,250,.05);
}

.upload-area p { color: var(--gray-400); margin-top: 8px; font-size: .9rem; }

.upload-preview {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin: 12px auto 0;
  display: none;
}

/* Action buttons in table */
.action-btns { display: flex; gap: 8px; }

.btn-edit {
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid var(--blue);
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 700;
  transition: var(--transition);
  background: transparent;
  font-family: var(--font-body);
}
.btn-edit:hover { background: var(--blue); color: var(--white); }

.btn-delete {
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid #fca5a5;
  color: #ef4444;
  font-size: .8rem;
  font-weight: 700;
  transition: var(--transition);
  background: transparent;
  font-family: var(--font-body);
  cursor: pointer;
}
.btn-delete:hover { background: #ef4444; color: var(--white); border-color: #ef4444; }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--black);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  z-index: 9999;
  max-width: 360px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }
.toast.info { background: var(--blue-dark); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

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

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-state-emoji { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 8px; }
.empty-state p { color: var(--gray-400); margin-bottom: 32px; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  font-family: var(--font-body);
  color: var(--black);
}

.page-btn:hover, .page-btn.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* Stagger delays */
.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .3s; }
.fade-in:nth-child(5) { transition-delay: .4s; }
.fade-in:nth-child(6) { transition-delay: .5s; }

/* ============================================
   LOGIN ADMIN
   ============================================ */
.login-page {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.login-page::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,204,21,.1) 0%, transparent 70%);
}

.login-page::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,.1) 0%, transparent 70%);
}

.login-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  justify-content: center;
}

.login-logo .logo-text { color: var(--white); font-size: 2rem; }
.login-subtitle { text-align: center; color: rgba(255,255,255,.5); margin-bottom: 36px; font-size: .9rem; }

.login-card .form-label { color: rgba(255,255,255,.7); }

.login-card .form-input {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}

.login-card .form-input::placeholder { color: rgba(255,255,255,.3); }
.login-card .form-input:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(250,204,21,.15); }

.login-error {
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .88rem;
  margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE GLOBAL
   ============================================ */
@media (max-width: 480px) {
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  section { padding: 60px 0; }
  .container { padding: 0 16px; }
}
