/*
Theme Name: Rim Luxe Savon
Theme URI: https://rimluxesavon.mr
Author: Rim Luxe Savon
Author URI: https://rimluxesavon.mr
Description: Thème officiel de Rim Luxe Savon — marque mauritanienne de savons de luxe. Design élégant avec identité visuelle bleue royale et cyan.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rim-luxe-savon
Tags: luxury, beauty, soap, mauritania, blue, elegant, woocommerce
*/

/* ─── CSS Variables ─────────────────────── */
:root {
  --blue-deep:    #1A2FD4;
  --blue-darker:  #0F1FA0;
  --blue-darkest: #091580;
  --blue-bg:      #0D1EC2;
  --cyan:         #29C4F0;
  --cyan-light:   #5DD8F5;
  --white:        #FFFFFF;
  --off-white:    #F4F8FF;
  --gray-light:   #E8EEF8;
  --gray-text:    #6B7A99;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Raleway', sans-serif;
  --font-light:   'Cormorant Garamond', serif;
}

/* ─── Reset & Base ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── Typography ────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(38px, 5vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 3vw, 26px); }
p  { line-height: 1.8; }

/* ─── Utility ───────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.text-center { text-align: center; }
.section-pad { padding: 100px 0; }

.section-tag {
  display: inline-block;
  background: rgba(26,47,212,0.08);
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(26,47,212,0.12);
}

.section-tag--light {
  background: rgba(41,196,240,0.15);
  color: var(--cyan);
  border-color: rgba(41,196,240,0.3);
}

/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-darkest);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,47,212,0.25);
}

.btn-white {
  background: var(--white);
  color: var(--blue-deep);
}
.btn-white:hover {
  background: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(41,196,240,0.4);
}

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

.btn-cyan {
  background: var(--cyan);
  color: var(--white);
}
.btn-cyan:hover {
  background: #1ab0de;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41,196,240,0.4);
}

/* ─── Navigation ────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,47,212,0.08);
  transition: all 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 2px 30px rgba(26,47,212,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  max-width: 1400px;
  margin: 0 auto;
  transition: padding 0.3s;
}

#site-header.scrolled .header-inner { padding: 12px 60px; }

.site-logo { display: flex; align-items: center; }
.site-logo svg { height: 44px; }
.site-logo img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; }

.main-nav ul {
  display: flex;
  gap: 38px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a2e;
  position: relative;
  transition: color 0.3s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item > a { color: var(--blue-deep); }
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after { transform: scaleX(1); }

.nav-cta-link {
  background: var(--blue-deep) !important;
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta-link::after { display: none !important; }
.nav-cta-link:hover { background: var(--blue-darkest) !important; transform: translateY(-1px) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue-deep);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ─── Page Hero Banners ──────────────────── */
.page-hero {
  padding: 140px 60px 80px;
  background: linear-gradient(135deg, var(--blue-darkest) 0%, var(--blue-deep) 60%, #2244E8 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,196,240,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  bottom: -80px; left: -60px;
}

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

.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  margin-bottom: 18px;
}

.page-hero p {
  font-family: var(--font-light);
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── Values Strip ──────────────────────── */
.values-strip {
  background: var(--blue-deep);
  padding: 40px 0;
}

.values-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.value-strip-item {
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
}

.value-strip-item:last-child { border-right: none; }

.value-strip-icon { font-size: 28px; margin-bottom: 10px; }

.value-strip-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.value-strip-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ─── Product Cards ─────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-light);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26,47,212,0.12);
  border-color: rgba(26,47,212,0.2);
}

.product-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-thumb-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--blue-darkest), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--cyan);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }

.product-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 21px;
  color: #0d1a6e;
  margin-bottom: 10px;
  font-weight: 700;
}

.product-desc {
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-light);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--blue-deep);
  font-weight: 700;
}

.product-price small {
  font-size: 13px;
  color: var(--gray-text);
  font-family: var(--font-body);
  font-weight: 400;
}

/* WooCommerce compatibility */
.woocommerce ul.products li.product { padding: 0 !important; margin-bottom: 0 !important; }
.woocommerce-loop-product__title { font-family: var(--font-serif) !important; }
.woocommerce .price { color: var(--blue-deep) !important; font-family: var(--font-serif) !important; }
.woocommerce a.button,
.woocommerce button.button { background: var(--blue-deep) !important; color: white !important; border-radius: 50px !important; }
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: var(--blue-darkest) !important; }

/* ─── About / Feature Cards ──────────────── */
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-deep), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual-box {
  height: 480px;
  background: linear-gradient(135deg, var(--blue-darkest), var(--blue-deep));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-visual-box::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,196,240,0.2) 0%, transparent 70%);
  top: -50px; right: -50px;
}

/* ─── Why Us / Feature Grid ──────────────── */
.dark-section {
  background: linear-gradient(135deg, var(--blue-darkest) 0%, var(--blue-deep) 100%);
  padding: 100px 0;
  color: var(--white);
}

