/*
Theme Name: Kirikou Shop
Theme URI: https://kirikou.ci
Author: Kirikou
Description: Thème e-commerce moderne pour Kirikou - électroménagers et high-tech
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: kirikou
Tags: e-commerce, woocommerce, responsive, mobile-first
*/

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


:root {
  --orange:       #F05A1A;
  --orange-light: #FFF0E8;
  --navy:         #1A2744;
  --dark:         #1C1C1E;
  --gray:         #6B7280;
  --gray-light:   #F5F5F7;
  --white:        #FFFFFF;
  --border:       #E8E8E8;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:        480px;
}

html { -webkit-text-size-adjust: 100%; }
* {
    font-family: "Google Sans", sans-serif;
    font-size:12px;
}
body {
  font-family: "Google Sans", sans-serif;
  background: #F0F0F0;
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-wrap {
  width: 100%;
  max-width: var(--max-w);
  background: var(--white);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 80px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family:  "Google Sans", sans-serif;; }
input { font-family:  "Google Sans", sans-serif;; }



/* =============================================
   HEADER MOBILE (custom)
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.header-menu-btn {
  width: 36px; height: 36px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
}
.header-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-logo .logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
}
.site-logo .logo-eyes {
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--navy);
  margin-top: -2px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icon-btn {
  position: relative;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.header-icon-btn svg { width: 22px; height: 22px; stroke: var(--dark); fill: none; stroke-width: 1.8; }
.badge {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════ SEARCH BAR ═══════════════ */

.header-search {
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 10px;
    padding-right:5px;
    padding-left:5px;
    padding-top:5px;
    padding-bottom:5px;
    flex: 1;
    gap: 5px;
    height: 50px;
    border: 1.5px solid #ebebeb;
    transition: border-color 0.2s;
}

.search-input-wrap:focus-within {
    border-color: #d0d0d0;
    background: #fff;
}

.search-input-wrap svg {
    width: 20px;
    height: 20px;
    stroke: #999;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    flex-shrink: 0;
}

.search-input-wrap input[type="search"] {
    border: none;
    background: transparent;
    outline: none;
    color: #222;
    width: 100%;
}

.search-input-wrap input[type="search"]::placeholder {
    color: #aaa;
    font-size:12px !important;
}

.search-input-wrap input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.search-btn {
    background: #f25c05;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 20px;
    height: 40px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    font-size:12px !important;
}

.search-btn:hover {
    background: #d94f00;
}

.search-btn:active {
    background: #c24600;
}

/* ═══════════════ SEARCH RESULTS DROPDOWN ═══════════════ */

.search-results {
    position: absolute;
    top: calc(100% - 4px);
    left: 16px;
    right: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 999;
    overflow: hidden;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: #222;
    transition: background 0.15s;
    border-bottom: 1px solid #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #fdf3ec;
}

.search-result-item img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f5f5f5;
}

.search-result-item .result-info {
    flex: 1;
    min-width: 0;
}

