/* ==========================================================================
   FANDROSO - Responsive CSS (Mobile First)
   Breakpoints: 480px, 768px, 1024px, 1200px, 1440px
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties - Responsive Typography & Spacing
   ========================================================================== */
:root {
  /* Fluid Typography using clamp() */
  --fs-hero-main: clamp(42px, 8vw, 81px);
  --fs-hero-sub: clamp(20px, 4vw, 32px);
  --fs-section-label: clamp(24px, 4vw, 32px);
  --fs-section-title: clamp(28px, 5vw, 40px);
  --fs-body: clamp(16px, 2.5vw, 20px);
  --fs-body-sm: clamp(14px, 2vw, 18px);
  --fs-stat-number: clamp(36px, 8vw, 64px);
  --fs-nav-link: clamp(16px, 3vw, 24px);
  --fs-btn: clamp(14px, 2.5vw, 18px);

  /* Fluid Spacing */
  --space-xs: clamp(8px, 1.5vw, 12px);
  --space-sm: clamp(12px, 2vw, 20px);
  --space-md: clamp(20px, 3vw, 40px);
  --space-lg: clamp(32px, 5vw, 80px);
  --space-xl: clamp(48px, 7vw, 128px);

  /* Container widths */
  --container-padding: clamp(16px, 4vw, 64px);
  --container-max: 1400px;

  /* Component specific */
  --hero-height: clamp(450px, 70vh, 600px);
  --hero-padding: clamp(20px, 5vw, 200px);
  --title-wrapper-height: clamp(180px, 30vh, 250px);
  --nav-padding: clamp(12px, 3vw, 24px);
}

/* ==========================================================================
   2. Global Responsive Utilities
   ========================================================================== */

/* Prevent horizontal scroll */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Images responsive by default */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Fluid container */
.container-fluid {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

/* Text wrapping improvements */
/* h1, h2, h3, h4, h5, h6, p, a, button, span, li {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
} */

/* ==========================================================================
   3. Navigation Responsive
   ========================================================================== */

/* Burger button - hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 10001;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--vert);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
  /* left: 0; */
}

.menu-toggle span::before {
  content: '';
  top: -9px;
}

.menu-toggle span::after {
  content: '';
  top: 9px;
}

/* Burger animation - open state */
.menu-toggle.is-active span {
  background: transparent;
}

.menu-toggle.is-active span::before {
  transform: rotate(45deg) translate(0, 0);
  top: 0;
}

.menu-toggle.is-active span::after {
  transform: rotate(-45deg) translate(0, 0);
  top: 0;
}

/* Navigation wrapper responsive */
#navigation_wrapper {
  position: relative;
  transition: all 0.3s ease;
}

/* Mobile Navigation Overlay */
@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  #navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--vert);
    padding: 100px var(--space-lg) var(--space-lg);
    border-radius: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
  }

  #navigation.nav-open {
    right: 0;
    z-index: 99999;
  }

  #navigation.nav-open #primary-menu li:last-child>a {
    border: unset;
    border-radius: unset;
    padding: var(--space-md) 0;
  }

  #navigation #primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    width: 100%;
  }

  #navigation #primary-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  #navigation #primary-menu li:last-child {
    border-bottom: none;
  }

  #navigation #primary-menu a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: var(--fs-nav-link);
    width: 100%;
  }

  #navigation #primary-menu .btn_outline,
  #navigation #primary-menu .btn_fill {
    width: 100%;
    text-align: center;
    margin-top: var(--space-xs);
  }

  /* Overlay backdrop */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.is-visible {
    display: block;
    opacity: 1;
  }

  /* Body lock when nav open */
  body.nav-lock {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

/* Desktop - ensure nav is visible */
@media (min-width: 1024px) {
  #navigation {
    position: static !important;
    width: auto !important;
    height: auto !important;
    right: auto !important;
    padding: 16px 128px 16px 64px !important;
    padding-right: max(30px, calc(40vw - 600px)) !important;
    border-radius: 50px 0px 0px 50px !important;
    box-shadow: var(--terre) 81px 20px !important;
    background: var(--vert) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 64px !important;
    box-shadow: var(--terre) 81px 20px !important;
    z-index: auto !important;
  }

  #navigation #primary-menu {
    flex-direction: row !important;
    align-items: center !important;
    gap: 64px !important;
    width: auto !important;
  }

  #navigation #primary-menu li {
    width: auto !important;
    border-bottom: none !important;
  }

  #navigation #primary-menu a {
    padding: 0;
    font-size: min(1.6vw, 24px);
    width: auto !important;
  }

  .menu-toggle,
  .nav-overlay {
    display: none !important;
  }
}

