:root {
  --bleu: #1bbde1;
  --gris-panier: #d9d9d9;
  --gris-prix: #efefef;
  --jaune: #dfa73f;
  --rouge: #ca0021;
  --vert: #2fc27d;
  --vert-fonce: #1b3a3f;
  --mainty: #000000;
  --fotsy: #ffffff;
  --border-fotsy: #eee;
  --border: #E0E0E0;
  --text-muted: #6c757d;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 10px;
  --radius: 20px;

}
html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "Imprima", sans-serif;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
background: #f2f3f5 !important;
}
.couleur-vert{
color: var(--vert-fonce);
}
.couleur-rouge{
color: var(--rouge);
}
  .share-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }

  .share-modal-overlay.active {
    display: flex;
  }

  .share-modal {
    background: var(--fotsy);
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 420px;
    backdrop-filter: blur(2px);
  }

  .share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .share-modal-close {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
  }

  .share-modal-icons {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .share-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    width: 60px;
    transition: all 0.3s ease;
  }

  .share-icon-btn:hover {
    transform: scale(1.1);
  }

  .share-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fotsy);
    font-size: 18px;
    margin-bottom: 6px;
  }

  .share-icon.fb {
    background: var(--bleu);
  }

  .share-icon.tw {
    background: var(--mainty);
  }

  .share-icon.wa {
    background: var(--vert);
  }

  .share-icon.em {
    background: var(--gris-panier);
  }

  .share-icon.li {
    background: var(--bleu);
  }

  .share-modal-link {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
  }

  .share-modal-link input {
    flex: 1;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
    background: #f5f5f5;
  }

  .share-modal-link button {
    border: none;
    background: var(--vert-fonce);
    color: var(--fotsy);
    padding: 0 16px;
    font-weight: 600;
    cursor: pointer;
  }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.anim-fade {
  animation: fadeInUp 0.5s ease both;
}