.search-result-item .result-title {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-item .result-price {
    font-size: 12px;
    color: #f25c05;
    font-weight: 600;
    margin-top: 2px;
}

.search-no-results {
    padding: 16px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

/* =============================================
   TRUST BANNER
   ============================================= */
.trust-banner {
  background: var(--navy);
  padding-left: 10px;
  padding-right:10px;
  padding-top:5px;
  padding-bottom:8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  width: 97%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.trust-item + .trust-item {
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.trust-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(240,90,26,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.trust-text strong {
  display: block;
  font-size: 8px;
  font-weight: 700;
  color: var(--white);
}
.trust-text span {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   CATEGORIES ICONS
   ============================================= */
.categories-section {
    padding: 16px 0;
    background: #fff;
}

.categories-grid {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 4px solid #8080800f;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    gap:10px;
}

.categories-grid::-webkit-scrollbar {
    display: none;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.cat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ebebeb;
    transition: border-color 0.2s, transform 0.2s;
}

.cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-item:hover .cat-icon {
    border-color: #f25c05;
    transform: scale(1.05);
}

.cat-label {
    font-size: 10px;
    color: #333;
    text-align: center;
    line-height: 1.3;
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cat-item:hover .cat-label {
    color: #f25c05;
}

/* =============================================
   HERO BANNER / SLIDER
   ============================================= */
.hero-section {
  padding: 16px 14px;
  background: var(--white);
  border-bottom: 8px solid var(--gray-light);
}
.hero-slide {
  background: #FFF0E2;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}
.hero-content { flex: 1; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.hero-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 4px;
}
.hero-title .accent { color: var(--orange); }
.hero-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 160px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-xl);
}
.hero-image {
  width: 160px;
  flex-shrink: 0;
  text-align: center;
  font-size: 90px;
  line-height: 1;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.hero-dot.active { background: var(--orange); width: 22px; border-radius: 4px; }

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  display: flex;
  justify-content: space-between;
  padding: 0px 10px;
  background: var(--white);
  border-bottom: 8px solid var(--gray-light);
  gap: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}
.feature-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; stroke-width: 1.6; }
.feature-item strong {
  font-size: 8px;
  font-weight: 700;
  color: var(--dark);
  display: block;
}
.feature-item span {
  font-size: 8px;
  color: var(--gray);
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 14px 12px;
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {

  :root {
    --max-w: 100%;
  }
  
  .products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 14px 16px;
  }
.products-grid .product-card {
  min-width: 200px;
  max-width: 200px;
}
.products-grid .product-img { height: 150px; }
  .new-badge {
  background: #F05A1A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}


/* =============================================
   CONSEILS & GUIDES
   ============================================= */
.guides-section {
  padding: 20px 0;
  background: #fff;
  border-bottom: 8px solid #f0f0f0;
}

.guides-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 14px;
}

.guides-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.guides-link {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  color: #F05A1A;
  text-decoration: none;
}
.guides-link svg {
  width: 16px;
  height: 16px;
  stroke: #F05A1A;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guides-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 14px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.guides-scroll::-webkit-scrollbar { display: none; }

.guide-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 200px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-img {
  position: relative;
  width: 100%;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
}
.guide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.guide-card:active .guide-img img {
  transform: scale(1.03);
}
.guide-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}

.guide-cat-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #F05A1A;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 1;
  letter-spacing: 0.3px;
}

.guide-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.guide-title {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-date {
  font-size: 11px;
  color: #aaa;
}
 

  .guides-section { padding: 24px 0; }
  .guides-title { font-size: 20px; }
  .guides-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    padding: 0 14px;
    gap: 16px;
  }
  .guide-card { width: auto; }
  .guide-img { height: 180px; }
  .guide-title { font-size: 14px; }
  .custom-logo-link img {
      width:200px !important;
      height:100px !important;
  }
  
  body {
    background: #f0f0f0;
    margin-top:-8px;
  }

  .site-wrap {
    max-width: var(--max-w);
    padding-bottom: 0;
  }

  .site-header {
    padding: 16px 32px 12px;
  }

  .header-top {
    margin-bottom: 14px;
  }

  .header-menu-btn {
    display: none;
  }

  .site-logo .logo-text {
    font-size: 36px;
  }

  .header-icons {
    gap: 24px;
  }

  .header-icon-btn {
    width: 38px;
    height: 38px;
  }

  .header-icon-btn svg {
    width: 26px;
    height: 26px;
  }

  .header-search {
    padding: 0 32px;
    margin-bottom: 4px;
  }

  .search-input-wrap {
    height: 52px;
    border-radius: 12px;
  }

  .search-btn {
    height: 44px;
    font-size: 14px !important;
    padding: 0 28px;
    border-radius: 12px;
  }

  .search-results {
    left: 32px;
    right: 32px;
  }

  .trust-banner {
    width: calc(100% - 64px);
    margin-left: auto;
    margin-right: auto;
    padding: 10px 24px;
    border-radius: 12px;
  }

  .trust-item {
    gap: 12px;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
  }

  .trust-icon svg {
    width: 22px;
    height: 22px;
  }

  .trust-text strong {
    font-size: 11px;
  }

  .trust-text span {
    font-size: 10px;
  }

  .categories-section {
    display:none;
  }

  .categories-grid {
    width:100%;
    display: flex;
    overflow-x: visible;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 24px;
    border-bottom: none;
    padding-bottom: 8px;
  }

  .cat-icon {
    width: 100px;
    height: 100px;
    border-width: 2px;
  }

  .cat-label {
    font-size: 11px;
    max-width: 70px;
  }

  .hero-section {
    padding: 24px 32px;
  }

  .hero-slide {
    min-height: 280px;
    padding: 36px 40px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 14px;
    max-width: 280px;
  }

  .hero-cta {
    font-size: 15px;
    padding: 14px 28px;
  }

  .hero-image {
    width: 240px;
    font-size: 130px;
  }

  .features-strip {
    padding: 24px 32px;
    gap: 16px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
  }

  .feature-icon svg {
    width: 34px;
    height: 34px;
  }

  .feature-item strong {
    font-size: 12px;
  }

  .feature-item span {
    font-size: 11px;
  }

  .section-header {
    padding: 24px 32px 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-link {
    font-size: 14px;
  }

  


  .nouveautes-section {
    padding: 24px 0;
  }

  .nouveautes-header {
    padding: 0 32px 16px;
  }

  .nouveautes-title {
    font-size: 22px;
  }

  .nv-img {
    height: 200px;
  }

  .nv-name {
    font-size: 13px;
  }

  .nv-price ins {
    font-size: 15px;
  }



  .guides-section {
    padding: 24px 0;
  }

  .guides-header {
    padding: 0 32px 16px;
  }

  .guides-title {
    font-size: 22px;
  }

  .guides-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    padding: 0 32px;
    gap: 20px;
  }

  .guide-card {
    width: auto;
  }

  .guide-img {
    height: 190px;
  }

  .guide-title {
    font-size: 14px;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 32px 24px;
  }

  .products-grid .product-img {
    height: 200px;
  }

  .bottom-nav {
    display: none !important;
  }

  .mobile-menu-overlay,
  .mobile-menu {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px 32px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .desktop-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.15s;
  }

  .desktop-nav a:hover {
    color: var(--orange);
  }

  .desktop-nav a.active {
    color: var(--orange);
    font-weight: 700;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
  }

  .woocommerce ul.products li.product .price {
    font-size: 16px !important;
  }

}

/* =============================================
   PRODUCT GRID (2 columns)
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 14px 16px;
}
.products-grid .product-card {
  min-width: unset;
  max-width: unset;
}
.products-grid .product-img { height: 150px; }



/* =============================================
   BOTTOM NAV
   ============================================= */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  padding: 10px 0 14px;
  z-index: 200;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
}
.nav-item svg { width: 22px; height: 22px; stroke: var(--gray); fill: none; stroke-width: 1.8; }
.nav-item span { font-size: 10px; color: var(--gray); font-weight: 500; }
.nav-item.active svg { stroke: var(--orange); }
.nav-item.active span { color: var(--orange); font-weight: 700; }
.nav-cart-btn {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: -18px;
  box-shadow: 0 4px 14px rgba(240,90,26,0.4);
}
.nav-cart-btn svg { stroke: var(--white); width: 22px; height: 22px; }

/* =============================================
   WOOCOMMERCE OVERRIDES
   ============================================= */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.woocommerce ul.products li.product a img {
  margin: 0 !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 12px !important;
  font-weight: 500 !important;
  padding: 10px 10px 4px !important;
}
.woocommerce ul.products li.product .price {
  color: var(--orange) !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  padding: 0 10px 10px !important;
}
.woocommerce ul.products li.product a.button {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
}

/* =============================================
   MOBILE MENU (off-canvas)
   ============================================= */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed;
  top: 0; left: -100%;
  width: 80%; max-width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 301;
  transition: left .3s ease;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-menu.open { left: 0; }
.menu-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gray);
}
.menu-logo { font-size: 26px; font-weight: 800; color: var(--orange); margin-bottom: 28px; }
.menu-nav li { padding: 14px 0; border-bottom: 1px solid var(--border); }
.menu-nav li a { font-size: 15px; font-weight: 500; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.menu-nav li a svg { width: 18px; height: 18px; stroke: var(--orange); }

/* =============================================
   UTILITIES
   ============================================= */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.custom-logo-link img {
    width:80px;
    height:60px;
}

/* =========================================================
   ZYRA – Header / Hero (desktop)
   Variables propres au header Zyra (préfixées pour éviter
   tout conflit avec les variables --orange/--navy ci-dessus)
   ========================================================= */

:root{
	--zyra-orange      : #F4740F;
	--zyra-orange-dark : #DD6608;
	--zyra-navy        : #181D2C;
	--zyra-navy-light  : #232a3d;
	--zyra-cream       : #FBEFE5;
	--zyra-cream-soft  : #FCF4EC;
	--zyra-dark        : #1B2435;
	--zyra-gray        : #6B7280;
	--zyra-border      : #ECECEC;
	--zyra-radius      : 10px;
	--zyra-radius-lg   : 18px;
	--zyra-container   : 1320px;
}

.zyra-container *,
.zyra-topbar *,
.zyra-header *,
.zyra-nav *,
.zyra-hero *,
.zyra-features *,
.zyra-trust *{
	box-sizing: border-box;
}

.zyra-container{
	max-width: var(--zyra-container);
	margin: 0 auto;
	padding: 0 24px;
}

.zyra-accent{ color: var(--zyra-orange); }

.screen-reader-text{
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* ---------- Barre d'annonces ---------- */
.zyra-topbar{
	background: var(--zyra-cream);
	font-size: 14px;
	color: var(--zyra-dark);
	border-bottom: 1px solid #F4E3D4;
}

.zyra-topbar__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 24px;
	flex-wrap: wrap;
}

.zyra-topbar__list{
	display: flex;
	align-items: center;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.zyra-topbar__item{
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	white-space: nowrap;
}

.zyra-topbar__sep{
	color: #000;
	font-weight: 400;
	font-size:15px;
}

.zyra-icon--orange{
	display: inline-flex;
	color: var(--zyra-orange);
	flex-shrink: 0;
}

.zyra-topbar__help{
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	font-weight: 500;
}

.zyra-topbar__phone{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--zyra-orange);
	font-weight: 700;
	text-decoration: none;
}

.zyra-topbar__phone:hover{ color: var(--zyra-orange-dark); }

/* ---------- Header principal ---------- */
.zyra-header{
	background: #fff;
	padding: 18px 0;
}

.zyra-header__inner{
	display: flex;
	align-items: center;
	gap: 32px;
}

.zyra-logo{
	display: flex;
	flex-direction: column;
	text-decoration: none;
	flex-shrink: 0;
}

.zyra-logo__mark{
	display: block;
	height: 48px;
	width: auto;
	margin-left: -6px;
}

.zyra-logo__tagline{
	font-size: 13px;
	color: var(--zyra-dark);
	margin-top: 2px;
	white-space: nowrap;
}

.zyra-logo__dash{
	color: var(--zyra-orange);
	margin-right: 4px;
}

.zyra-search{
	flex: 1 1 auto;
	display: flex;
	align-items: stretch;
	max-width: 600px;
	border: 1px solid var(--zyra-border);
	border-radius: var(--zyra-radius);
	overflow: hidden;
	background: #fff;
	height:50px;
}

.zyra-search__input{
	flex: 1 1 auto;
	border: none;
	outline: none;
	padding: 0 18px;
	font-size: 15px;
	color: var(--zyra-dark);
	min-width: 0;
	background: transparent;
}

.zyra-search__input::placeholder{
	color: #B8BCC4;
}

.zyra-search__btn{
	flex-shrink: 0;
	width: 56px;
	border: none;
	background: var(--zyra-orange);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .15s ease;
}

.zyra-search__btn:hover{ background: var(--zyra-orange-dark); }

.zyra-actions{
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}

.zyra-actions__item a{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	color: var(--zyra-dark);
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}

.zyra-actions__item svg{
	color: var(--zyra-dark);
}

.zyra-actions__item a:hover svg{
	color: var(--zyra-orange);
}

.zyra-actions__icon-wrap{
	position: relative;
	display: inline-flex;
}

.zyra-actions__badge{
	position: absolute;
	top: -8px;
	right: -10px;
	background: var(--zyra-orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	min-width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

.zyra-burger{
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.zyra-burger span{
	display: block;
	width: 24px;
	height: 2px;
	background: var(--zyra-dark);
	margin: 0 auto;
	transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Barre de navigation / catégories ---------- */
.zyra-nav{
	background: var(--zyra-navy);
	padding: 14px 0;
}

.zyra-nav__inner{
	display: flex;
	align-items: center;
	gap: 28px;
}

.zyra-nav__cats{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--zyra-orange);
	color: #fff;
	border: none;
	border-radius: var(--zyra-radius);
	padding: 12px 22px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background .15s ease;
}

.zyra-nav__cats:hover{ background: var(--zyra-orange-dark); }

.zyra-nav__menu{
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.zyra-nav__menu li a{
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	transition: color .15s ease;
}

.zyra-nav__menu li a:hover{
	color: var(--zyra-orange);
}

.zyra-nav__promo a,
.zyra-nav__menu li.zyra-nav__promo > a{
	color: var(--zyra-orange) !important;
}

.zyra-nav__menu li.zyra-nav__promo{
	margin-left: auto;
}

/* ---------- Hero ---------- */
.zyra-hero{
	background: var(--zyra-cream-soft);
	padding: 56px 0;
}

.zyra-hero__inner{
	display: grid;
	grid-template-columns: minmax(320px, 460px) 1fr;
	gap: 56px;
	align-items: center;
}

.zyra-hero__title{
	font-size: 48px;
	line-height: 1.15;
	font-weight: 800;
	color: var(--zyra-dark);
	margin: 0;
}

.zyra-hero__divider{
	display: block;
	width: 64px;
	height: 4px;
	background: var(--zyra-orange);
	border-radius: 2px;
	margin: 24px 0;
}

.zyra-hero__text{
	font-size: 17px;
	line-height: 1.6;
	color: var(--zyra-dark);
	margin: 0 0 28px;
	max-width: 460px;
}

.zyra-btn{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: var(--zyra-radius);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	padding: 16px 28px;
	transition: background .15s ease, transform .1s ease;
}

.zyra-btn--primary{
	background: var(--zyra-orange);
	color: #fff;
}

.zyra-btn--primary:hover{
	background: var(--zyra-orange-dark);
	color: #fff;
}

.zyra-btn--primary:active{
	transform: translateY(1px);
}

.zyra-hero__perks{
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 36px 0 0;
	padding: 0;
	flex-wrap: wrap;
}

.zyra-hero__perk{
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 600;
	color: var(--zyra-dark);
	line-height: 1.35;
}

.zyra-hero__perk-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid var(--zyra-orange);
	color: var(--zyra-orange);
	flex-shrink: 0;
}

.zyra-hero__media{
	position: relative;
	border-radius: var(--zyra-radius-lg);
	overflow: hidden;
}

.zyra-hero__slider{
	position: relative;
	border-radius: var(--zyra-radius-lg);
	overflow: hidden;
	aspect-ratio: 16 / 9.2;
	min-height: 320px;
	background: #e9e3da;
}

.zyra-hero__slide{
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease;
}

.zyra-hero__slide.is-active{
	opacity: 1;
	visibility: visible;
}

.zyra-hero__slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zyra-hero__dots{
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 2;
}

.zyra-hero__dot{
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.6);
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, transform .2s ease;
}

.zyra-hero__dot.is-active{
	background: var(--zyra-orange);
	transform: scale(1.15);
}

/* ---------- Bandeau avantages (4 cartes) ---------- */
.zyra-features{
	background: #fff;
	border-top: 1px solid var(--zyra-border);
	border-bottom: 1px solid var(--zyra-border);
	padding: 28px 0;
}

.zyra-features__grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.zyra-features__item{
	display: flex;
	align-items: center;
	gap: 14px;
}

.zyra-features__icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1.5px solid var(--zyra-dark);
	color: var(--zyra-dark);
	flex-shrink: 0;
}

.zyra-features__item strong{
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--zyra-dark);
	margin-bottom: 2px;
}

.zyra-features__item span{
	font-size: 13px;
	color: var(--zyra-gray);
}

/* ---------- Bandeau réassurance (bas) ---------- */
.zyra-trust{
	background: var(--zyra-cream-soft);
	padding: 22px 0;
}

.zyra-trust__grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.zyra-trust__item{
	display: flex;
	align-items: center;
	gap: 12px;
}

.zyra-trust__icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: var(--zyra-orange) !important;
	flex-shrink: 0;
}

.zyra-trust__item strong{
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--zyra-dark);
	margin-bottom: 2px;
}

