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

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #1a1614;
  --brand-hover: #2d2724;
  --accent: #c9a962;
  --accent-warm: #eab308;
  --accent-soft: rgba(201, 169, 98, 0.12);
  --bg: #f7f5f2;
  --bg-warm: #faf8f5;
  --card: #ffffff;
  --text: #0f172a;
  --text-soft: #6b7280;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-hover: 0 24px 40px -12px rgba(26, 22, 20, 0.12);
  --shadow-soft: 0 4px 24px rgba(26, 22, 20, 0.06);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}
html { scroll-behavior: smooth; }
body { font-family: "Poppins", sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; line-height: 1.6; }
a { color: inherit; text-decoration: none; transition: 0.2s; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ========== TOP BAR & HEADER ========== */
.top-bar {
  background: linear-gradient(90deg, #1a1614 0%, #2d2724 50%, #1a1614 100%);
  color: #faf8f5;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(201, 169, 98, 0.25);
}

header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 22, 20, 0.06);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
header .logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  color: var(--brand);
  text-transform: uppercase;
}

.navigation.header-actions { display: flex; align-items: center; gap: 1rem; }
.nav-link { display: flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; background: #f3f4f6; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 500; color: var(--brand); }
.nav-item { position: relative; }
.dropdown { position: absolute; top: 120%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--card); border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: var(--shadow-hover); min-width: 180px; opacity: 0; visibility: hidden; transition: all 0.2s ease; overflow: hidden; z-index: 60; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 0.8rem 1rem; font-size: 0.85rem; color: var(--text); }
.dropdown a:hover { background: var(--brand); color: #fff; }

.cart-btn { position: relative; font-size: 1.1rem; padding: 0.5rem; color: var(--brand); }
.cart-count { position: absolute; top: -2px; right: -5px; background: linear-gradient(135deg, var(--accent) 0%, #a88b4a 100%); color: #1a1614; font-size: 0.7rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ========== SEARCH BAR ========== */
.header-search { width: 100%; max-width: 600px; margin: 0 auto; position: relative; }
.search-bar { display: flex; align-items: center; background: #f3f4f6; padding: 0.6rem 1rem; border-radius: var(--radius-pill); }
.search-bar input { border: none; background: transparent; outline: none; flex: 1; margin-left: 0.5rem; font-size: 0.9rem; }
#searchResults { position: absolute; top: 110%; left: 0; right: 0; background: #fff; border-radius: 12px; box-shadow: var(--shadow-hover); border: 1px solid #e5e7eb; z-index: 100; max-height: 300px; overflow-y: auto; display: none; }
#searchResults .item { padding: 0.8rem 1rem; border-bottom: 1px solid #f3f4f6; cursor: pointer; display: flex; justify-content: space-between; font-size: 0.85rem; }

@media (min-width: 768px) {
  header { flex-direction: row; justify-content: space-between; padding: 0.8rem 3rem; }
}

/* ========== GRID PRODUITS (ACCUEIL) ========== */
.main-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.title { text-align: center; font-size: 1.8rem; font-weight: 700; margin: 2rem 0 1.5rem; font-family: var(--font-display); letter-spacing: -0.02em; }
.projects .content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .projects .content { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem; } }

.project-card { background: var(--card); border: 1px solid rgba(26, 22, 20, 0.06); border-radius: calc(var(--radius-lg) + 4px); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s; box-shadow: var(--shadow-soft); }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(201, 169, 98, 0.25); }
.project-image { padding-top: 100%; position: relative; }
.project-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.project-info { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.project-category { font-size: 0.75rem; color: var(--text-soft); text-transform: uppercase; margin-bottom: 0.3rem; }
.badge { font-size: 0.65rem; padding: 0.2em 0.6em; border-radius: 4px; font-weight: 600; margin-left: 5px; }
.badge.original { background: #fef3c7; color: #92400e; }
.badge.decant { background: #e0e7ff; color: #3730a3; }
.project-title span { font-size: 0.95rem; font-weight: 600; display: block; margin-bottom: 0.5rem; }

.option-toggle { display: flex; background: #f3f4f6; border-radius: 8px; padding: 3px; margin-top: auto; margin-bottom: 1rem; }
.opt-btn { flex: 1; font-size: 0.75rem; padding: 0.4rem; border-radius: 6px; font-weight: 500; color: var(--text-soft); }
.opt-btn.active { background: #fff; color: var(--brand); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

/* --- MODIF 1 : BOUTON SOUS LE PRIX --- */
.product-meta {
  display: flex;
  flex-direction: column; /* Empile verticalement */
  gap: 0.6rem;
  border-top: 1px solid #f3f4f6;
  padding-top: 0.8rem;
}
.price { font-weight: 700; font-size: 1.1rem; color: var(--brand); }
.add-btn {
  background: linear-gradient(180deg, var(--brand) 0%, #0f0d0c 100%);
  color: #fff;
  padding: 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  box-shadow: 0 2px 8px rgba(26, 22, 20, 0.15);
}
.add-btn:hover { background: linear-gradient(180deg, var(--brand-hover) 0%, var(--brand) 100%); }
.add-btn:disabled { box-shadow: none; }

/* ========== PAGE PRODUIT DETAIL (NOUVEAU STYLE) ========== */
.product-detail-wrapper { max-width: 1000px; margin: 2rem auto; padding: 0 1.5rem; display: grid; gap: 2rem; }
.product-detail-img { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 2rem; display: flex; justify-content: center; }
.product-detail-img img { max-height: 400px; width: auto; object-fit: contain; }
.product-detail-info h1 { font-size: 1.8rem; line-height: 1.2; margin-bottom: 0.5rem; }
.brand-label { font-size: 1rem; color: var(--text-soft); display: block; margin-bottom: 1rem; }

/* Texte stylé */
.story-box { margin-bottom: 1.5rem; color: #374151; font-size: 0.95rem; line-height: 1.7; }
.notes-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.note-tag { background: #f3f4f6; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; color: #4b5563; font-weight: 500; }

.variant-list { display: flex; flex-direction: column; gap: 1rem; }
.variant-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; transition: 0.2s; }
.variant-row:hover { border-color: var(--brand); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.variant-info strong { display: block; font-size: 0.95rem; }
.variant-info span { font-size: 0.8rem; color: var(--text-soft); }
.variant-action { display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem; }
.variant-price { font-weight: 700; font-size: 1rem; }
.variant-btn-small { background: var(--brand); color: #fff; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; }

@media (min-width: 768px) {
  .product-detail-wrapper { grid-template-columns: 1fr 1fr; align-items: start; }
  .variant-action { flex-direction: row; align-items: center; gap: 1rem; }
}

/* ========== PANIER (CORRECTION MOBILE) ========== */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 400px; /* Pleine largeur sur mobile */
  background: #fff; box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  z-index: 2000; /* SUPER IMPORTANT : Au-dessus de tout */
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
body.cart-open .cart-drawer { transform: translateX(0); }
body.cart-open { overflow: hidden; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s; }
body.cart-open .cart-overlay { opacity: 1; visibility: visible; }

.cart-header { padding: 1.5rem; border-bottom: 1px solid #f3f4f6; display: flex; justify-content: space-between; align-items: center; }
.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px dashed #e5e7eb; }
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.item-details { flex: 1; }
.item-title { font-weight: 600; font-size: 0.9rem; }
.qty-input { width: 40px; text-align: center; border: 1px solid #ddd; border-radius: 4px; margin-right: 10px; }
.remove-btn { color: #ef4444; font-size: 0.8rem; text-decoration: underline; }

.cart-footer { padding: 1.5rem; border-top: 1px solid #f3f4f6; background: #f9fafb; }
.subtotal { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 1rem; }
.checkout-btn { display: block; width: 100%; background: #25D366; color: #fff; text-align: center; padding: 1rem; border-radius: 12px; font-weight: 600; }

/* Footer */
.footer { text-align: center; padding: 3rem 1.5rem; background: #fff; border-top: 1px solid #e5e7eb; margin-top: auto; }
.social-icons { margin-top: 1rem; display: flex; justify-content: center; gap: 1rem; }

/* ========== PAGE D'ACCUEIL — REFONTE ========== */
.home-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 169, 98, 0.18) 0%, transparent 55%),
    linear-gradient(165deg, #1a1614 0%, #2a2420 45%, #1a1614 100%);
  color: #faf8f5;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem clamp(3rem, 7vw, 5rem);
  margin: 0;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}
.home-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.home-hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(201, 169, 98, 0.08);
}
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.home-hero-lead {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  color: rgba(250, 248, 245, 0.82);
  font-weight: 400;
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}
.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.home-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, #a88b4a 100%);
  color: #1a1614;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.35);
}
.home-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201, 169, 98, 0.45); color: #1a1614; }
.home-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: #faf8f5;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250, 248, 245, 0.4);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.home-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(250, 248, 245, 0.65);
  color: #fff;
  transform: translateY(-2px);
}
.home-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  background: transparent;
  color: #faf8f5;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250, 248, 245, 0.35);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.home-btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(250, 248, 245, 0.55); color: #fff; }

.home-trust {
  background: var(--card);
  border-bottom: 1px solid rgba(26, 22, 20, 0.06);
  padding: 1.25rem 1.5rem;
}
.home-trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .home-trust-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.home-trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.home-trust-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  opacity: 0.9;
}
.home-trust-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.15rem;
}
.home-trust-item span {
  font-size: 0.72rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.home-promo-split {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
}
.home-promo-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--card);
  border-radius: 24px;
  border: 1px solid rgba(26, 22, 20, 0.06);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 900px) {
  .home-promo-card { grid-template-columns: 1.05fr 1fr; gap: 0; }
}
.home-promo-visual {
  position: relative;
  min-height: 220px;
  background: linear-gradient(145deg, var(--accent-soft) 0%, #f7f5f2 100%);
}
.home-promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  display: block;
}
.home-promo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
}
.home-promo-body { padding: 1.75rem 1.5rem 2rem; }
@media (min-width: 900px) {
  .home-promo-body { padding: 2.25rem 2rem; }
}
.home-promo-body .home-promo-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.home-promo-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.home-promo-body p {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 1.35rem;
  line-height: 1.6;
}
.home-promo-body .add-btn {
  width: 100%;
  max-width: 320px;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(26, 22, 20, 0.2);
}
.home-promo-body .add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 22, 20, 0.25);
}
.home-promo-price-tag {
  background: linear-gradient(135deg, var(--accent) 0%, #d4b87a 100%);
  color: #1a1614;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
}

.home-section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
.home-section-head .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.home-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.5rem;
}
.home-section-head p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.home-explore {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .home-explore { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
.home-explore-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  box-shadow: var(--shadow-soft);
}
.home-explore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 22, 20, 0.85) 100%);
  z-index: 0;
}
.home-explore-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.home-explore-card > * { position: relative; z-index: 1; }
.home-explore-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.home-explore-card span {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 500;
}
.home-explore-card .fa-arrow-right {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1rem;
  opacity: 0.7;
}
.home-explore-homme {
  background: #2d2724 center/cover no-repeat;
  background-image: linear-gradient(135deg, rgba(45, 39, 36, 0.4) 0%, rgba(26, 22, 20, 0.9) 100%),
    url("https://images.unsplash.com/photo-1541643600914-78b084683601?w=800&q=80");
}
.home-explore-femme {
  background: #3d2c2e center/cover no-repeat;
  background-image: linear-gradient(135deg, rgba(61, 44, 46, 0.35) 0%, rgba(26, 22, 20, 0.88) 100%),
    url("https://images.unsplash.com/photo-1595425970377-c9703cf280a9?w=800&q=80");
}

.home-products-wrap {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid rgba(26, 22, 20, 0.05);
}
.home-products-wrap .projects.main-container { padding-top: 0; }
.home-products-wrap .title { margin-top: 0; }

.footer-home {
  background: linear-gradient(180deg, #1a1614 0%, #0f0d0c 100%);
  color: rgba(250, 248, 245, 0.85);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  padding: 2.5rem 1.5rem 2rem;
  text-align: left;
}
.footer-home-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-home-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
}
.footer-home-brand .logo-foot {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #faf8f5;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.footer-home-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(250, 248, 245, 0.65);
  max-width: 280px;
}
.footer-home h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-home-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(250, 248, 245, 0.8);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-home-links a:hover { color: var(--accent); }
.footer-home-social .social-icons {
  justify-content: flex-start;
  margin-top: 0.5rem;
}
.footer-home-social a {
  color: rgba(250, 248, 245, 0.75);
  font-size: 1.35rem;
  transition: color 0.2s, transform 0.2s;
}
.footer-home-social a:hover { color: var(--accent); transform: translateY(-2px); }
.footer-home-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250, 248, 245, 0.45);
}