.anim-slide {
  animation: slideInLeft 0.45s ease both;
}
.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandOpen {
  from {
    opacity: 0;
    max-height: 0;
  }

  to {
    opacity: 1;
    max-height: 1000px;
  }
}
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}
@keyframes slideUp {
from {
  opacity: 0;
  transform: translateY(-5px);
}

to {
  opacity: 1;
  transform: translateY(0);
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 400;
}
p,
li {
font-family: "Inter", sans-serif;
font-size: 0.85rem;
font-weight: 400;
}

.badge-devis {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-devis i {
  font-size: 0.55rem;
}

.badge-en-attente {
  background: rgba(223, 167, 63, 0.2);
  border: 1px solid rgba(223, 167, 63, 0.5);
  color: var(--jaune);
}

.badge-accepte {
  background: rgba(47, 194, 125, 0.2);
  border: 1px solid rgba(47, 194, 125, 0.5);
  color: var(--vert);
}

.badge-expire {
  background: rgba(202, 0, 33, 0.2);
  border: 1px solid rgba(202, 0, 33, 0.5);
  color: var(--rouge);
}
.badge-promotion {
  background: #dc3545;
  color: var(--fotsy);
}

.badge-envoyer {
  background: rgba(27, 189, 225, 0.2);
  border: 1px solid rgba(27, 189, 225, 0.5);
  color: var(--bleu);
}

.top-bar {
background: var(--rouge);
color: var(--fotsy);
font-size: 0.9rem;
padding: 8px 0;
}

.top-bar a {
color: var(--fotsy);
text-decoration: none;
transition: opacity 0.3s;
}
.top-bar a:hover {
opacity: 0.8;
}

.top-bar i {
margin-right: 6px;
}
.top-bar img {
filter: brightness(0) invert(1);
vertical-align: middle;
width: 32px;
}
.main-header {
background: var(--fotsy);
position: fixed;
top: 0;
z-index: 1000;
}
.logo-wrapper img {
width: 220px;
height: auto;
}
.header-grid {
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 5px 0;
gap: 30px;
}
.search-wrapper {
position: relative;
flex: 1;
max-width: 600px;
}
.search-wrapper input {
width: 100%;
padding: 10px 25px;
border: 2px solid #333;
border-radius: 25px;
font-size: 14px;
}
.search-wrapper input:focus {
outline: none;
border: 2px solid var(--rouge);
box-shadow: 0 0 0 2px rgba(202, 02, 33, 0.2);
}
.search-wrapper button {
position: absolute;
width: 35px;
height: 35px;
padding: 5px;
right: 5px;
top: 50%;
transform: translateY(-50%);
border: none;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s;
}
.search-wrapper button:hover {
transform: translateY(-50%) scale(1.05);
}
.header-actions {
display: flex;
gap: 25px;
align-items: center;
}
.header-icons a {
color: var(--mainty);
font-weight: 400;
font-size: 0.85rem;
}
.header-actions img{
width: 45px;
height: auto;
}
.action-item {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
color: #000;
font-family: "Inter", sans-serif;
}
.action-item span {
font-size: 13px;
font-weight: 500;
white-space: nowrap;
}
.icon-cart-wrapper {
position: relative;
}
.cart-count {
position: absolute;
top: -2px;
right: 25px;
background: var(--rouge);
color: var(--fotsy);
font-size: 10px;
font-weight: bold;
padding: 2px 5px;
border-radius: 50px;
}
.main-nav {
padding: 3px 0;
background-color: var(--gris-panier);
font-size: 1.2rem;
}
.categories-btn {
display: flex;
align-items: center;
gap: 12px;
border: 2px solid var(--rouge);
border-radius: 8px;
padding: 8px 22px;
color: var(--rouge);
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}
.categories-container:hover .categories-btn {
background-color: var(--rouge);
color: var(--fotsy);
}
.categories-container {
position: relative;
}
.mega-menu {
display: none;
position: absolute;
left: 0;
background: var(--fotsy);
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
z-index: 1000;
overflow-y: auto;
border: 1px solid var(--border-fotsy);
min-width: 800px;
border-radius: 4px;
}
.categories-container:hover .mega-menu {
display: flex;
}
.menu-column {
padding: 20px 0;
border-right: 2px solid var(--border-fotsy);
font-size: 14px;
}
.mega-menu ul {
list-style: none;
padding: 0;
margin: 0;
}
.mega-menu li {
padding: 12px 20px;
font-size: 0.85rem;
cursor: pointer;
display: flex;
align-items: center;
gap: 12px;
}
.mega-menu li i.ms-auto {
margin-left: auto;
font-size: 12px;
}
.mega-menu li:hover,
.mega-menu li.active {
color: var(--rouge);
font-weight: 600;
}
.level-1 li:hover,
.level-1 li.active {
box-shadow: inset 2px 0 0 var(--rouge);
}
.level-1 {
width: 400px;
max-height: 500px;
overflow-y: auto;
}
.level-1 li:hover + .level-2 {
display: block;
}
.level-2 {
width: 400px;
display: none;
max-height: 500px;
overflow-y: auto;
}
.main-nav .nav-link img {
width: 25px;
height: 25px;
border-radius: 5px;
}
.main-nav .nav-link {
color: var(--mainty);
font-size: 0.85rem;
font-weight: 400;
padding: 0 15px !important;
}
.main-nav .nav-link:hover {
text-decoration: none;
color: var(--rouge);
opacity: 1;
}
.column-title {
padding: 0 20px 15px;
font-weight: bold;
text-decoration: underline;
color: #333;
font-size: 13px;
}
.hero-section {
  padding: 10px 0;
  overflow: hidden;
}

.carousel-peek-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.peek-viewport {
  width: 100%;
  overflow: hidden;
}

.peek-track {
  display: flex;
  gap: 12px;
  will-change: transform;
}
.imgFram {
  border-radius: 15px;
}
.imgFram img{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}
.peek-slide {
  flex: 0 0 92%;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.peek-slide.active-slide {
  opacity: 1;
}

.peek-slide img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.peek-btn {
  background: var(--vert-fonce);
  color: var(--fotsy);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.peek-btn:hover {
  background: var(--fotsy);
  color: var(--vert-fonce);
}

.peek-btn.prev {
  left: 10px;
}

.peek-btn.next {
  right: 10px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--rouge);
  color: var(--fotsy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(199, 0, 30, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-5px);
}
.products-section,
.tendance-section,
.promotion-section, .categories-section {
padding: 60px 0px 0px 0px;
}
.products-section .row,
.tendance-section .row,
.promotion-section .row {
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
padding-bottom: 20px;
-ms-overflow-style: none;
scrollbar-width: none;
}
.products-section .row::-webkit-scrollbar,
.tendance-section .row::-webkit-scrollbar,
.promotion-section .row::-webkit-scrollbar {
display: none;
}
.products-section .col-12,
.tendance-section .col-12,
.promotion-section .col-12 {
flex: 0 0 auto;
scroll-snap-align: start;
}
.nav-btn {
position: absolute;
top: 62%;
transform: translateY(-50%);
width: 35px;
height: 35px;
background-color: var(--vert-fonce);
color: var(--fotsy);
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.nav-btn:hover {
background: var(--fotsy);
border: 2px solid var(--vert-fonce);
transform: translateY(-50%) scale(1.1);
color: var(--vert-fonce);
}
.prev-btn {
left: -25px;
}
.next-btn {
right: -25px;
}

.new {
background: var(--vert);
color: var(--fotsy) !important;

}
.rouge {
background: var(--rouge);
color: var(--fotsy) !important;

}
.flash {
background: var(--bleu);
color: var(--fotsy) !important;

}
.promotion {
background: var(--jaune);
color: var(--fotsy) !important;

}

.product-category {
font-size: 0.7rem;
text-transform: uppercase;
font-weight: 400;
}
.text_prix_base{
font-family: "Inter", sans-serif;
font-size: 0.85rem;
font-weight: 400;
}
.trc-product-card-horizontal {
display: flex !important;
flex-direction: row !important;
height: 200px;
border: 1px solid var(--border-fotsy);
border-radius: 15px;
padding: 12px;
background: var(--fotsy);
transition: var(--transition);
overflow: hidden;
text-decoration: none !important;
}

.trc-product-card-horizontal:hover {
transform: translateY(-2px);
}

.trc-img-container {
width: 40% !important;
height: 100%;
position: relative;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
}

.trc-img-container img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}

.trc-content-body {
width: 60%;
padding-left: 15px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: left !important;
}

.trc-price-box .prix_de_base {
margin-top: auto;
font-weight: 800;
color: var(--vert);
font-size: 1rem;
}

.product-item-wrapper {
  position: relative;
}
.product-card {
display: flex;
flex-direction: column;
border: 1px solid var(--border-fotsy);
background: var(--fotsy);
border-radius: 30px;
overflow: hidden;
transition: var(--transition);
position: relative;
height: 100%;
transition: transform 0.3s ease;
}
.product-details-hover {
opacity: 0;
visibility: hidden;
height: 0;
overflow: hidden;
transition: all 0.3s ease;
background: var(--fotsy);
}

.product-card .product_content{
flex-grow: 1;
display: flex;
flex-direction: column;
padding: 5px;
}
.product-card:hover .product-details-hover {
opacity: 1;
visibility: visible;
height: auto;
}
.product-card:hover .base-price {
display: none;
}
.product-card .prix_de_base{
font-weight: 800;
color: var(--vert);
font-size: 1rem;
}
.product-card:hover {
border: 2px solid var(--border-fotsy);
}
.product-img-wrap {
  display: flex;
  justify-content: center;
position: relative;
aspect-ratio: 16/9;
overflow: hidden;
padding: 10px;
}
.product-img-wrap img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.product-info{
padding: 3px 0;
}
.product-badge {
position: absolute;
top: -10px;
right: 10px;
padding: 3px 10px;
border-radius: 20px;
font-size: 0.7rem;
font-weight: 600;
z-index: 1;
}
.product-title {
display: -webkit-box;
display: box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
height: auto;
margin-bottom: 5px;
font-size: 0.85rem;
line-height: 1.5rem;
}
.price-table {
width: 100%;
border-collapse: collapse;
}
.price-table td {
font-size: 0.85rem;
padding: 2px 5px;
border: 1px solid var(--fotsy);
background: var(--gris-prix);
}
.price-table .prix {
color: var(--vert);
font-weight: 700;
text-align: end;
}
.bas_de_cart {
background-color: var(--gris-panier);
padding: 10px 15px;
margin-top: auto;
}
.quantity-selector .btn {
background-color: transparent;
color: var(--fotsy);
border: none;
border-radius: 15px !important;
z-index: 5;
}
.quantity-selector input {
border: none;
font-weight: bold;
}
.quantity-selector {
width: 80px;
background: var(--vert-fonce);
border-radius: 15px;
padding: 2px;
}
.quantity-selector input {
width: 30px;
text-align: center;
border: none;
font-size: 12px;
}
.cart-btn {
background: var(--rouge);
color: var(--fotsy);
border: none;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 15px;
padding: 2px 20px;
transition: 0.3s;
}
.cart-btn:hover {
background-color: var(--vert-fonce);
transform: scale(1.05);
}
.btn-compare-toggle {
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid var(--vert-fonce);
  color: var(--vert-fonce);
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 5px 5px;
}

.btn-compare-toggle:hover {
  transform: scale(1.05);
  border: 1.5px solid var(--vert);
  color: var(--vert);
}

.btn-compare-toggle.selected {
  background: var(--vert);
  color: white;
  border-color: var(--vert);
}

#compare-slots::-webkit-scrollbar {
  height: 3px;
}

#compare-slots::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vert-fonce);
  z-index: 2000;
  padding: 12px 0 8px 0;
  transition: transform 0.3s ease-in-out;
}

.compare-bar.collapsed {
  transform: translateY(calc(100% - 10px));
}

.compare-card {
  position: relative;
  min-width: 220px;
  max-width: 280px;
  height: 50px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  flex-shrink: 0;
}

.compare-card-img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.compare-card-body {
  margin-left: 10px;
  overflow: hidden;
  flex-grow: 1;
}

.compare-card-title {
  font-size: 11px;
  font-weight: bold;
  margin: 0;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compare-card-price {
  font-size: 11px;
  color: var;
  font-weight: bold;
  margin: 0;
}

.compare-slot-remove {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--rouge);
  color: white !important;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 10px;
  font-weight: bold;
  z-index: 10;
}

.btn-toggle-bar {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vert-fonce);
  color: var(--fotsy);
  border: none;
  border-radius: 6px 6px 0 0;
  padding: 2px 18px;
  cursor: pointer;
}

.compare-bar-title {
  color: var(--fotsy);
  margin: 0;
  font-size: 1.1rem;
}

.btn-compare-now {
  background: var(--fotsy);
  color: var(--vert-fonce);
 padding: 5px 10px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  transition: all 0.3s ease;
}
.btn-clear-compare {
  background: transparent;
  color: var(--fotsy);
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid var(--fotsy);
  transition: all 0.3s ease;
}
.btn-compare-now:hover, .btn-clear-compare:hover {
  transform: translateY(-2px);
}

.btn-compare-now:disabled {
  opacity: 0.3;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.category-circle {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: rgba(27, 58, 63, 0.3);
  background-size: 62%;
  background-repeat: no-repeat;
  background-position: center;
  transition: var(--transition);
}

.category-card:hover .category-circle {
  background-color: rgba(27, 58, 63, 0.8);
}

.category-name {
  margin: 0;
  color: var(--mainty);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 400;
  transition: var(--transition);
}

.category-card:hover .category-name {
  color: var(--vert-fonce);
  transform: scale(1.08);

}
.promo-card img {
width: 100%;
object-fit: cover;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.promo-card img:hover {
transform: translateY(-5px);
}
.partner-img {
max-width: 50px;
height: auto;
}
.partner-img:hover {
opacity: 0.8;
}
.section-title {
font-size: 2rem;
font-weight: 500;
color: #333;
padding-bottom: 30px;
}
.trust-section {
background-color: var(--vert-fonce);
padding: 70px 10px;
}
.years-badge {
display: block;
align-content: center;
border: 4px solid var(--rouge);
border-radius: 15px;
padding: 15px 5px;
color: var(--fotsy);
text-align: center;
}
.years-badge .title {
font-size: 1rem;
margin-bottom: 20px;
font-weight: 300;
color: var(--fotsy);
}
.experience-content {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.emoji {
font-size: 1.75rem;
}
.years {
display: flex;
align-items: flex-end;
}
.text_20_year {
font-size: 4.16rem;
font-weight: 500;
color: var(--rouge);
line-height: 1;
}
.text {
font-size: 1.2rem;
margin-bottom: 8px;
}
.trust-item {
text-align: center;
color: var(--fotsy);
}
.trust-item .title {
font-size: 1.3rem;
font-weight: 300;
}
.trust-item .description {
font-size: 1rem;
font-weight: 200;
}

.newsletter-bar {
background-color: var(--rouge);
border-radius: 30px;
padding: 25px 10px;
position: absolute;
top: -50px;
width: 80%;
max-width: 1100px;
left: 50%;
transform: translateX(-50%);
z-index: 10;
}
.newsletter-wrapper {
position: relative;
width: 100%;
max-width: 350px; 
display: flex;
align-items: center;
}

.newsletter-input {
width: 100%;
padding: 12px 50px 12px 20px;
border: none;
border-radius: 30px;
outline: none;
font-style: italic;
height: 45px;
}

.newsletter-btn {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
width: 35px;
height: 35px;
border: none;
border-radius: 50%;
background-color: var(--rouge); 
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: transform 0.2s;
}

.newsletter-btn:hover {
transform: translateY(-50%) scale(1.1);
}
.email {
overflow-wrap: break-word;
}
.social-icons a {
color: var(--mainty);
background: var(--fotsy);
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
text-decoration: none;
transition: 0.3s;
}
.social-icons a:hover {
transform: scale(1.1);
}
.social-icons img{
width: 35px;
height: 35px;
}
.send-btn {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
color: var(--rouge);
font-size: 1.2rem;
cursor: pointer;
transition: transform 0.2s ease;
display: flex;
align-items: center;
}
.send-btn:hover {
transform: translateY(-50%) scale(1.1);
}
.main-footer .pied{
padding: 70px 0;
}
.main-footer h4 {
color: var(--mainty);
line-height: 2.8;
}
.main-footer li a {
color: var(--mainty);
text-decoration: none;
font-size: 1rem;
font-weight: 500;
line-height: 1.5;
}
.main-footer li a:hover{
  color: var(--rouge);
}
.newsletter-title {
font-size: 1.6rem;
font-weight: 700;
color: var(--fotsy);
font-family: 'Inter', sans-serif;
white-space: nowrap;
}
.android-nav {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 65px;
background: var(--rouge);
display: flex;
justify-content: space-around;
align-items: center;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
z-index: 2000;
}
.android-nav .nav-item {
text-decoration: none;
color: var(--fotsy);
display: flex;
flex-direction: column;
align-items: center;
font-size: 0.85rem;
}
.android-nav .nav-item i {
font-size: 20px;
margin-bottom: 2px;
color: var(--fotsy);
}
.badge-count_mobile {
position: absolute;
top: -10px;
right: 20px;
background: var(--vert-fonce);
color: var(--fotsy);
font-size: 8px;
padding: 2px 5px;
border-radius: 10px;
}
.mobile-sidebar {
display: flex;
  flex-direction: column;
position: fixed;
top: 0;
left: -280px;
width: 280px;
height: 100%;
background: var(--fotsy);
z-index: 3000;
transition: var(--transition);
box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
}
.mobile-sidebar.active {
left: 0;
}
.sidebar-header {
padding: 20px;
background: var(--rouge);
color: var(--fotsy);
display: flex;
justify-content: space-between;
align-items: center;
}

.sidebar-body {
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 10px 0;
overflow-y: auto;  
max-height: calc(100vh - 70px);
}
.sidebar-footer-nav {
background-color: #f0f0f0; 
border-top: 1px solid var(--border-fotsy);
padding-bottom: 20px; 
}
.mobile-cat-list {
list-style: none;
padding: 0;
background-color: #f9f9f9;
}
.mobile-cat-list li i {
width: 35px; 
text-align: center;
font-size: 1.2rem;
color: var(--rouge);
}
.mobile-cat-list li a {
display: flex;
align-items: center;
gap: 15px;
padding: 15px 20px;
color: var(--mainty);
text-decoration: none;
border-bottom: 2px solid var(--border-fotsy);
}
.submenu-inner {
max-height: 0;
overflow: hidden;
background-color: var(--fotsy);
list-style: none;
padding-left: 0;
transition: max-height 0.3s ease-out;
}
.has-submenu.open .submenu-inner {
max-height: 500px;
border-bottom: 2px solid var(--border-fotsy);
}
.submenu-inner li a {
padding: 12px 20px 12px 65px !important;
font-size: 0.85rem !important;
border-bottom: none !important;
}
.arrow-icon {
transition: transform 0.3s ease;
font-size: 0.8rem;
color: var(--mainty);
}
.has-submenu.open .arrow-icon {
transform: rotate(-90deg);
}

::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: var(--rouge);
border-radius: 5px;
}
@media (min-width: 1367px) {
.col-lg-2 {
  flex: 0 0 auto;
  width: 16,66%;
}
.peek-slide img {
  height: 350px !important;
}
}

@media (min-width: 992px) {
.header-grid {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.logo-wrapper {
  width: auto;
}

.search-wrapper {
  width: 100%;
  max-width: 650px;
}
.promo-highlights,
.partners-section{
  padding: 50px 15px !important;
}
.imagePage2{
  width: 100%;
  max-height: 400px;
}
.ordre2 img{
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  transition: opacity 0.2s ease-in-out;
}
.thumb-viewport {
  max-height: 320px;
  overflow-y: hidden;
  width: 100%;
}

.thumb-img {
  width: 100%;
  aspect-ratio: 1/1;
}
#thumbStack {
  transition: transform 0.3s ease;
}
}
@media (max-width: 991px) {
body {
  padding-bottom: 70px; /
}
.mega-menu {
  display: none;
  position: relative;
  min-width: 100%;
  box-shadow: none;
  border: none;
}
.categories-container.menu-open .mega-menu {
  display: block;
}
.mega-menu {
  flex-direction: column;
}

.menu-column {
  width: 100% !important;
  padding: 10px 0;
}
.categories-container:hover .mega-menu {
  display: none;
}
.categories-container.menu-open:hover .mega-menu {
  display: block;
}

.categories-dropdown {
  display: none;
}
.header-grid {
  justify-content: center;
}
.search-wrapper {
  width: 100%;
}

.countdown {
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav,
.header-icons {
  display: none !important;
}
.price-main {
  font-size: 2rem;
  font-weight: 500;
}
.trc-product-card-horizontal {
  height: 250px;
}
.trc-price-box .prix_de_base{
  font-size: 1rem;
}
.price-box {
  padding: 25px 10px !important;
  position: relative;
  margin: 0 10px;
}
.ordre2 img{
  background-size: cover;
  max-height: 250px;
  max-width: 300px;
  transition: opacity 0.2s ease-in-out;
}
.btn-devis{
  padding: 8px 6px !important;
  border-radius: 15px !important;
}
.trust-section {
  padding: 80px 10px !important;
}

.main-footer li a {
  color: var(--mainty);
  text-decoration: none;
  font-size: 1.19rem;
  line-height: 1.2;
}
.newsletter-bar {
  position: relative;
  top: 0;
  width: 100%;
  border-radius: 15px;
  margin-top: -50px;
}
.newsletter-input {
  width: 100%;
}
.back-to-top{
  display: none !important;
}
.mobile-toggle {
  display: flex !important;
  position: fixed !important;
  top: 35%;
  left: 0;
  width: 45px;
  height: 45px;
  background: var(--rouge);
  color: var(--fotsy);
  z-index: 1100;
  border-radius: 0 8px 8px 0;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.sidebar_compte {
  position: fixed !important;
  top: 0 !important;
  left: -280px !important;
  bottom: auto !important;
  transform: none !important;
  width: 280px !important;
  height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  background-color: var(--vert-fonce) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 2000;
  transition: left 0.3s ease;
}
.sidebar_compte.open {
  left: 0 !important;
}

.sidebar_compte-user {
  display: flex !important;
  flex-direction: column !important;
  padding: 40px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center !important;
  width: 100% !important;
}
.sidebar_compte-nav {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 15px !important;
  width: 100% !important;
  padding: 15px 0 !important;
}

.nav-item_mon_compte {
  width: 100% !important;
  padding: 12px 25px !important;
  justify-content: flex-start !important;
  border-radius: 0 !important;
  color: var(--fotsy) !important;
}
.sidebar_compte .dropdend {
  width: 100% !important;
}
.sidebar_compte .dropdown-menu {
  position: static !important;
  float: none !important;
  width: 100% !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border: none !important;
  transform: none !important;
  padding-left: 30px !important;
}
.sidebar_compte-bottom {
  padding: 20px !important;
  width: 100% !important;
}
.sidebar-header .close-sidebar {
  display: block !important;
  background: none !important;
  border: none !important;
  color: var(--fotsy) !important;
  font-size: 2rem !important;
  cursor: pointer !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.thumb-viewport {
  overflow-x: auto;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 15px;
}

#thumbStack {
  display: flex !important;
  flex-direction: row !important;
}

.thumb-viewport::-webkit-scrollbar {
  display: none;
}

.thumb-viewport {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* **********DEVIS******** */
.desktop-view {
  display: none !important;
}
.mobile-view {
  display: block !important;
}

}
@media (max-width: 768px) {

  .compare-bar {
    padding-top: 15px;
  }

  #compare-slots {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }

  .compare-card {
    min-width: 140px;
    height: 42px;
    padding: 3px 6px;
  }

  .compare-card-title {
    font-size: 9px;
  }

  .btn-compare-now {
    padding: 5px 10px;
  }

  .btn-xs {
    font-size: 0.7rem;
  }
.top-bar .tete > .d-flex {
  flex-direction: column !important;
  gap: 5px;
}
.top-bar {
  font-size: 11px;
}
.newsletter-bar {
  position: relative;
  top: 0;
  width: 100%;
  transform: none;
  left: 0;
}
.hero-section {
  padding: 15px 0;
  text-align: center;
}
.products-section, .tendance-section{
  padding: 30px 0;
}
.promo-content {
  text-align: center;
}
.payment-icons {
  justify-content: center;
  margin-top: 15px;
}
.ordre2 {
  order: -1;
}
.promo-header h1 {
  font-size: 1.2rem;
}

.hero-banner {
  padding: 36px 0 32px;
}
.countdown-box {
  min-width: 60px;
  padding: 10px 14px;
}

.countdown-num {
  font-size: 1.3rem;
}

.coupon-banner {
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.coupon-code {
  width: 100%;
}

.form-row_contact {
  flex-direction: column;
  gap: 12px;
}

.form-card_contact {
  padding: 24px 20px;
}

.social-link {
  min-width: 120px;
}
.item-image {
  width: 80px;
  height: 80px;
  min-width: 80px;
}

.item-image .img-placeholder {
  font-size: 1.8rem;
}
.cart-item_panier {
  padding: 16px;
  gap: 12px;
  padding-bottom: 50px;
}

.item-subtotal {
  bottom: 14px;
  right: 16px;
  font-size: 1rem;
}

.item-name {
  font-size: 0.95rem;
}

.summary-card {
  position: static;
  margin-top: 8px;
}
}
@media (max-width: 576px) {
  .main-header .d-flex {
    justify-content: center !important;
  }
  .newsletter-bar .suivez_nous{
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .newsletter-wrapper{
    width: 100%;
  }
  .search-wrapper {
    order: 3;
    width: 100%;
  }
  .peek-slide {
    flex: 0 0 88%;
    
  }

  .peek-slide img {
    object-fit: contain !important;
    height: auto;
  }
    
  .prev-btn {
    left: 12px;
  }
  .next-btn {
    right: 12px;
  }
  /* devis************* */
  .page-header {
    padding: 20px 0 18px;
    margin-bottom: 20px;
  }

  .page-header h1 {
    font-size: 1.3rem;
  }

  .filters-bar {
    padding: 14px;
  }
  .category-circle {
    width: 88px;
    height: 88px;
  }
}