.zyra-trust__item span{
	font-size: 13px;
	color: var(--zyra-gray);
}

/* ---------- Responsive du header Zyra (réglages internes) ---------- */
@media (max-width: 1100px){
	.zyra-hero__inner{
		grid-template-columns: 1fr;
	}
	.zyra-hero__title{ font-size: 38px; }

	.zyra-features__grid,
	.zyra-trust__grid{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px){
	.zyra-topbar__list .zyra-topbar__item:nth-child(5),
	.zyra-topbar__sep:nth-child(4){
		display: none;
	}

	.zyra-actions__item:nth-child(2){
		display: none;
	}
}

@media (max-width: 860px){
	.zyra-header__inner{
		flex-wrap: wrap;
	}

	.zyra-search{
		order: 3;
		max-width: 100%;
		flex-basis: 100%;
	}

	.zyra-burger{
		display: flex;
	}

	.zyra-nav__inner{
		flex-wrap: wrap;
	}

	.zyra-nav__menu{
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		width: 100%;
		padding-top: 10px;
	}

	.zyra-nav__menu li.zyra-nav__promo{
		margin-left: 0;
	}

	body.zyra-menu-open .zyra-nav__menu,
	.zyra-nav.is-open .zyra-nav__menu{
		display: flex;
	}

	.zyra-topbar__inner{
		justify-content: center;
		text-align: center;
	}

	.zyra-topbar__help{
		display: none;
	}
}

@media (max-width: 640px){
	.zyra-container{ padding: 0 16px; }
	.zyra-features__grid,
	.zyra-trust__grid{
		grid-template-columns: 1fr;
	}

	.zyra-actions{
		gap: 18px;
	}

	.zyra-actions__item span{
		display: none;
	}

	.zyra-topbar__list{
		justify-content: center;
	}

	.zyra-topbar__sep{ display: none; }
}

/* =========================================================
   BASCULE HEADER MOBILE / DESKTOP (breakpoint 861px)
   - .zyra-mobile-header  : visible < 861px (header-mobile custom)
   - .zyra-desktop-header : visible >= 861px (header Zyra)
   ========================================================= */
.zyra-desktop-header{
	display: none;
}
@media (min-width: 861px){
	.zyra-mobile-header{
		display: none;
	}
	.zyra-desktop-header{
		display: block;
	}
}

/* =============================================
 Reglage pc
   ============================================= */



/* ── TRÈS GRAND ÉCRAN ── */
@media (min-width: 1200px) {

  .flash-section .products-scroll {
    display: flex !important;
    overflow-x: auto;
    padding: 0 32px 8px;
    gap: 16px;  }

  .nouveautes-scroll {
    grid-template-columns: repeat(6, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(5, 1fr) !important;
  }

}


/* =============================================
 Reglage footer
   ============================================= */
   
   /* ===== RESET & BASE ===== */
.zyra-newsletter,
.zyra-footer,
.zyra-mobile-nav,
.zyra-footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* ===== NEWSLETTER ===== */
.zyra-newsletter {
  background: #1a2340;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.zyra-newsletter-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.zyra-mail-icon img {
  font-size: 28px;
  opacity: 0.8;
}
.zyra-newsletter-left strong {
  font-size: 15px;
  display: block;
}
.zyra-newsletter-left p {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 2px;
}
.zyra-newsletter-right {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.zyra-newsletter-right input {
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  min-width: 220px;
  outline: none;
}
.zyra-newsletter-right button {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.zyra-newsletter-right button:hover {
  background: #ea6c0a;
}

/* ===== FOOTER PRINCIPAL ===== */
.zyra-pay-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 4px 8px;
  background: #fff;
}
.zyra-logo-img{
    width:50px;
}

.zyra-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 40px 40px 0;
}
.zyra-footer-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}

/* Brand */
.zyra-footer-brand {
  flex: 1 1 180px;
  min-width: 160px;
}
.zyra-logo {
  font-size: 26px;
  font-weight: 800;
  color: #1a2340;
  letter-spacing: -1px;
  margin-bottom: 10px;
  font-style: italic;
}
.zyra-footer-brand p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 14px;
}
.zyra-socials {
  display: flex;
  gap: 10px;
}
.zyra-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
}
.zyra-socials a:hover {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

/* Colonnes */
.zyra-footer-col {
  flex: 1 1 140px;
  min-width: 130px;
}
.zyra-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}
.zyra-footer-col ul {
  list-style: none;
}
.zyra-footer-col ul li {
  margin-bottom: 9px;
}
.zyra-footer-col ul li a {
  font-size: 12.5px;
  color: #6b7280;
  text-decoration: none;
}
.zyra-footer-col ul li a:hover {
  color: #f97316;
}

