/* assets/css/shipping-returns.css - Shipping & Returns Page Complete */

:root {
    --mauve: #B79AC5;
    --mauve-dark: #9B7BAA;
    --mauve-light: #E6D9F2;
    --noir: #1A1A1A;
    --or: #D4AF8C;
    --blanc-casse: #F9F7F5;
    --gris: #3E3E3E;
    --gris-light: #F5F5F5;
    --rose-pale: #FCE4EC;
    --charcoal: #2C2C2C;
    --success: #4CAF50;
    --danger: #F44336;
    --warning: #FFC107;
    --font-titre: 'Playfair Display', serif;
    --font-texte: 'Montserrat', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ----- RESET SUPPLEMENTAIRE POUR MOBILE ----- */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ----- HERO SECTION (IMAGE) ----- */
.hero-section {
    width: 100%;
    position: relative;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-family: var(--font-titre);
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.hero-overlay p {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: var(--font-texte);
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- VIDEO BANNER SECTION ----- */
.video-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.video-banner-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
}

#shipping-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
}

.volume-btn {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.volume-btn:hover {
    background: var(--mauve);
    transform: scale(1.1);
}

/* ----- SECTION STYLES ----- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    color: var(--noir);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--mauve), var(--mauve-dark));
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-texte);
    color: var(--gris);
    font-size: 1.1rem;
    display: block;
    margin-top: 15px;
}

/* ----- SHIPPING SECTION ----- */
.shipping-section {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--blanc-casse);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--mauve), var(--mauve-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    color: var(--noir);
    margin-bottom: 15px;
}

.card-details {
    font-family: var(--font-texte);
}

.card-details .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--mauve);
    margin-bottom: 8px;
}

.card-details .time {
    font-size: 1rem;
    color: var(--gris);
    margin-bottom: 8px;
}

.card-details .description {
    font-size: 0.9rem;
    color: var(--gris);
    font-style: italic;
}

/* ----- DETAILS SECTION ----- */
.details-section {
    padding: 80px 0;
    background: var(--blanc-casse);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.details-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.details-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.details-content h3 {
    font-family: var(--font-titre);
    font-size: 1.6rem;
    color: var(--noir);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.details-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--mauve);
    border-radius: 2px;
}

.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-family: var(--font-texte);
    color: var(--gris);
    line-height: 1.6;
    font-size: 1rem;
}

.details-list i {
    color: var(--mauve);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ----- RETURNS SECTION ----- */
.returns-section {
    padding: 80px 0;
    background: white;
}

.returns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.return-card {
    background: var(--blanc-casse);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.return-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--mauve), var(--mauve-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.return-card:hover::before {
    transform: scaleX(1);
}

.return-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.return-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.return-card h3 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--noir);
    margin-bottom: 12px;
}

.return-card p {
    font-family: var(--font-texte);
    color: var(--gris);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ----- PROCESS SECTION ----- */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.process-section h3 {
    font-family: var(--font-titre);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.15);
}

.step-number {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--mauve-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-content h4 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.step-content p {
    font-family: var(--font-texte);
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1rem;
}

/* ----- FAQ SECTION ----- */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h3 {
    font-family: var(--font-titre);
    font-size: 2.2rem;
    color: var(--noir);
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: var(--blanc-casse);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--noir);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.faq-item h4::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    color: var(--mauve);
    font-weight: 700;
}

.faq-item p {
    font-family: var(--font-texte);
    color: var(--gris);
    line-height: 1.7;
    font-size: 0.95rem;
    padding-left: 20px;
}

/* ----- CONTACT SECTION ----- */
.contact-section {
    padding: 80px 0;
    background: var(--blanc-casse);
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content h3 {
    font-family: var(--font-titre);
    font-size: 2.2rem;
    color: var(--noir);
    margin-bottom: 15px;
}

.contact-content p {
    font-family: var(--font-texte);
    color: var(--gris);
    margin-bottom: 35px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-contact, .btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-texte);
    font-size: 1rem;
}

