/*
Theme Name: Incinkto
Theme URI: https://incinkto.com
Author: Incinkto
Author URI: https://incinkto.com
Description: Thème haute gamme pour boutique de parfums de luxe. Esthétique noir & or, expérience client immersive. Compatible WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: incinkto
Tags: e-commerce, luxury, black, gold, parfum, woocommerce, one-page, elegant

*/

/* ============================================================
   VARIABLES — Charte graphique Incinkto
   Modifiez ici les couleurs, polices et espacements globaux
   ============================================================ */
:root {
  /* Couleurs principales */
  --color-bg:           #0a0a0a;
  --color-bg-alt:       #0d0c0b;
  --color-bg-card:      #111009;
  --color-or:           #c5a464;
  --color-or-light:     #d4b87a;
  --color-or-pale:      rgba(197, 164, 100, 0.12);
  --color-text:         #f0e8d8;
  --color-text-muted:   #a89880;
  --color-text-faint:   #7a6e62;
  --color-border:       rgba(197, 164, 100, 0.18);
  --color-border-light: rgba(197, 164, 100, 0.08);

  /* Typographie */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Montserrat', 'Helvetica Neue', sans-serif;

  /* Espacements */
  --section-padding: 100px 48px;
  --container-max:   1200px;
  --radius-card:     0px;

  /* Transitions */
  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text);
}

h1 { font-size: clamp(52px, 7vw, 90px); }
h2 { font-size: clamp(34px, 4.5vw, 58px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: 20px; }

p {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  line-height: 2;
}

em { color: var(--color-or); font-style: italic; }

/* ============================================================
   UTILITAIRES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  display: block;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-or);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 0.5px;
  background: rgba(197, 164, 100, 0.5);
  margin: 24px auto;
}

.text-center { text-align: center; }
.text-or     { color: var(--color-or); }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 16px 44px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: transparent;
  border: 0.5px solid var(--color-or);
  color: var(--color-or);
}
.btn-primary:hover {
  background: var(--color-or);
  color: #080808;
}

.btn-ghost {
  background: transparent;
  border: 0.5px solid var(--color-border);
  color: var(--color-text-faint);
}
.btn-ghost:hover {
  border-color: rgba(197, 164, 100, 0.5);
  color: var(--color-or);
}

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-or);
}
.site-logo:hover { color: var(--color-or-light); }

.nav-menu {
  display: flex;
  gap: 36px;
}
.nav-menu a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--color-or); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Icône panier WooCommerce */
.cart-icon {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  border: 0.5px solid var(--color-border);
  padding: 8px 18px;
  transition: border-color var(--transition), color var(--transition);
}
.cart-icon:hover {
  border-color: rgba(197, 164, 100, 0.5);
  color: var(--color-or);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--color-text-muted);
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #080808;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(197,164,100,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 75% 30%, rgba(197,164,100,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 60px,
    rgba(197,164,100,0.8) 60px, rgba(197,164,100,0.8) 60.5px
  );
  pointer-events: none;
}

/* Si une image est définie comme bg */
.hero.has-bg-image {
  background-size: cover;
  background-position: center;
}
.hero.has-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  animation: fadeUp 1.2s ease both;
}

.hero-title {
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--color-text-faint);
  text-transform: uppercase;
  margin-bottom: 48px;
  font-family: var(--font-body);
  font-weight: 300;
}

.hero-description {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 2;
  max-width: 480px;
  margin: 0 auto 52px;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-faint);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 0.5px;
  height: 40px;
  background: var(--color-or);
  opacity: 0.5;
}

/* ============================================================
   BANDE D'ACCROCHE (entre hero et produits)
   ============================================================ */
.marquee-strip {
  background: var(--color-or);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #080808;
  font-weight: 500;
  padding: 0 48px;
}
.marquee-track span::before {
  content: '✦';
  margin-right: 48px;
  opacity: 0.5;
}

/* ============================================================
   BEST-SELLERS
   ============================================================ */
.bestsellers {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
  border-top: 0.5px solid var(--color-border-light);
  border-bottom: 0.5px solid var(--color-border-light);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Carte produit */
.product-card {
  background: var(--color-bg-card);
  border: 0.5px solid var(--color-border);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: rgba(197, 164, 100, 0.45);
  transform: translateY(-4px);
}

.product-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--color-or);
  color: #080808;
  padding: 5px 12px;
  font-weight: 500;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background: #0f0e0d;
  overflow: hidden;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

/* Overlay bouton "Voir" au hover */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-body {
  padding: 24px;
  border-top: 0.5px solid var(--color-border-light);
}

.product-category {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-or);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-desc {
  font-size: 12px;
  color: var(--color-text-faint);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--color-or);
}
.product-price .currency {
  font-size: 13px;
  vertical-align: super;
  margin-right: 2px;
}