/* Paiement */
.zyra-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.zyra-pay-badge {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid #e5e7eb;
}
.zyra-pay-badge.visa { background: #1a2340; color: #fff; }
.zyra-pay-badge.mc { background: #fff; color: #e53e3e; font-size: 18px; letter-spacing: -4px; }
.zyra-pay-badge.mobile { background: #f3f4f6; color: #374151; }
.zyra-pay-badge.orange { background: #f97316; color: #fff; }

/* Footer bottom */
.zyra-footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9ca3af;
}
.zyra-country {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}



.zyra-cart-btn {
  background: #f97316;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  margin-top: -20px;
  box-shadow: 0 4px 12px rgba(249,115,22,0.4);
}
.zyra-cart-btn span { font-size: 22px !important; }
.zyra-cart-btn small { font-size: 9px !important; color: #fff; }

/* ===== RESPONSIVE ===== */
@media (min-width: 992px) { 
  .zyra-newsletter-right {
    width: 45%;
  }
  .zyra-newsletter-right input {
       width: 70% !important;
  }
     
} 
@media (max-width: 768px) {
  .zyra-newsletter {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .zyra-newsletter-right input {
    flex: 1;
    min-width: 0;
  }
  .zyra-footer {
    padding: 30px 20px 0;
    padding-bottom: 80px; /* espace pour la nav mobile */
  }
  .zyra-footer-inner {
    gap: 24px;
  }
}