.btn-contact {
    background: var(--mauve);
    color: white;
    border: 2px solid var(--mauve);
}

.btn-contact:hover {
    background: var(--mauve-dark);
    border-color: var(--mauve-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-faq {
    background: white;
    color: var(--noir);
    border: 2px solid var(--mauve);
}

.btn-faq:hover {
    background: var(--mauve);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ----- FOOTER (IDENTIQUE AUX AUTRES PAGES) ----- */
.site-footer {
    background-color: var(--noir);
    color: var(--blanc-casse);
    padding: 60px 0 30px;
    font-family: var(--font-texte);
    margin-top: 60px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-titre);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--mauve);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    font-family: var(--font-texte);
}

.footer-col a:hover {
    color: var(--mauve);
    padding-left: 5px;
}

.footer-logo {
    font-family: var(--font-titre);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    color: white;
}

.footer-contact p {
    margin: 8px 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-family: var(--font-texte);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--mauve);
    width: 20px;
}

.payment-icons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
}

.payment-icons i {
    transition: color 0.2s;
}

.payment-icons i:hover {
    color: var(--mauve);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-family: var(--font-texte);
}

/* =========================================== */
/* ===== RESPONSIVE MOBILE FIRST ===== */
/* =========================================== */

@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 2.8rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .returns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .faq-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .hero-container {
        height: 60vh;
        min-height: 400px;
    }

    .hero-img {
        object-position: center;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .video-banner-container {
        height: 50vh;
        min-height: 350px;
    }
    
    .volume-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .info-card {
        padding: 25px 15px;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .details-content {
        padding: 25px;
    }

    .details-content h3 {
        font-size: 1.4rem;
    }

    .returns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .return-card {
        padding: 25px 15px;
    }

    .process-section h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .step-number {
        margin: 0 auto;
    }

    .step:hover {
        transform: translateY(-5px);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .contact-content h3 {
        font-size: 1.8rem;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-contact, .btn-faq {
        width: 100%;
        justify-content: center;
        padding: 12px 30px;
    }

    /* ----- FOOTER (IDENTIQUE AUX AUTRES PAGES 768px) ----- */
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-icons {
        font-size: 1.8rem;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-col ul {
        margin-bottom: 10px;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .hero-container {
        height: 50vh;
        min-height: 350px;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-overlay p {
        font-size: 0.95rem;
    }

    .video-banner-container {
        height: 40vh;
        min-height: 300px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 20px;
    }

    .returns-grid {
        grid-template-columns: 1fr;
    }

    .return-card {
        padding: 20px;
    }

    .details-content h3 {
        font-size: 1.3rem;
    }

    .details-list li {
        font-size: 0.95rem;
    }

    .faq-item h4 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .process-section h3 {
        font-size: 1.6rem;
    }

    .step-content h4 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .contact-content h3 {
        font-size: 1.6rem;
    }

    /* ----- FOOTER (IDENTIQUE AUX AUTRES PAGES 576px) ----- */
    .payment-icons {
        font-size: 1.6rem;
        gap: 10px;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .hero-container {
        height: 45vh;
        min-height: 300px;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .video-banner-container {
        height: 35vh;
        min-height: 250px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .info-card h3 {
        font-size: 1rem;
    }

    .return-card h3 {
        font-size: 1rem;
    }

    .process-section h3 {
        font-size: 1.4rem;
    }

    .faq-section h3 {
        font-size: 1.4rem;
    }

    .contact-content h3 {
        font-size: 1.4rem;
    }

    .btn-contact, .btn-faq {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* ----- FOOTER – très petits écrans (identique aux autres pages) ----- */
    .payment-icons {
        font-size: 1.4rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.shipping-section, .details-section, .returns-section, 
.process-section, .faq-section, .contact-section {
    animation: fadeIn 1s ease;
}