/* ==========================================================================
   4. Header / Entete Responsive
   ========================================================================== */

@media (max-width: 1023px) {
  #entete {
    /* padding: var(--space-md) var(--container-padding); */
    padding-top: var(--space-md);
    order: -1;
  }

  #entete img {
    max-width: 180px;
    width: 100%;
    height: auto;
  }

  #navigation_wrapper {
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0;
  }

  header.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  #entete {
    padding: 0;
  }
}

/* ==========================================================================
   5. Hero Section Responsive
   ========================================================================== */

@media (max-width: 1023px) {
  #hero_wrapper {
    margin-top: 0;
  }

  #hero {
    height: var(--hero-height);
    min-height: 450px;
    padding: var(--hero-padding);
    padding-left: 0px;
    padding-right: 0px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: var(--space-md);
  }

  #hero>.left {
    width: 100%;
    max-width: 100%;
    font-size: var(--fs-hero-sub);
    align-items: center;
    gap: var(--space-sm);
  }

  #hero>.left span:first-of-type {
    font-size: var(--fs-hero-main);
    margin-left: 0;
  }

  #hero>.left span:last-of-type {
    margin-left: 0;
  }

  /* #hero > .left br {
    display: none;
  } */

  #hero>.left a {
    margin-left: 0;
    margin-top: var(--space-xs);
    padding: 14px 32px;
    font-size: var(--fs-btn);
  }

  #hero>.right {
    width: 100%;
    /* max-width: 280px; */
    padding: var(--space-sm);
    margin-top: var(--space-xs);
    order: -1;
  }

  #hero>.right img {
    margin-bottom: 0;
    /* max-width: 100%;
    width: 100%; */
  }

  .hero_ruban {
    height: 10px;
  }
}

@media (min-width: 1024px) {
  #hero {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
  }

  #hero>.left {
    width: 70%;
    align-items: flex-start;
  }

  #hero>.right {
    width: max-content;
    height: 100%;
    order: 0;
  }
}

/* ==========================================================================
   6. Section Labels (FANDROSO, VAOVAO, etc.)
   ========================================================================== */

@media (max-width: 1023px) {
  .label {
    font-size: clamp(18px, 3.5vw, 28px);
    padding: 6px 32px 6px 16px;
    border-radius: 0 32px 32px 0;
    top: 12px;
  }
}

/* ==========================================================================
   7. Section À propos (About)
   ========================================================================== */

@media (max-width: 1023px) {
  .about_wrapper {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
  }

  #about .left_wrapper,
  #about .right_wrapper {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }

  #about .left {
    clip-path: none !important;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--rad);
    margin: 0 var(--space-md) var(--space-lg);
    background: var(--blanc);
    box-shadow: var(--shadow);
  }

  #about .left>div {
    align-items: center;
    text-align: center;
  }

  #about .left p {
    font-size: var(--fs-body);
    margin-bottom: var(--space-md);
  }

  #about .left a {
    font-size: var(--fs-btn);
    padding: 14px 32px;
  }

  #about .right {
    padding: var(--space-md);
    gap: var(--space-lg);
  }

  #about .right .quote-wrapper {
    flex-direction: column;
    align-items: center !important;
    gap: var(--space-md);
    text-align: center;
    width: max-content;
    max-width: 100%;
    align-self: center !important;
  }

  #about .right .quote-wrapper:nth-child(even) {
    flex-direction: column-reverse !important;
  }

  #about .right .quote-wrapper#pca {
    align-self: center !important;
  }

  #about .quote-container {
    width: 100%;
    max-width: 100%;
  }

  #about .right img {
    width: 120px;
    margin: 0 auto;
  }

  #about .right p:first-of-type {
    border-left: none !important;
    /* border-top: solid var(--vert) 3px; */
    /* padding-top: var(--space-sm); */
    padding-left: 0;
    font-size: var(--fs-body-sm);
    max-width: 100%;
    text-align: center;
  }

  #about .right #pca p:first-of-type {
    border-top-color: var(--terre);
  }

  #about .right .who {
    margin: var(--space-sm) 0 0 0 !important;
    text-align: center;
  }

  #about .right .who .font-bold {
    display: block;
    margin-bottom: 4px;
  }
}

@media (min-width: 1024px) {
  #about .left {
    clip-path: ellipse(73% 70% at 25% 60%);
    align-items: start;
    justify-content: center;
    padding-left: max(96px, calc(40vw - 600px))
  }

  #about .right p:first-of-type {
    /* border-left: solid var(--vert) 1px; */
    border-top: none;
    padding-left: 8px;
    padding-top: 0;
  }

  #about .right #pca p:first-of-type {
    border-left-color: var(--terre);
    border-top: none;
  }
}

