/* ============================================
   SHENVO - COULEURS NAVBAR UNIQUEMENT
   Palette inspirée Amazon pour conversion optimale
   ============================================ */

/* === VARIABLES DE COULEURS SHENVO === */
:root {
    --shenvo-primary: #232F3E;      /* Anthracite (base, confiance) */
    --shenvo-cta: #e96c1e;          /* Orange (action, achat) */
    --shenvo-accent: #146EB4;       /* Bleu (liens, confiance) */
    --shenvo-white: #FFFFFF;        /* Blanc */
    --shenvo-black: #0F1111;        /* Noir texte */
    --shenvo-gray-light: #F3F3F3;   /* Fond clair */
    --shenvo-gray-dark: #37475A;    /* Gris foncé */
}


/* ============================================
   TOP NOTICE (Bandeau du haut)
   ============================================ */
.top-notice {
    background-color: var(--shenvo-primary);
    color: var(--shenvo-white);
}

.top-notice h5 {
    color: var(--shenvo-white);
    animation: bounce 10s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.top-notice .category {
    color: var(--shenvo-white);
    border-color: var(--shenvo-white);
    background-color: var(--shenvo-cta);
}

.top-notice .category:hover {
    background-color: var(--shenvo-cta);
    color: var(--shenvo-black);
    border-color: var(--shenvo-cta);
}

.top-notice small {
    color: var(--shenvo-white);
}

.top-notice .mfp-close {
    color: var(--shenvo-white);
}

.top-notice .mfp-close:hover {
    color: var(--shenvo-cta);
}

/* ============================================
   HEADER TOP (Info et dropdowns)
   ============================================ */
.header-top {
    background-color: var(--shenvo-gray-light);
    border-bottom: 1px solid #ddd;
}

.header-top .text-primary {
    color: var(--shenvo-primary) !important;
}

.header-top .icon-shipping {
    color: var(--shenvo-cta);
}

.header-top a {
    color: var(--shenvo-black);
}

.header-top a:hover {
    color: var(--shenvo-cta);
}

/* Dropdowns langue et links */

.header-dropdown a {
    color: var(--shenvo-black);
}

.header-dropdown a:hover {
    color: var(--shenvo-cta);
}

.header-menu {
    background-color:var(--shenvo-gray-light);
   
}

.header-menu ul li a {
    color: var(--shenvo-black);
}

.header-menu ul li a:hover {
    background-color: var(--shenvo-gray-light);
    color: var(--shenvo-cta);
}

/* Icônes sociales */
.social-icons .social-icon {
    color: var(--shenvo-primary);
}

.social-icons .social-icon:hover {
    color: var(--shenvo-cta);
}

/* ============================================
   HEADER MIDDLE (Logo et recherche)
   ============================================ */
.header-middle {
    background-color: var(--shenvo-white);
    border-bottom: 2px solid var(--shenvo-primary);
}

/* Bouton menu mobile */
.mobile-menu-toggler {
    color: var(--shenvo-primary) !important;
}

.mobile-menu-toggler:hover {
    color: var(--shenvo-cta) !important;
}

/* Barre de recherche */
.header-search input.form-control {
    border: 2px solid var(--shenvo-primary);
    color: var(--shenvo-black);
}

.header-search input.form-control:focus {
    border-color: var(--shenvo-cta);
}

.header-search input.form-control::placeholder {
    color: #999;
}

.header-search .btn {
    background-color: var(--shenvo-cta);
    color: var(--shenvo-white);
}

.header-search .btn:hover {
    background-color: #ec9100;
}

.header-search .btn i {
    color: var(--shenvo-primary);
}

/* Section Welcome/Login */
.header-contact h6 {
    color: var(--shenvo-black);
}

.header-contact h6 span {
    color: var(--shenvo-gray-dark);
}

.header-contact h6 a {
    color: var(--shenvo-accent);
}

.header-contact h6 a:hover {
    color: var(--shenvo-cta);
}

.header-icon {
    color: var(--shenvo-primary);
}

.header-icon:hover {
    color: var(--shenvo-cta);
}

/* Badges count (panier et wishlist) */
.badge-circle {
    background-color: var(--shenvo-cta);
    color: var(--shenvo-black);
}

.cart-count {
    background-color: var(--shenvo-cta);
    color: var(--shenvo-black);
}

.wishlist-count {
    background-color: var(--shenvo-accent);
    color: var(--shenvo-white);
}

/* ============================================
   HEADER BOTTOM (Menu catégories)
   ============================================ */
.header-bottom {
    background-color: var(--shenvo-primary);
}

/* Navigation */


.thumb-info-image, .thumb-item i {
    background-color: var(--shenvo-cta);
}
.thumbs-nav ul.thumbs li.thumb-item a {
    color: var(--shenvo-white);
}

.thumbs-nav ul.thumbs li.thumb-item a:hover {
    color: var(--shenvo-cta);
    background-color: var(--shenvo-gray-dark);
}

.thumbs-nav ul.thumbs li.thumb-item.active a {
    color: var(--shenvo-cta);
    border-bottom: 12px solid var(--shenvo-cta);
}

.thumbs-nav ul.thumbs li.thumb-item i {
    color: var(--shenvo-cta);
}

/* ============================================
   DROPDOWN PANIER (si vous l'avez)
   ============================================ */
.dropdown-menu {
    background-color: var(--shenvo-white);
    border: 2px solid var(--shenvo-primary);
}

.dropdown-menu a {
    color: var(--shenvo-black);
}

.dropdown-menu a:hover {
    background-color: var(--shenvo-gray-light);
    color: var(--shenvo-cta);
}

/* ============================================
   STICKY HEADER (quand on scroll)
   ============================================ */
.sticky-header{
    background-color: var(--shenvo-gray-light);
}
.sticky-header.fixed { 
    box-shadow: 0 2px 10px rgba(35, 47, 62, 0.1);
    background-color: var(--shenvo-gray-light);
}

/* ============================================
   NOTES D'UTILISATION
   ============================================
   
   COMMENT INTÉGRER CE FICHIER :
   
   1. Placez ce fichier dans votre dossier static/css/
   2. Ajoutez dans votre base.html ou header.html :
      
      <link rel="stylesheet" href="{% static 'css/shenvo-navbar-colors.css' %}">
   
   3. Assurez-vous que ce fichier est chargé APRÈS vos CSS existants
      pour que les couleurs Shenvo prennent le dessus
   
   ============================================
   PALETTE COMPLÈTE POUR RÉFÉRENCE :
   
   Anthracite (#232F3E) : Base, confiance, professionnalisme
   Orange (#FF9900) : CTA, urgence, action d'achat
   Bleu (#146EB4) : Liens, confiance, sécurité
   Blanc (#FFFFFF) : Clarté, propreté
   Noir (#0F1111) : Texte principal
   
   ============================================ */
   /*footer*/
   .footer{
    background-color: var(--shenvo-primary);
    color: var(--shenvo-white);
   }
   /*product list*/
   /* ============================================
   SECTION TOP 10 PRODUCTS - Couleurs Shenvo
   ============================================ */

/* Titre de section */
.section-title {
    color: #232F3E;  /* Anthracite - titre principal */
}

/* Badge réduction */
.product-label.label-sale {
    background-color: #FF9900;  /* Orange - badge promo */
    color: #0F1111;  /* Noir - texte sur orange */
}

/* Catégorie du produit */
.product-category {
    color: #6B7280;  /* Gris foncé - catégorie */
}

.product-category:hover {
    color: #FF9900;  /* Orange - hover catégorie */
}

/* Titre du produit */
.product-title a {
    color: #232F3E;  /* Anthracite - titre produit */
}

.product-title a:hover {
    color: #FF9900;  /* Orange - hover titre */
}

/* Prix */
.old-price {
    color: #6B7280;  /* Gris foncé - ancien prix barré */
}

.product-price {
    color: #232F3E;  /* Anthracite - prix actuel */
    font-weight: 700;
}



/* Bouton Wishlist (cœur) */
.btn-icon-wish {
    color: #6B7280;  /* Gris foncé - icône par défaut */
}

.btn-icon-wish:hover,
.btn-icon-wish.added {
    color: #FF9900;  /* Orange - hover ou ajouté */
}

/* Bouton "ADD TO CART" */
.btn-add-cart {
    background-color: #FF9900;  /* Orange - bouton principal */
    color: #0F1111;  /* Noir - texte */
    border-color: #FF9900;
}

.btn-add-cart:hover {
    background-color: #232F3E;  /* Anthracite - hover */
    color: #FFFFFF;  /* Blanc - texte hover */
    border-color: #232F3E;
}

/*footer*/
/* ============================================
   FOOTER CSS EXTRAIT DU FICHIER
   ============================================ */

   footer {
    font-size: 1.3rem;
    color: #777;
    line-height: 24px;
}

footer .container {
    position: relative;
}

footer p {
    color: inherit;
}

footer a {
    color: inherit;
}

footer a:focus,
footer a:hover {
    color: #222529;
}

.footer-top {
    border-top: 1px solid #e7e7e7;
    padding-top: 4.7rem;
    padding-bottom: 1.5rem;
}

.footer-middle {
    border-top: 1px solid #e7e7e7;
    padding-top: 5.8rem;
    padding-bottom: 3.2rem;
}

.footer-bottom {
    color: var(--shenvo-white);
    background: var(--shenvo-primary);
    border-top: 1px solid var(--shenvo-white);
    padding-bottom: 5.2rem;
    padding-top: 2rem;
}

footer .social-icon {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    color: #222529;
    font-size: 1.4rem;
    line-height: 40px;
}

footer .social-icon:not(:hover):not(:active):not(:focus) {
    background: transparent;
}

footer .social-icon + .social-icon {
    margin-left: 10px;
}

footer .payment-icons {
    margin-right: 2px;
}

footer .payment-icons .payment-icon {
    display: inline-block;
    vertical-align: middle;
    margin: 1px;
    width: 56px;
    height: 32px;
    background-color: #d6d3cc;
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0.25s;
    filter: invert(1);
    border-radius: 4px;
}

footer .payment-icons .payment-icon:hover {
    opacity: 0.7;
}

footer .payment-icons .payment-icon.paypal {
    background-size: 85% auto;
    background-position: 50% 48%;
}

footer .payment-icons .payment-icon.stripe {
    background-size: 60% auto;
}

footer .widget {
    margin-bottom: 3rem;
}

footer .widget-title {
    color: #222529;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1.9rem;
}

footer .links li {
    margin-bottom: 1rem;
}

footer .tagcloud a {
    padding: 0.6em;
    margin: 0 0.8rem 0.8rem 0;
    border: 1px solid #313438;
    color: inherit;
    font-size: 11px;
    background: transparent;
}

footer .tagcloud a:hover {
    border-color: #fff;
    background: transparent;
}

footer .contact-info {
    margin: 0;
    padding: 0;
}

footer .contact-info li {
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.4;
}

footer .contact-info-label {
    display: block;
    color: #222529;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.footer-ribbon {
    position: absolute;
    top: 0;
    margin: -16px 0 0;
    padding: 10px 20px 6px;
    color: #fff;
    font-size: 1.6em;
    z-index: 101;
    background-color: #0088cc;
    font-family: "Shadows Into Light", sans-serif;
    font-weight: 400;
}

.footer-ribbon:before {
    content: "";
    display: block;
    height: 0;
    position: absolute;
    top: 0;
    width: 7px;
    right: 100%;
    border-right: 10px solid #005580;
    border-top: 16px solid transparent;
}

/* CSS spécifique du thème actuel */
.footer .widget-content li {
    margin-bottom: 1rem;
}

.footer .widget-title {
    font-size: 1.8rem;
    letter-spacing: -0.025em;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 1.4rem;
}

.footer .contact-info-label {
    font-size: 1.4rem;
    letter-spacing: -0.025em;
    font-weight: 600;
    color: #888;
    margin-bottom: 0;
}

.footer .contact-info li {
    font-size: 1.4rem;
    letter-spacing: -0.025em;
    color: #fff;
    padding-top: 2px;
}

.footer .contact-info li a:hover {
    color: #fff;
}

.footer .links li {
    margin-bottom: 1px;
}

.footer a:focus,
.footer a:hover {
    color: #fff;
}

.footer .social-icons {
    margin: 1.5rem 0 2.7rem;
}

.footer .social-icon:not(:hover):not(:active):not(:focus) {
    background: #fff;
}

.footer .widget-payment .widget-title {
    margin-top: -1px;
    margin-bottom: 1.3rem;
}

.footer .payment-icons .payment-icon {
    margin: 1px;
    filter: invert(1);
    color: #fff;
    background-color: transparent;
}

.footer .logo-footer {
    max-width: 128px;
}

.footer-copyright {
    font-size: 1.2rem;
    color: #999;
}

.widget-newsletter .form-control {
    height: 4.4rem;
    padding: 0.9rem 2.5rem 0.8rem 0;
    border: 0;
    box-shadow: none;
    outline: none;
    background: #2d3034;
    color: #777;
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
}

.widget-newsletter form {
    padding-right: 2px;
    background: #2d3034;
    border-radius: 5rem;
    padding-left: 2.5rem;
}

.widget-newsletter .btn {
    height: 44px;
    font-size: 1.2rem;
    padding: 1.2rem 2.4rem;
    border-radius: 0 30px 30px 0;
    color: #fff;
    background: #2d3034;
}

/* Responsive */
@media (max-width: 575px) {
    footer {
        margin-bottom: 68px;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

 /* faqs*/
 .header-bottom { 
    margin-bottom: 0px;
  }
  
  /* Style professionnel FAQ */
  .faq-header {
    color: var(--shenvo-black);
    padding: 60px 0;
    text-align: center;
  }
  
  .faq-header h1 {
    color: var(--shenvo-black);
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .faq-header p {
    color: var(--shenvo-black);
    font-size: 18px;
  }
  
  /* Barre de recherche */
  .faq-search-box {
    max-width: 700px;
    margin: -30px auto 50px;
    position: relative;
    z-index: 10;
  }
  
  .faq-search-input {
    width: 100%;
    padding: 18px 60px 18px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  
  .faq-search-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    background-color: var(--shenvo-primary);
    color: var(--shenvo-white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
  }
  
  /* Catégories FAQ */
  .faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .faq-category-card {
    background: white;
    border: 2px solid var(--shenvo-primary);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
  }
  
  .faq-category-card:hover {
    border-color: var(--shenvo-cta);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shenvo-cta);
  }
  
  .faq-category-icon {
    font-size: 48px;
    margin-bottom: 15px;
  }
  
  .faq-category-name {
    color: #1F2937;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .faq-category-count {
    color: #64748B;
    font-size: 14px;
  }
  
  /* FAQ Populaires */
  .faq-popular {
    background: var(--shenvo-gray-light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
  }
  
  .faq-popular h3 {
    color: var(--shenvo-cta);
    margin-bottom: 20px;
  }
  
  .faq-popular-list {
    list-style: none;
    padding: 0;
  }
  
  .faq-popular-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--shenvo-cta);
  }
  
  .faq-popular-item:last-child {
    border-bottom: none;
  }
  
  .faq-popular-link {
    color: #1F2937;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s;
  }
  
  .faq-popular-link:hover {
    color: var(--shenvo-cta);
  }
  
  .faq-view-count {
    color: #64748B;
    font-size: 13px;
  }
  
  /* Accordéon FAQ */
  .faq-accordion .card {
    border: 2px solid var(--shenvo-primary);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
  }
  
  .faq-accordion .card-header {
    background: var(--shenvo-white);
    border: none;
    padding: 0;
  }
  
  .faq-accordion .card-header a {
    display: block;
    padding: 20px 25px;
    color: #1F2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
  }
  
  .faq-accordion .card-header a:after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--shenvo-primary);
    font-weight: 700;
  }
  
  .faq-accordion .card-header a[aria-expanded="true"]:after {
    content: '−';
  }
  
  .faq-accordion .card-header a:hover {
    color: var(--shenvo-cta);
    background: #FFECD1;
  }
  
  .faq-accordion .card-body {
    padding: 20px 25px;
    color: #64748B;
    line-height: 1.7;
    border-top: 1px solid #FFECD1;
  }
  
  /* Badge pays */
  .country-badge {
    display: inline-block;
    background: #FFECD1;
    color: var(--shenvo-cta);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
  }
  
  /* Contact CTA */
  .faq-contact-cta {
    background: linear-gradient(135deg, #FF7043 0%, #FF5722 100%);
    color: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
  }
  
  .faq-contact-cta h3 {
    color: white;
    margin-bottom: 15px;
  }
  
  .faq-contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
  }
  
  .btn-contact {
    background: white;
    color: var(--shenvo-primary);
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s;
  }
  
  .btn-contact:hover {
    background: var(--shenvo-primary);
    color: white;
    transform: scale(1.05);
  }
/*About*/
 
  
  .header-bottom { margin-bottom: 0; }
  
  /* Hero */
  .about-hero {
    color: var(--shenvo-black);
    padding: 80px 0;
    text-align: center;
  }
  
  .about-hero h1 {
    color: var(--shenvo-black);
    font-size: 48px;
    font-weight: 700;
  }
  
  /* Stats */
  .stats-card {
    background: var(--shenvo-gray-light);
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
  }
  
  .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(35,47,62,0.15);
    border-color: var(--shenvo-accent);
  }
  
  .stats-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--shenvo-cta);
  }
  
  .section-title {
    text-align: center;
    color: var(--shenvo-primary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--shenvo-cta);
    margin: 15px auto 0;
  }
  
  /* Values */
  .value-card {
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
  }
  
  .value-card:hover {
    border-color: var(--shenvo-cta);
    transform: translateY(-5px);
  }
  
  .value-icon { font-size: 64px; margin-bottom: 20px; }
  .value-title { font-size: 22px; font-weight: 700; color: var(--shenvo-primary); }
  
  /* Timeline */
  .timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--shenvo-accent) 0%, var(--shenvo-gray-dark) 100%);
  }
  
  .timeline-item {
    margin-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .timeline-item:nth-child(odd) { flex-direction: row-reverse; }
  
  .timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--shenvo-cta) 0%, #c75a15 100%);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    border: 5px solid white;
    box-shadow: 0 6px 20px rgba(233,108,30,0.4);
    z-index: 10;
  }
  
  .timeline-arrow {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 3px;
    background: linear-gradient(90deg, var(--shenvo-cta) 0%, var(--shenvo-accent) 100%);
    z-index: 5;
  }
  
  .timeline-item:nth-child(odd) .timeline-arrow {
    left: calc(50% + 45px);
    transform: translateY(-50%);
  }
  
  .timeline-item:nth-child(even) .timeline-arrow {
    right: calc(50% + 45px);
    transform: translateY(-50%);
  }
  
  .timeline-arrow:after {
    content: '';
    position: absolute;
    top: -4px;
    width: 0;
    height: 0;
    border-style: solid;
  }
  
  .timeline-item:nth-child(odd) .timeline-arrow:after {
    right: -1px;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent var(--shenvo-accent);
  }
  
  .timeline-item:nth-child(even) .timeline-arrow:after {
    left: -1px;
    border-width: 5px 8px 5px 0;
    border-color: transparent var(--shenvo-accent) transparent transparent;
  }
  
  .timeline-content {
    background: var(--shenvo-gray-light);
    padding: 30px;
    border-radius: 16px;
    border: 3px solid #E0E0E0;
    width: 45%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
  }
  
  .timeline-content:hover {
    border-color: var(--shenvo-cta);
    transform: translateY(-5px);
  }
  
  .timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--shenvo-primary);
  }
  
  /* Testimonials */
  .testimonials-section {
    background: var(--shenvo-gray-light);
    padding: 80px 0;
  }
  
  .testimonial-card {
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
  }
  
  .testimonial-card:hover {
    border-color: var(--shenvo-cta);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(233,108,30,0.15);
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--shenvo-primary) 0%, var(--shenvo-gray-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: 700;
    margin-right: 15px;
  }
  
  .testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--shenvo-primary);
  }
  
  .testimonial-rating { color: #FFB300; font-size: 16px; }
  
  .testimonial-text {
    font-size: 16px;
    color: #64748B;
    line-height: 1.7;
    font-style: italic;
  }
  
  .testimonial-product {
    font-size: 13px;
    color: var(--shenvo-accent);
    margin-top: 10px;
  }
  
  .testimonial-date {
    font-size: 13px;
    color: #94A3B8;
    margin-top: 10px;
  }
  
  .testimonial-verified {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .timeline:before { left: 30px; }
    .timeline-year { left: 30px; width: 70px; height: 70px; }
    .timeline-item {
      flex-direction: column !important;
      align-items: flex-start;
    }
    .timeline-content {
      margin-left: 110px !important;
      width: calc(100% - 120px) !important;
    }
    .timeline-arrow { display: none; }
  } 