/* ============================================
   El Raconet de Aroa - Devoluciones Page
   ============================================ */

.raconet-devoluciones-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: var(--raconet-spacing-3xl) var(--raconet-spacing-md);
}

/* ============================================
   Hero / Intro
   ============================================ */

.raconet-devoluciones-hero {
    text-align: center;
    margin-bottom: var(--raconet-spacing-3xl);
    padding-bottom: var(--raconet-spacing-xl);
    border-bottom: 1px solid var(--raconet-color-border);
}

.raconet-devoluciones-label {
    display: inline-block;
    font-family: var(--raconet-font-button);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--raconet-color-text-muted);
    text-transform: uppercase;
    margin-bottom: var(--raconet-spacing-md);
}

.raconet-devoluciones-title {
    font-family: var(--raconet-font-display);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--raconet-color-primary);
    margin: 0 0 var(--raconet-spacing-md);
}

.raconet-devoluciones-subtitle {
    font-family: var(--raconet-font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--raconet-color-text-light);
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================
   Highlights (resumen rápido)
   ============================================ */

.raconet-devoluciones-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--raconet-spacing-md);
    margin-bottom: var(--raconet-spacing-3xl);
}

.raconet-highlight-card {
    background: var(--raconet-color-white);
    border: 1px solid var(--raconet-color-border-light);
    border-radius: var(--raconet-radius-lg);
    padding: var(--raconet-spacing-lg);
    text-align: center;
    transition: var(--raconet-transition-normal);
}

.raconet-highlight-card:hover {
    border-color: var(--raconet-color-secondary);
    box-shadow: var(--raconet-shadow-sm);
}

.raconet-highlight-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--raconet-spacing-sm);
    color: var(--raconet-color-secondary);
}

.raconet-highlight-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.raconet-highlight-title {
    font-family: var(--raconet-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--raconet-color-primary);
    margin: 0 0 var(--raconet-spacing-xs);
}

.raconet-highlight-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--raconet-color-text-light);
    margin: 0;
}

/* ============================================
   Sections (contenido principal)
   ============================================ */

.raconet-devoluciones-section {
    margin-bottom: var(--raconet-spacing-2xl);
}

.raconet-devoluciones-section h2 {
    font-family: var(--raconet-font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--raconet-color-primary);
    margin: 0 0 var(--raconet-spacing-md);
    padding-bottom: var(--raconet-spacing-sm);
    border-bottom: 2px solid var(--raconet-color-secondary);
    display: inline-block;
}

.raconet-devoluciones-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--raconet-color-primary);
    margin: 0 0 var(--raconet-spacing-md);
}

.raconet-devoluciones-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--raconet-spacing-md);
}

.raconet-devoluciones-section li {
    position: relative;
    padding: var(--raconet-spacing-xs) 0 var(--raconet-spacing-xs) var(--raconet-spacing-lg);
    font-size: 16px;
    line-height: 1.6;
    color: var(--raconet-color-primary);
}

.raconet-devoluciones-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--raconet-color-secondary);
    border-radius: var(--raconet-radius-full);
}

/* Excepciones list: cruz en lugar de bullet */
.raconet-devoluciones-excepciones li::before {
    content: '×';
    background: transparent;
    color: #C44;
    font-size: 20px;
    font-weight: 700;
    width: auto;
    height: auto;
    top: 4px;
    line-height: 1;
}

/* ============================================
   Callout "Importante"
   ============================================ */

.raconet-devoluciones-callout {
    background: var(--raconet-color-bg);
    border-left: 4px solid var(--raconet-color-secondary);
    padding: var(--raconet-spacing-lg);
    border-radius: var(--raconet-radius-md);
    margin: var(--raconet-spacing-xl) 0;
}

body.raconet-theme-active .raconet-devoluciones-callout strong {
    display: block;
    font-family: var(--raconet-font-display);
    font-size: 18px;
    color: var(--raconet-color-primary);
    margin-bottom: var(--raconet-spacing-xs);
    letter-spacing: 0.5px;
}