/* ==========================================================================
   8. Produits (Tsiry / Tafita)
   ========================================================================== */

@media (max-width: 1023px) {
  #product_wrapper {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
  }

  #product_wrapper>div {
    width: 100%;
    max-width: 480px;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--rad);
    gap: var(--space-md);
  }

  #product_wrapper>div>img {
    width: 180px;
    height: 180px;
    margin-top: 0;
  }

  #product_wrapper ul {
    gap: var(--space-md);
  }

  #product_wrapper li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
  }

  #product_wrapper li img {
    width: 40px;
  }

  #product_wrapper .title {
    font-size: var(--fs-body-sm);
  }

  #product_wrapper .desc {
    font-size: var(--fs-body-sm);
  }

  #product_wrapper a.btn_fill {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: var(--fs-btn);
  }
}

@media (min-width: 1024px) {
  #product_wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 96px;
    padding: 80px;
  }

  #product_wrapper>div {
    width: 500px;
    padding: 30px 64px;
  }

  #product_wrapper>div>img {
    width: 300px;
    height: 300px;
  }

  #product_wrapper li {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

/* ==========================================================================
   9. Actualités - Liste (Accueil & Archive)
   ========================================================================== */

@media (max-width: 1023px) {
  .actus_wrapper {
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-lg);
  }

  .actu {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    max-width: 100%;
  }

  .actu img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--rad);
  }

  .actu .desc_container {
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-body-sm);
  }

  .actu .actu_title {
    font-size: clamp(18px, 3.5vw, 22px);
    text-align: center;
  }

  .actu .btn_fill {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 24px;
    font-size: var(--fs-btn);
  }
}

@media (min-width: 1024px) {
  .actu {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .actu img {
    width: 450px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .actu .desc_container {
    align-items: flex-start;
  }
}

/* ==========================================================================
   10. Stats Section
   ========================================================================== */

@media (max-width: 1023px) {
  .stat_container {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
  }

  .stat_container>div {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
  }

  .stat_container>div img {
    width: 60px;
  }

  .stat_container .font-64 {
    font-size: var(--fs-stat-number);
  }
}

/* ==========================================================================
   11. Footer Responsive
   ========================================================================== */

@media (max-width: 1023px) {
  .footer_wrapper {
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
  }

  #colophon .logo_container {
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  #colophon .logo_container img {
    max-width: 100%;
  }

  #colophon .logo_container img:first-child {
    width: 200px;
  }

  #colophon .logo_container img:nth-child(2) {
    width: 160px;
  }

  #colophon .logo_container img:last-child {
    width: 130px;
  }

  #colophon .logo_container~div {
    align-items: center;
    gap: var(--space-lg);
  }

  #colophon .right {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    width: 100%;
  }

  #colophon .links,
  #colophon .contact,
  #colophon .address {
    font-size: var(--fs-body-sm);
    align-items: center;
    gap: var(--space-xs);
  }

  #colophon .links>span,
  #colophon .contact>span,
  #colophon .address>span {
    font-size: clamp(18px, 3.5vw, 22px);
    margin-bottom: var(--space-xs);
  }

  #colophon .links>div,
  #colophon .contact>div,
  #colophon .address>div {
    flex-direction: column;
    gap: var(--space-xs);
    justify-content: center;
    align-items: center;
  }

  #colophon .links a {
    display: inline-block;
    padding: 4px 0;
  }

  .socials_net {
    gap: var(--space-md);
    justify-content: center;
  }

  .socials_net img {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1024px) {
  .footer_wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  #colophon .logo_container~div {
    align-items: flex-end;
  }

  #colophon .right {
    flex-direction: row;
    gap: 100px;
    align-items: stretch;
  }
}

/* ==========================================================================
   12. Page Détail Actualité (single.php)
   ========================================================================== */

