/* Shipping & Returns Policy - Frontend Styles */
.srpm-policy-card {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
}

/* THÈME NOIR & BLANC (Couleurs de la marque) */
.srpm-black-white {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.srpm-black-white .srpm-brand-head {
    border-bottom: 2px solid #000000;
}

.srpm-black-white .srpm-logo-icon {
    background: #000000;
    color: #ffffff;
}

.srpm-black-white .srpm-brand-head h1 {
    color: #000000;
}

.srpm-black-white .srpm-brand-head h1 span {
    color: #666666;
}

.srpm-black-white .srpm-tagline {
    background: #f5f5f5;
    color: #333333;
    border: 1px solid #dddddd;
}

.srpm-black-white .srpm-intro-text {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    color: #333333;
}

.srpm-black-white .srpm-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.srpm-black-white .srpm-section:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: #999999;
}

.srpm-black-white .srpm-section-title {
    border-left: 7px solid #333333;
    color: #000000;
}

.srpm-black-white .srpm-subsection {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
}

.srpm-black-white .srpm-sub-head {
    color: #333333;
}

.srpm-black-white .srpm-sub-head .dashicons {
    color: #555555;
}

.srpm-black-white .srpm-delivery-detail {
    background: #f5f5f5;
    border-left: 5px solid #888888;
}

.srpm-black-white .srpm-highlight {
    background: #f0f0f0;
    color: #222222;
    border: 1px solid #cccccc;
}

.srpm-black-white .srpm-badge {
    background: #e0e0e0;
    color: #222222;
}

.srpm-black-white .srpm-reminder-box {
    background: #f5f5f5;
    border-left: 5px solid #666666;
    color: #333333;
}

.srpm-black-white .srpm-conditions li {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
}

.srpm-black-white .srpm-conditions li .dashicons {
    color: #555555;
}

.srpm-black-white .srpm-note-48h {
    background: #f0f0f0;
    border: 1px dashed #999999;
    color: #333333;
}

.srpm-black-white .srpm-refund-note {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
}

.srpm-black-white .srpm-warning-note {
    background: #ffeeee;
    border-color: #cccccc;
    color: #333333;
}

.srpm-black-white .srpm-reminder-small {
    background: #f5f5f5;
    color: #333333;
}

.srpm-black-white .srpm-baseline .srpm-highlight {
    background: #f0f0f0;
}

.srpm-black-white .srpm-help-section {
    background: #f5f5f5;
    border: 1px solid #dddddd;
}

.srpm-black-white .srpm-help-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.srpm-black-white .srpm-footer-motto {
    background: #f8f8f8;
    color: #333333;
}

.srpm-black-white .srpm-mini-legal {
    color: #777777;
}

/* THÈME VIOLET (Original) - option de secours */
.srpm-purple-theme {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    border-radius: 0;
    box-shadow: 0 30px 60px -20px rgba(23, 18, 43, 0.4);
}

/* Styles communs pour les deux thèmes */
.srpm-brand-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
}

.srpm-logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 30px 30px 30px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transform: rotate(-2deg);
}

.srpm-logo-icon .dashicons {
    font-size: 2rem;
    width: auto;
    height: auto;
}

.srpm-brand-head h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.srpm-brand-head h1 span {
    font-weight: 300;
    font-size: 1.8rem;
}

.srpm-tagline {
    margin-left: auto;
    padding: 0.5rem 1.6rem;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.srpm-intro-text {
    padding: 1.6rem 2rem;
    border-radius: 2rem;
    margin-bottom: 2.8rem;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.srpm-intro-text .dashicons {
    font-size: 2rem;
    width: auto;
    height: auto;
}

.srpm-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem 1.8rem;
    margin-bottom: 2.8rem;
}

.srpm-section {
    border-radius: 2rem;
    padding: 1.8rem 2rem 2rem 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s;
}

.srpm-section:hover {
    transform: translateY(-5px);
}

.srpm-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.9rem;
    font-weight: 650;
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.srpm-section-title .dashicons {
    font-size: 2rem;
    width: auto;
    height: auto;
}

.srpm-subsection {
    border-radius: 1.4rem;
    padding: 1.2rem 1.5rem;
    margin: 1.4rem 0 1.8rem 0;
}

.srpm-sub-head {
    font-weight: 650;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.srpm-delivery-detail {
    border-radius: 1.2rem;
    padding: 0.9rem 1.2rem;
    margin: 0.8rem 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.srpm-highlight {
    padding: 0.2rem 1rem;
    border-radius: 40px;
    display: inline-block;
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.srpm-badge {
    border-radius: 30px;
    padding: 0.2rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.srpm-reminder-box {
    border-radius: 1rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.srpm-conditions {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
}

.srpm-conditions li {
    margin: 0.7rem 0;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 60px;
    font-size: 0.98rem;
}

.srpm-note-48h {
    border-radius: 40px;
    padding: 0.3rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.srpm-refund-note {
    border-radius: 1.2rem;
    padding: 0.9rem 1.5rem;
    margin: 1rem 0;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.srpm-reminder-small {
    margin-top: 1rem;
    font-size: 0.95rem;
    border-radius: 30px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.srpm-baseline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.srpm-help-section {
    border-radius: 0;
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.srpm-help-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.srpm-help-icon {
    font-size: 3.2rem;
    width: auto;
    height: auto;
}

.srpm-help-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.srpm-help-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.srpm-help-btn {
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: default;
    box-shadow: 0 5px 0 #666666, 0 6px 20px rgba(0,0,0,0.1);
}

.srpm-help-btn .dashicons {
    font-size: 1.5rem;
    width: auto;
    height: auto;
}

.srpm-footer-motto {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 1rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.srpm-mini-legal {
    display: flex;
    justify-content: flex-end;
    font-size: 0.8rem;
    margin-top: 1.5rem;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .srpm-policy-card {
        padding: 1.5rem;
    }
    
    .srpm-brand-head h1 {
        font-size: 1.8rem;
    }
    
    .srpm-brand-head h1 span {
        font-size: 1.4rem;
    }
    
    .srpm-section-title {
        font-size: 1.5rem;
    }
    
    .srpm-help-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .srpm-help-text {
        justify-content: center;
    }
    
    .srpm-mini-legal {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}