.dark-section .section-tag { background: rgba(41,196,240,0.15); color: var(--cyan); border-color: rgba(41,196,240,0.3); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(41,196,240,0.3);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(41,196,240,0.2), rgba(41,196,240,0.05));
  border: 1px solid rgba(41,196,240,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.why-card h3 { font-size: 19px; color: var(--white); margin-bottom: 12px; }
.why-card p  { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; font-family: var(--font-light); }

/* ─── Testimonials ──────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(26,47,212,0.08);
  transform: translateY(-4px);
}

.stars { color: var(--cyan); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }

.testimonial-text {
  font-family: var(--font-light);
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

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

.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}

.t-name  { font-weight: 700; font-size: 14px; color: #0d1a6e; }
.t-loc   { font-size: 12px; color: var(--gray-text); margin-top: 2px; }

/* ─── CTA Banner ────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-darkest), var(--blue-deep), #2244E8);
  padding: 80px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,196,240,0.12) 0%, transparent 70%);
  top: -100px; right: -80px;
}

.cta-banner-inner { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-banner p {
  font-family: var(--font-light);
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

/* ─── Values Cards ──────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
}

.value-card:hover {
  background: var(--white);
  box-shadow: 0 12px 40px rgba(26,47,212,0.08);
  transform: translateY(-4px);
}

.value-card-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.value-card h3   { font-family: var(--font-serif); font-size: 17px; color: #0d1a6e; margin-bottom: 10px; }
.value-card p    { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* ─── Stats Row ─────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: linear-gradient(135deg, var(--blue-darkest), var(--blue-deep));
  border-radius: 20px;
  color: white;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 8px; }

/* ─── Contact ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-title { font-weight: 700; font-size: 14px; color: #0d1a6e; margin-bottom: 4px; }
.contact-item-val   { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

.contact-form-box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(26,47,212,0.08);
  border: 1px solid var(--gray-light);
}

.contact-form-box h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: #0d1a6e;
  margin-bottom: 28px;
}

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

.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }

.form-group label { font-size: 13px; font-weight: 600; color: #0d1a6e; }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #1a1a2e;
  outline: none;
  transition: border-color 0.3s;
  background: var(--white);
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(26,47,212,0.08);
}

.form-group textarea { height: 130px; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-darkest));
  color: white;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,47,212,0.3);
}

/* ─── Footer ────────────────────────────── */
#site-footer {
  background: #080f5e;
  color: var(--white);
  padding: 70px 0 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-tagline {
  font-family: var(--font-light);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 22px;
}

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

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-social a:hover { background: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }

.footer-col-title {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.footer-col-links { display: flex; flex-direction: column; gap: 12px; }

.footer-col-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ─── Responsive ────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container, .header-inner { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-strip-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .main-nav ul { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    padding: 30px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .page-hero { padding: 120px 24px 60px; }
  .cta-banner { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .values-strip-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ─── Animations ────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ─── WordPress Specific ────────────────── */
.wp-block-image img { border-radius: 16px; }
.aligncenter { margin: 0 auto; }
.screen-reader-text { position: absolute; left: -9999px; }

/* ─── Blue Section (About + Featured Products) ─── */
.section-blue {
  background: linear-gradient(140deg, #091580, var(--blue-deep) 60%, #2244E8);
}

.section-blue .section-tag {
  background: rgba(41,196,240,0.15);
  color: var(--cyan);
  border-color: rgba(41,196,240,0.3);
}

.section-blue .section-title { color: var(--white); }
.section-blue .section-subtitle { color: rgba(255,255,255,0.72); }

.section-blue .about-visual-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.section-blue .about-visual-box::before { opacity: 0.5; }

.section-blue .feature-title { color: var(--white) !important; }
.section-blue .feature-text  { color: rgba(255,255,255,0.7) !important; }
.section-blue .feature-icon  {
  background: rgba(41,196,240,0.18);
  border: 1px solid rgba(41,196,240,0.3);
}

/* Product cards inside blue section */
.section-blue .product-card {
  background: linear-gradient(140deg, #091580 0%, var(--blue-deep) 55%, #2244E8 100%);
  border-color: rgba(255,255,255,0.1);
}
.section-blue .product-card:hover {
  border-color: rgba(41,196,240,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  transform: translateY(-8px);
}
.section-blue .product-name  { color: var(--white); }
.section-blue .product-desc  { color: rgba(255,255,255,0.7); }
.section-blue .product-cat   { color: var(--cyan); }
.section-blue .product-footer { border-color: rgba(255,255,255,0.1); }
.section-blue .product-price  { color: var(--cyan); }
.section-blue .product-price small { color: rgba(255,255,255,0.55); }

/* ─── Products grid — 4 columns ─────────── */
.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1100px) { .products-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .products-grid-4 { grid-template-columns: 1fr; } }

/* ─── Filter button — light variant ─────── */
.filter-btn-lt {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.07);
}
.filter-btn-lt.active,
.filter-btn-lt:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

/* ─── Wide product card (Boutique) ────────── */
.products-grid-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.product-card-wide {
  display: flex;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.product-card-wide:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(41,196,240,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.pcw-img {
  width: 260px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.pcw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card-wide:hover .pcw-img img { transform: scale(1.05); }

.pcw-body {
  flex: 1;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pcw-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.pcw-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(41,196,240,0.12);
  border: 1px solid rgba(41,196,240,0.25);
  padding: 4px 12px;
  border-radius: 50px;
}
.pcw-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.pcw-desc {
  font-family: var(--font-light);
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 18px;
}
.pcw-features { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.pcw-feat-item {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 50px;
}
.btn-commander {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-commander:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
}

/* Boutique responsive */
@media (max-width: 960px) {
  .products-grid-wide { grid-template-columns: 1fr; }
  .pcw-img { width: 100%; height: 240px; }
  .product-card-wide { flex-direction: column; }
}

/* ─── Boutique page section wrapper ────── */
.boutique-section {
  background: linear-gradient(140deg, #091580, var(--blue-deep) 60%, #2244E8);
  padding: 60px 60px 80px;
}

@media (max-width: 768px) { .boutique-section { padding: 40px 24px 60px; } }

/* ─── Section helpers ────────────────────── */
.section-header { margin-bottom: 48px; }
.section-title { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 44px); margin-bottom: 14px; }
.section-subtitle { font-size: 16px; font-family: var(--font-light); color: var(--gray-text); max-width: 580px; line-height: 1.8; }