body.raconet-theme-active .raconet-devoluciones-callout p {
    margin: 0;
    color: var(--raconet-color-text-light);
}

/* ============================================
   Dirección de envío (caja destacada)
   ============================================ */

.raconet-devoluciones-address {
    background: var(--raconet-color-primary);
    color: var(--raconet-color-white);
    padding: var(--raconet-spacing-xl);
    border-radius: var(--raconet-radius-lg);
    margin: var(--raconet-spacing-xl) 0;
    text-align: center;
}

body.raconet-theme-active .raconet-devoluciones-address h3 {
    font-family: var(--raconet-font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--raconet-color-white);
    margin: 0 0 var(--raconet-spacing-sm);
    letter-spacing: 1px;
}

body.raconet-theme-active .raconet-devoluciones-address p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--raconet-color-white);
    margin: 0;
}

.raconet-devoluciones-address .raconet-address-placeholder {
    opacity: 0.7;
    font-style: italic;
    font-size: 14px;
}

/* ============================================
   Contact CTA final
   ============================================ */

.raconet-devoluciones-contact {
    background: var(--raconet-color-white);
    border: 1px solid var(--raconet-color-border-light);
    border-radius: var(--raconet-radius-lg);
    padding: var(--raconet-spacing-xl);
    text-align: center;
    margin-top: var(--raconet-spacing-2xl);
}

.raconet-devoluciones-contact h2 {
    border: none;
    padding: 0;
    margin-bottom: var(--raconet-spacing-sm);
    font-size: 28px;
}

.raconet-devoluciones-contact p {
    color: var(--raconet-color-text-light);
    margin-bottom: var(--raconet-spacing-md);
}

.raconet-devoluciones-contact-methods {
    display: flex;
    justify-content: center;
    gap: var(--raconet-spacing-md);
    flex-wrap: wrap;
}

.raconet-contact-method {
    display: inline-flex;
    align-items: center;
    gap: var(--raconet-spacing-xs);
    padding: var(--raconet-spacing-sm) var(--raconet-spacing-lg);
    background: var(--raconet-color-bg);
    border: 1px solid var(--raconet-color-border);
    border-radius: var(--raconet-radius-md);
    font-family: var(--raconet-font-button);
    font-size: 14px;
    font-weight: 500;
    color: var(--raconet-color-primary);
    text-decoration: none;
    transition: var(--raconet-transition-normal);
}

body.raconet-theme-active .raconet-contact-method:hover,
body.raconet-theme-active .raconet-contact-method:hover span {
    background: var(--raconet-color-primary);
    color: var(--raconet-color-white);
    border-color: var(--raconet-color-primary);
}

.raconet-contact-method svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
    .raconet-devoluciones-wrapper {
        padding: var(--raconet-spacing-2xl) var(--raconet-spacing-md);
    }

    .raconet-devoluciones-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .raconet-devoluciones-highlights {
        grid-template-columns: 1fr;
        gap: var(--raconet-spacing-sm);
    }

    .raconet-devoluciones-title {
        font-size: 42px;
    }

    .raconet-devoluciones-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .raconet-devoluciones-wrapper {
        padding: var(--raconet-spacing-xl) var(--raconet-spacing-md);
    }

    .raconet-devoluciones-title {
        font-size: 36px;
    }

    .raconet-devoluciones-subtitle {
        font-size: 16px;
    }

    .raconet-devoluciones-section {
        margin-bottom: var(--raconet-spacing-xl);
    }

    .raconet-devoluciones-section h2 {
        font-size: 24px;
    }

    .raconet-devoluciones-address,
    .raconet-devoluciones-contact {
        padding: var(--raconet-spacing-lg);
    }

    .raconet-devoluciones-contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .raconet-contact-method {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .raconet-devoluciones-title {
        font-size: 30px;
    }

    .raconet-devoluciones-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .raconet-devoluciones-section li {
        font-size: 15px;
    }
}
