/* ===================================================
   TOUMANKA — site.css
   Fonts: Anton (titres), Poppins (corps)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #1a1212;
  background: #fff;
  line-height: 1.6;
}

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

a:hover {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

input, textarea, select {
  font-family: 'Poppins', sans-serif;
}

/* ===================================================
   SITE HEADER
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 3px solid #FEED01;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 42px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: #E30713;
  letter-spacing: 1px;
}

.logo-slogan {
  font-size: 9px;
  font-weight: 700;
  color: #A0050E;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.site-nav a {
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  position: relative;
}

.site-nav a:hover {
  color: #E30713;
  background: #fff5f5;
}

.site-nav a.active {
  color: #E30713;
  font-weight: 700;
}

.site-nav a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: #E30713;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* WHATSAPP BUTTON */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  color: #fff;
}

/* LANG SWITCH */
.lang-sw {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 100px;
  padding: 2px;
  gap: 2px;
}

.lang-sw .lang {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  color: #666;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}

.lang-sw .lang.active {
  background: #E30713;
  color: #fff;
}

/* MENU TOGGLE (mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #E30713;
  padding: 4px 8px;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 78vh;
  background: #A0050E;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(163,5,14,0.97) 0%, rgba(227,7,19,0.82) 60%, rgba(163,5,14,0.70) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: #FEED01;
  color: #A0050E;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(42px, 6.5vw, 76px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero h1 span {
  color: #FEED01;
}

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEED01;
  color: #A0050E;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ===================================================
   TRUST BAND
   =================================================== */
.trust-band {
  background: #FEED01;
  border-bottom: 3px solid #E30713;
  padding: 20px;
}

.trust-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.trust-item {
  padding: 14px 20px;
  border-right: 1px solid rgba(163,5,14,0.15);
}

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

.trust-item .big {
  font-family: 'Anton', sans-serif;
  font-size: 34px;
  color: #A0050E;
  display: block;
  line-height: 1;
}

.trust-item .label {
  font-size: 12px;
  font-weight: 600;
  color: #A0050E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

/* ===================================================
   SECTIONS
   =================================================== */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 20px;
}

.section-header {
  margin-bottom: 44px;
}

.section-header.center {
  text-align: center;
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  text-transform: uppercase;
  color: #1a1212;
  line-height: 1.1;
}

.section-title span {
  color: #E30713;
}

.section-sub {
  color: #666;
  font-size: 15px;
  margin-top: 8px;
}

.section-divider {
  display: inline-block;
  height: 4px;
  width: 60px;
  background: #E30713;
  border-radius: 2px;
  margin-top: 10px;
}

/* BG SECTIONS */
.section-bg-light {
  background: #faf7ef;
}

.section-bg-light .section {
  padding: 72px 20px;
}

/* ===================================================
   CATEGORY CARDS
   =================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cat-card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s;
}

.cat-card:hover {
  transform: translateY(-4px);
}

.cat-thumb-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #c0392b 0%, #7f0000 100%);
}

.cat-vetements { background: linear-gradient(145deg, #8e1c1c 0%, #c0392b 100%); }
.cat-chaussures { background: linear-gradient(145deg, #6d3a2e 0%, #a05030 100%); }
.cat-sacs { background: linear-gradient(145deg, #2e4a6d 0%, #3a6da0 100%); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  z-index: 1;
}

.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 22px 20px;
}

.cat-name {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}

.cat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 12px;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEED01;
  color: #A0050E;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}

.cat-link:hover {
  background: #ffe600;
}

/* CATEGORY EMOJI ICONS */
.cat-emoji {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 48px;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

/* ===================================================
   PRODUCT GRID
   =================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.product-card {
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: #FEED01;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.product-thumb {
  height: 230px;
  position: relative;
  background: #f4f0e6;
  overflow: hidden;
}

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

.product-thumb-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f0e8d8 0%, #e0d4bc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E30713;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-code-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #FEED01;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1212;
  line-height: 1.3;
}

.product-sub {
  font-size: 12px;
  color: #888;
}

.price {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: #E30713;
  margin-top: 4px;
}

.price-unit {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #888;
  font-weight: 400;
}

.wa-order-btn {
  display: block;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  border: none;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.2s;
}

.wa-order-btn:hover {
  background: #1ebe5d;
  color: #fff;
}

/* ===================================================
   HOW TO ORDER STEPS
   =================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  text-align: center;
}

.step-card {
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f0e6cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.step-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #E30713;
  color: #FEED01;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  border: 4px solid #FEED01;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(227,7,19,0.3);
  flex-shrink: 0;
}

.step-title {
  font-weight: 700;
  font-size: 16px;
  color: #1a1212;
}

.step-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ===================================================
   COMMUNITY SECTION
   =================================================== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.social-btn.youtube { background: #FF0000; }
.social-btn.telegram { background: #229ED9; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.tiktok { background: #010101; }

/* ===================================================
   CONTAINERS BANNER
   =================================================== */
.containers-banner {
  background: linear-gradient(135deg, #A0050E 0%, #E30713 60%, #A0050E 100%);
  color: #fff;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.containers-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.containers-banner-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  color: #FEED01;
  line-height: 1.1;
  margin-bottom: 10px;
}

.containers-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  max-width: 500px;
}

/* ===================================================
   BLOG GRID
   =================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.blog-card {
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: #FEED01;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(145deg, #f0e8d8 0%, #e0d4bc 100%);
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E30713;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.blog-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-date {
  font-size: 12px;
  color: #aaa;
}

.blog-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1212;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #E30713;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 4px;
}

.blog-read-more:hover {
  text-decoration: underline;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #1a1212;
  color: #d8cfc9;
  padding: 56px 20px 0;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-title {
  color: #FEED01;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.footer-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-name {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  color: #fff;
}

.footer-desc {
  font-size: 13.5px;
  color: #a89e98;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8cfc9;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: #E30713;
  color: #fff;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul li a {
  color: #a89e98;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-nav ul li a:hover {
  color: #FEED01;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #a89e98;
}

.footer-contact ul li strong {
  color: #d8cfc9;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-newsletter p {
  color: #a89e98;
  font-size: 13.5px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-wa-link:hover {
  background: #1ebe5d;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-copyright {
  font-size: 13px;
  color: #6e6058;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #6e6058;
  transition: color 0.2s;
}

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

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  animation: floatpulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.12);
}

@keyframes floatpulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: linear-gradient(135deg, #A0050E 0%, #E30713 100%);
  border-bottom: 4px solid #FEED01;
  text-align: center;
  padding: 62px 20px 52px;
  color: #fff;
}

.page-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero h1 span {
  color: #FEED01;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto;
}

/* SEARCH BAR */
.search-form {
  display: flex;
  max-width: 520px;
  margin: 24px auto 0;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.search-form input {
  flex: 1;
  padding: 14px 22px;
  border: none;
  font-size: 15px;
  background: #fff;
  color: #1a1212;
  outline: none;
}

.search-form button {
  padding: 14px 22px;
  background: #FEED01;
  color: #A0050E;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.search-form button:hover {
  background: #ffe600;
}

/* ===================================================
   FILTER BUTTONS
   =================================================== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.filter-btn:hover {
  border-color: #E30713;
  color: #E30713;
}

.filter-btn.active {
  background: #E30713;
  border-color: #E30713;
  color: #fff;
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1.5px solid #f0e6cc;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: #E30713;
}

.faq-btn {
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #1a1212;
  background: none;
  border: none;
  padding: 20px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}

.faq-btn:hover {
  color: #E30713;
}

.faq-item.open .faq-btn {
  color: #E30713;
}

.faq-chevron {
  color: #E30713;
  font-size: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  display: none;
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

.faq-item.open .faq-body {
  display: block;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.contact-form-wrap {
  background: #faf7ef;
  border: 1.5px solid #f0e6cc;
  border-radius: 16px;
  padding: 32px 28px;
}

.contact-form-wrap h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: #1a1212;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d4bc;
  border-radius: 8px;
  font-size: 15px;
  color: #1a1212;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #E30713;
}

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

.btn-wa-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-wa-send:hover {
  background: #1ebe5d;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff5f5;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-card-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1212;
  margin-bottom: 4px;
}

.info-card-body p, .info-card-body a {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.info-card-body a {
  color: #E30713;
  text-decoration: none;
}

.info-card-body a:hover {
  text-decoration: underline;
}

/* ===================================================
   ORDER STEPS (comment-commander page)
   =================================================== */
.steps-full {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.steps-full::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 74px;
  bottom: 74px;
  width: 3px;
  background: linear-gradient(to bottom, #E30713, #FEED01);
  border-radius: 2px;
}

.step-full {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #E30713;
  color: #FEED01;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  border: 4px solid #FEED01;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(227,7,19,0.3);
  flex-shrink: 0;
}

.step-content {
  padding-top: 14px;
  flex: 1;
}

.step-content h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: #1a1212;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.wa-example-box {
  background: #f0faf5;
  border: 1.5px solid #25D366;
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 10px;
  font-size: 14px;
  color: #1a1212;
  line-height: 1.8;
}

.wa-example-box strong {
  color: #25D366;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes popin {
  0% { opacity: 0; transform: translateY(16px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.anim-popin {
  animation: popin 0.45s ease both;
}

/* ===================================================
   UTILITIES
   =================================================== */
.text-center { text-align: center; }
.text-red { color: #E30713; }
.text-yellow { color: #FEED01; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ===================================================
   RESPONSIVE — TABLET
   =================================================== */
@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================================
   RESPONSIVE — MOBILE
   =================================================== */
@media (max-width: 768px) {
  /* HEADER */
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 16px;
    gap: 10px;
  }

  .site-logo {
    flex: 1;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 10px 0 14px;
    border-top: 1px solid #f0f0f0;
    gap: 2px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .site-nav a.active::after {
    display: none;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .lang-sw {
    display: none;
  }

  /* HERO */
  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 50px 16px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  /* TRUST BAND */
  .trust-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(163,5,14,0.1);
  }

  /* CATEGORIES */
  .cat-grid {
    grid-template-columns: 1fr;
  }

  /* PRODUCT GRID */
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  /* STEPS */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* COMMUNITY */
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CONTAINERS */
  .containers-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* STEPS FULL */
  .steps-full::before {
    display: none;
  }

  .step-full {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* BLOG */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* SEARCH FORM */
  .search-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .search-form input, .search-form button {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn-primary, .btn-outline-white {
    justify-content: center;
  }

  .trust-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item .big {
    font-size: 26px;
  }

  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 26px;
  }
}