.add-to-cart-btn {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  border: 0.5px solid var(--color-border);
  color: var(--color-text-faint);
  padding: 10px 18px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.add-to-cart-btn:hover {
  border-color: var(--color-or);
  color: var(--color-or);
}

.bestsellers-footer {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   NOTRE HISTOIRE
   ============================================================ */
.about {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.about-image-accent {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -32px;
  right: -32px;
  border: 4px solid var(--color-bg);
}
.about-image-line {
  position: absolute;
  top: 40px;
  left: -20px;
  width: 0.5px;
  height: 80px;
  background: var(--color-or);
  opacity: 0.5;
}

.about-content {}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.about-value {
  border-left: 0.5px solid var(--color-or);
  padding-left: 16px;
}
.about-value-title {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 4px;
}
.about-value p {
  font-size: 12px;
  margin: 0;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
  border-top: 0.5px solid var(--color-border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 56px auto 0;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 0.5px solid var(--color-border);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(197, 164, 100, 0.35);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.6;
  color: var(--color-or);
  opacity: 0.3;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}

.testimonial-stars {
  color: var(--color-or);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.testimonial-author strong {
  display: block;
  color: var(--color-or);
  margin-bottom: 2px;
  font-weight: 400;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 80px 48px;
  background: var(--color-bg);
  border-top: 0.5px solid var(--color-border-light);
  text-align: center;
}

.newsletter h2 { margin-bottom: 12px; }
.newsletter p  { margin-bottom: 36px; }

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0.5px solid var(--color-border);
  border-right: none;
  color: var(--color-text);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus {
  border-color: rgba(197, 164, 100, 0.5);
}
.newsletter-form input[type="email"]::placeholder {
  color: var(--color-text-faint);
}
.newsletter-form button {
  background: var(--color-or);
  border: 0.5px solid var(--color-or);
  color: #080808;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover {
  background: var(--color-or-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060606;
  border-top: 0.5px solid var(--color-border);
  padding: 72px 48px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto 56px;
}

.footer-brand .site-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px;
  max-width: 260px;
  line-height: 2;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-or);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 400;
}

.footer-links li + li { margin-top: 12px; }
.footer-links a {
  font-size: 13px;
  color: var(--color-text-faint);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-or); }

.footer-bottom {
  border-top: 0.5px solid var(--color-border-light);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 11px;
  color: var(--color-text-faint);
  letter-spacing: 0.08em;
}

/* ============================================================
   WOOCOMMERCE — Overrides
   ============================================================ */

/* Bouton ajouter au panier global */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: transparent;
  border: 0.5px solid var(--color-or);
  color: var(--color-or);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--color-or);
  color: #080808;
}

/* Prix WooCommerce */
.woocommerce .price,
.woocommerce span.price,
.woocommerce-Price-amount {
  font-family: var(--font-display) !important;
  color: var(--color-or) !important;
  font-weight: 300 !important;
}
.woocommerce del .woocommerce-Price-amount {
  color: var(--color-text-faint) !important;
  opacity: 0.6;
}

/* Barre de quantité */
.woocommerce .quantity .qty {
  background: transparent;
  border: 0.5px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  text-align: center;
}

/* Messages WooCommerce */
.woocommerce-message,
.woocommerce-info {
  background: var(--color-bg-card);
  border-top: 3px solid var(--color-or);
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

/* Tableau panier */
.woocommerce table.shop_table {
  background: var(--color-bg-card);
  border: 0.5px solid var(--color-border);
  color: var(--color-text);
}
.woocommerce table.shop_table th {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-or);
  font-weight: 400;
  border-bottom: 0.5px solid var(--color-border);
  padding: 16px;
}
.woocommerce table.shop_table td {
  border-bottom: 0.5px solid var(--color-border-light);
  padding: 16px;
  color: var(--color-text-muted);
}

/* Étoiles de notation */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
  color: var(--color-or);
}

/* Page produit single */
.woocommerce div.product .product_title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--color-text);
  font-size: clamp(32px, 4vw, 52px);
}

/* ============================================================
   PAGE SINGLE PRODUIT
   ============================================================ */
.single-product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: var(--container-max);
  margin: 60px auto;
  padding: 0 48px;
  align-items: start;
}

.product-gallery-main {
  aspect-ratio: 3/4;
  background: var(--color-bg-card);
  overflow: hidden;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-gallery-main:hover img { transform: scale(1.03); }

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.product-gallery-thumbs img {
  width: 80px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 0.5px solid var(--color-border);
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--color-or);
}

.product-info .product-category { margin-bottom: 12px; }
.product-info h1 { margin-bottom: 20px; }
.product-info .product-desc { margin: 20px 0 32px; }

.product-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 0.5px solid var(--color-border-light);
  border-bottom: 0.5px solid var(--color-border-light);
}
.product-note-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-or);
  margin-bottom: 6px;
}
.product-note-value {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-text);
}

/* ============================================================
   SHOP / ARCHIVE PRODUITS
   ============================================================ */
.shop-header {
  padding: 72px 48px 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.shop-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--color-border-light);
}
.shop-filter-btn {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  border: 0.5px solid var(--color-border);
  background: transparent;
  padding: 8px 20px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.shop-filter-btn:hover,
.shop-filter-btn.active {
  border-color: var(--color-or);
  color: var(--color-or);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — Tablette
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-padding: 72px 32px; }

  .nav-inner { padding: 0 32px; }
  .nav-menu  { display: none; }
  .nav-toggle { display: flex; }

  .products-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-inner        { grid-template-columns: 1fr; gap: 48px; }
  .about-image-accent { display: none; }
  .footer-inner       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .single-product-wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-padding: 56px 20px; }

  .nav-inner    { padding: 0 20px; }
  .hero-content { padding: 0 16px; }
  .hero-cta     { flex-direction: column; align-items: center; }

  .products-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values      { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; gap: 12px; text-align: center; }
  .newsletter-form   { flex-direction: column; }
  .newsletter-form input[type="email"],
  .newsletter-form button { border-right: 0.5px solid var(--color-border); }

  .container { padding: 0 20px; }
  .shop-header { padding: 48px 20px 0; }
  .single-product-wrap { padding: 0 20px; margin: 40px auto; }
  .product-notes { grid-template-columns: 1fr; }
}