@media (max-width: 1023px) {
  .actu-detail {
    padding-top: 0;
  }

  .title_wrapper {
    /* height: var(--title-wrapper-height); */
    min-height: 300px;
    height: max-content;
    padding: 40px var(--container-padding);
    background-position: center top !important;
  }

  .actu-detail .title {
    font-size: clamp(28px, 6vw, 40px);
    text-align: center;
    line-height: 1.3;
    padding: 0 var(--space-sm);
  }

  .detail_wrapper {
    flex-direction: column !important;
    padding: var(--space-lg) var(--space-md) !important;
    gap: var(--space-lg) !important;
    font-size: var(--fs-body);
    line-height: 1.7;
  }

  .actu-detail .left,
  .actu-detail .right {
    width: 100% !important;
    max-width: 100%;
  }

  .actu-detail .left {
    order: 1;
  }

  .actu-detail .right {
    order: 2;
  }

  .actu-detail .left h4 {
    font-size: var(--fs-body);
    text-align: center;
    margin-bottom: var(--space-sm);
  }

  .actu-detail .entry-content {
    font-size: var(--fs-body);
    line-height: 1.8;
  }

  .actu-detail .images_container {
    justify-content: center;
    margin-bottom: var(--space-md);
  }

  .actu-detail .images_container img {
    max-width: 100%;
    height: auto;
    border-radius: var(--rad);
    box-shadow: var(--shadow);
  }

  .actu-detail .images_container button {
    width: 48px;
    height: 48px;
    background: var(--blanc);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .actu-detail .images_container button.prev {
    margin-right: var(--space-sm);
  }

  .actu-detail .images_container button.next {
    margin-left: var(--space-sm);
  }

  .actu-detail .right>p {
    display: none;
    /* Hide duplicate excerpt */
  }

  .actu-detail .btn_fill {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 24px;
    font-size: var(--fs-btn);
  }
}

@media (min-width: 1024px) {
  .detail_wrapper {
    flex-direction: column;
    padding: 40px 200px !important;
  }

  .actu-detail .left,
  .actu-detail .right {
    width: 50% !important;
  }
}

/* ==========================================================================
   13. Page Sehatra / Secteurs
   ========================================================================== */

@media (max-width: 1023px) {
  #domain .domain_wrapper .left {
    display: flex;
    gap: var(--space-md);
    justify-content: start;
    padding: 0 var(--space-md);
  }

  #domain .domain_wrapper .left>div {
    box-shadow: var(--shadow);
  }

  #domain .domain_wrapper .left>div img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: var(--space-xs);
  }

  #domain .domain_wrapper .left>div span {
    font-size: var(--fs-body);
    font-weight: 600;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #domain .domain_wrapper .left {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #domain .domain_wrapper .left {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 6%;
  }

  #domain .domain_wrapper .left>div {
    background: none;
    box-shadow: none;
    padding: 24px;
  }
}

/* ==========================================================================
   14. Archive Page (Actualités)
   ========================================================================== */

@media (max-width: 1023px) {
  .archive .actus_wrapper {
    padding: var(--space-lg) var(--space-md);
  }
}

/* ==========================================================================
   15. Pagination Responsive
   ========================================================================== */

@media (max-width: 767px) {
  .pagination .page-numbers {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--fs-body-sm);
  }

  .pagination .dots {
    display: none;
  }
}

/* ==========================================================================
   16. Utility Classes for Responsive
   ========================================================================== */

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }

  .show-tablet {
    display: block !important;
  }
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }

  .show-desktop {
    display: block !important;
  }
}

/* ==========================================================================
   17. Touch-friendly improvements
   ========================================================================== */

@media (hover: none) and (pointer: coarse) {

  a,
  button,
  .btn_outline,
  .btn_fill {
    min-height: 44px;
    min-width: 44px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  #navigation #primary-menu a {
    padding: var(--space-md) 0;
  }

  .socials_net a {
    padding: var(--space-xs);
  }
}

/* ==========================================================================
   18. Gallery Animations
   ========================================================================== */

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.images_container .slide-in-right {
  animation: slideInRight 0.3s ease forwards;
}

.images_container .slide-in-left {
  animation: slideInLeft 0.3s ease forwards;
}

.images_container .slide-out-right {
  animation: slideOutRight 0.3s ease forwards;
}

.images_container .slide-out-left {
  animation: slideOutLeft 0.3s ease forwards;
}

/* ==========================================================================
   19. Back to Top Button
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--vert);
  color: var(--blanc);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--vert-fonce);
  transform: translateY(-4px);
}

.back-to-top:focus {
  outline: 3px solid var(--light-blue);
  outline-offset: 3px;
}

/* ==========================================================================
   20. Focus Visible for Accessibility
   ========================================================================== */

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--light-blue);
  outline-offset: 3px;
}

/* ==========================================================================
   21. Print Styles
   ========================================================================== */

@media print {

  .menu-toggle,
  .nav-overlay,
  .hero_ruban,
  .btn_fill,
  .btn_outline,
  .socials_net,
  .pagination {
    display: none !important;
  }

  #hero {
    height: auto;
    background: none !important;
    color: #000;
  }

  .with_bg1 {
    background: none !important;
  }

  .site-footer {
    background: none !important;
    color: #000;
  }

  a {
    text-decoration: underline;
    color: #000 !important;
  }
}

/* ===================================
   22. Downlowad document responsive
   ==================================== */

.produit-documents {
  padding: 0 128px;
}

@media (max-width: 767px) {
  .produit-documents {
    padding: 20px;
  }
}