/* ============================================
   HERO SECTION - CONTE ANIMÉ AFRICAIN
   Version: 1.4 - Removed padding/margin spacing
   ============================================ */

/* Structure de base */
.ultimes-griots-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    color: white;
    padding: 0;
}

/* ============================================
   FOND ANIMÉ MULTICOUCHE
   ============================================ */

/* Couches de fond */
.hero-background-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

/* Dégradé animé - Couleurs africaines */
.hero-gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        #8B4513 0%,      /* Terre/Clay */
        #C1440E 25%,     /* Terracotta */
        #2d1b1b 60%,     /* Indigo deep */
        #1a1a1a 100%     /* Nuit */
    );
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(10deg) brightness(1.1);
    }
}

/* ============================================
   MOTIFS GÉOMÉTRIQUES AFRICAINS
   ============================================ */

.african-patterns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    color: #D4AF37;
}

.pattern-element {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    will-change: transform, opacity;
}

.pattern-1 {
    top: 10%;
    left: 5%;
    animation: floatPattern 15s ease-in-out infinite;
}

.pattern-2 {
    top: 20%;
    right: 10%;
    animation: floatPattern 18s ease-in-out infinite 2s;
}

.pattern-3 {
    bottom: 15%;
    left: 15%;
    animation: floatPattern 20s ease-in-out infinite 4s;
}

.pattern-4 {
    top: 50%;
    right: 5%;
    animation: floatPattern 16s ease-in-out infinite 1s;
}

.pattern-5 {
    bottom: 25%;
    right: 20%;
    animation: floatPattern 22s ease-in-out infinite 3s;
}

@keyframes floatPattern {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.2;
    }
}

/* ============================================
   PARTICULES CULTURELLES
   ============================================ */

.cultural-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    color: #FFD700;
    font-size: 1.2rem;
    opacity: 0.6;
    will-change: transform, opacity;
}

.particle-1 {
    top: 15%;
    left: 12%;
    animation: particleRise 8s ease-in-out infinite;
}

.particle-2 {
    top: 35%;
    right: 18%;
    animation: particleRise 10s ease-in-out infinite 2s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation: particleRise 12s ease-in-out infinite 4s;
}

.particle-4 {
    top: 60%;
    right: 12%;
    animation: particleRise 9s ease-in-out infinite 1s;
}

.particle-5 {
    bottom: 45%;
    left: 8%;
    animation: particleRise 11s ease-in-out infinite 3s;
}

.particle-6 {
    top: 80%;
    right: 25%;
    animation: particleRise 13s ease-in-out infinite 5s;
}

@keyframes particleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
}

/* ============================================
   BAOBAB SVG STYLISÉ
   ============================================ */

.baobab-container {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 200px;
    height: 400px;
    z-index: 3;
    pointer-events: none;
}

.baobab-svg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    animation: baobabSway 10s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes baobabSway {
    0%, 100% {
        transform: rotate(-1deg);
    }
    50% {
        transform: rotate(1deg);
    }
}

/* ============================================
   PERSONNAGES ANIMÉS
   ============================================ */

.hero-characters {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
}

.hero-character-left {
    left: 5%;
    bottom: 40px;
}

.hero-character-right {
    right: 5%;
    bottom: 40px;
}

.character-scroll-trigger {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ============================================
   LIVRES/CRÉATIONS FLOTTANTES
   ============================================ */

.floating-creations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.creation-book {
    position: absolute;
    width: 50px;
    height: auto;
    opacity: 0.6;
    will-change: transform;
}

.creation-1 {
    top: 25%;
    left: 25%;
    animation: bookFloat 12s ease-in-out infinite;
}

.creation-2 {
    top: 45%;
    right: 30%;
    animation: bookFloat 14s ease-in-out infinite 2s;
}

.creation-3 {
    bottom: 35%;
    left: 35%;
    animation: bookFloat 16s ease-in-out infinite 4s;
}

@keyframes bookFloat {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* ============================================
   CONTENU PRINCIPAL
   ============================================ */

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin-left: 380px;
    margin-right: 0;
    padding: 0 20px 0 40px;
    text-align: left;
}

/* Animations séquentielles */
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-delay-1 { animation-delay: 0.2s; }
.hero-delay-2 { animation-delay: 0.4s; }
.hero-delay-3 { animation-delay: 0.6s; }
.hero-delay-4 { animation-delay: 0.8s; }
.hero-delay-5 { animation-delay: 1s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge avec lueur dorée */
.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFD700;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

/* Titre principal */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

/* Sous-titre */
.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Description */
.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Boutons CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: #1a1a1a;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid #D4AF37;
}

.cta-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #FFD700;
    color: white;
    transform: translateY(-3px);
}

/* Ligne de confiance */
.hero-trust-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-trust-line span {
    white-space: nowrap;
}

/* ============================================
   RESPONSIVE & MOBILE OPTIMIZATIONS
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Réduire la taille des personnages */
    .character-image {
        height: 200px;
    }

    /* Réduire motifs */
    .pattern-element {
        width: 60px;
        height: 60px;
    }

    .baobab-container {
        width: 150px;
        height: 300px;
        right: 5%;
    }

    .creation-book {
        width: 40px;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    /* Hero de base */
    .ultimes-griots-hero {
        min-height: 100vh;
        padding: 60px 0 40px;
        justify-content: center;
    }

    /* Simplifier le fond - Dégradé uniquement */
    .hero-gradient-layer {
        background: linear-gradient(
            135deg,
            #8B4513 0%,
            #2d1b1b 50%,
            #1a1a1a 100%
        );
        animation: none;
    }

    /* Masquer éléments décoratifs lourds */
    .african-patterns,
    .baobab-container,
    .floating-creations {
        display: none;
    }

    /* Garder seulement quelques particules */
    .particle-3,
    .particle-4,
    .particle-5,
    .particle-6 {
        display: none;
    }

    .particle {
        font-size: 1rem;
    }

    /* Masquer un personnage sur mobile */
    .hero-character-right {
        display: none;
    }

    .hero-character-left {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5%;
        position: relative;
        margin: 0 auto;
    }

    .character-image {
        height: 150px;
        max-width: 150px;
    }

    /* Contenu */
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    /* CTAs empilés verticalement */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        font-size: 1rem;
    }

    /* Trust line - version simplifiée */
    .hero-trust-line {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        font-size: 0.85rem;
    }

    .hero-trust-line span:nth-child(2) {
        display: none;
    }
}

/* Très petit mobile (max 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .character-image {
        height: 120px;
        max-width: 120px;
    }
}

/* ============================================
   ACCESSIBILITÉ
   ============================================ */

/* Désactiver animations si préférence utilisateur */
@media (prefers-reduced-motion: reduce) {
    .ultimes-griots-hero *,
    .ultimes-griots-hero *::before,
    .ultimes-griots-hero *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-gradient-layer {
        animation: none;
    }

    .pattern-element,
    .particle,
    .creation-book,
    .baobab-svg {
        animation: none;
    }

    .hero-animate {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Mode sombre - Ajustements si nécessaire */
@media (prefers-color-scheme: dark) {
    .ultimes-griots-hero {
        /* Déjà optimisé pour dark mode */
    }
}

/* Performance - Will-change pour GPU acceleration */
.hero-gradient-layer,
.pattern-element,
.particle,
.creation-book,
.baobab-svg,
.character-image {
    will-change: transform;
}

/* Optimisation de performance après animation */
.hero-animate.animated {
    will-change: auto;
}

/* ============================================
   FIN HERO SECTION
   ============================================ */

/* Value Proposition Section */
.value-proposition {
    padding: 100px 0;
    background: #f8f8f8;
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2d1b1b;
}

.value-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pillar {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d1b1b;
}

.pillar p {
    color: #666;
    line-height: 1.6;
}

/* Pillar with Image Styles - Column Layout */
.pillar-with-image {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pillar-with-image:hover {
    transform: translateY(-10px);
}

.pillar-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.authentic-collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.pillar-with-image:hover .authentic-collection-img {
    transform: scale(1.05);
}

.pillar-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d1b1b;
}

.pillar-content p {
    color: #666;
    line-height: 1.6;
}

/* Minimal Process Section */
.process-section {
    padding: 120px 0;
    background: #1a1a1a;
    color: white;
    position: relative;
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: 1px;
}

.process-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 80px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.process-card:hover::before {
    opacity: 1;
}

.card-header {
    margin-bottom: 25px;
}

.step-indicator {
    font-size: 0.9rem;
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.card-content p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.card-visual {
    margin-top: 30px;
    height: 60px;
    position: relative;
}

.visual-element {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease 0.2s;
}

.process-card:hover .visual-element {
    opacity: 1;
}

.visual-element::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
}

.process-card:hover .visual-element::after {
    opacity: 1;
}

.process-flow {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    pointer-events: none;
}

.flow-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(212, 175, 55, 0.3) 50%, transparent 90%);
    position: relative;
}

.flow-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 0;
    background: #D4AF37;
    animation: flowProgress 3s ease-in-out infinite;
}

/* Reveal Animation */
.process-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-section {
        padding: 80px 0;
    }
    
    .process-section h2 {
        font-size: 2.2rem;
    }
    
    .process-card {
        padding: 30px 25px;
    }
}

/* Subtle Animations */
@keyframes flowProgress {
    0% { width: 0; opacity: 1; }
    50% { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-description { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .cta-button { width: 250px; text-align: center; }
    .process-step { flex-direction: column; text-align: center; }
    .step-number { margin-right: 0; margin-bottom: 20px; }
}
.trust-signals-bar {
    background: white;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    font-size: 2rem;
    filter: grayscale(0.3);
}

.trust-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .trust-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trust-item {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .trust-icon {
        font-size: 1.5rem;
    }

    .trust-text {
        font-size: 0.85rem;
    }
}
/* Best-Sellers Section */
.bestsellers-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #2d1b1b;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.5px;
}

.badge-bestseller {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #1a1a1a;
}

.badge-sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.badge-sale-small {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    top: 55px !important;
    padding: 4px 10px;
    font-size: 0.7rem;
}

/* Multiple badges support */
.product-card .product-badge + .product-badge {
    top: 55px;
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.2rem;
    color: #2d1b1b;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
}

.product-price {
    font-size: 1.3rem;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-price del {
    color: #999;
    font-size: 1rem;
    margin-right: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    font-size: 0.9rem;
    color: #FFD700;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.85rem;
    color: #999;
}

.product-cta {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.bestsellers-cta {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #D4AF37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-products-message p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 1024px) {
    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bestsellers-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .bestsellers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-image {
        height: 250px;
    }
}
/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f8f8;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '';
    display: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Testimonial Cards with Real Images */
.testimonial-with-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.05);
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.testimonial-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: #2d1b1b;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.testimonial-org {
    font-size: 0.85rem !important;
    color: #D4AF37 !important;
    font-weight: 500 !important;
    margin-top: 5px !important;
}

.testimonial-rating {
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 25px;
    }
}
/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(212, 175, 55, 0.95);
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.3rem;
    color: #2d1b1b;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 55px;
}

.blog-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-block;
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-read-more {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-posts-message p {
    font-size: 1.3rem;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-image {
        height: 200px;
    }
}
