/* =============================================
   SHIPPING POLICY PAGE
   ============================================= */

.policy-body {
    background: #f6f5f3;
    font-family: 'Inter', sans-serif;
    color: #111;
}

/* ---- HERO BANNER ---- */
.policy-hero {
    background: linear-gradient(135deg, #8492c3 0%, #6e7eb0 50%, #8ebcb7 100%);
    padding: 80px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E") repeat;
    background-size: 180px;
    opacity: 0.25;
    pointer-events: none;
}

.policy-hero-icon {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
    position: relative;
    z-index: 1;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.policy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.policy-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    position: relative;
    z-index: 1;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- MAIN CONTAINER ---- */
.policy-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

/* ---- SECTION CARDS ---- */
.policy-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 40px;
    margin-bottom: 20px;
    border: 1px solid #e8e7ec;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
}

.policy-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-card:hover {
    box-shadow: 0 8px 32px rgba(132, 146, 195, 0.12);
}

/* Card header */
.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0eef8;
}

.card-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f0eef8, #e8f4f3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* Card body text */
.policy-text {
    font-size: 15px;
    line-height: 1.82;
    color: #555;
    margin-bottom: 14px;
}

.policy-text:last-child {
    margin-bottom: 0;
}

/* ---- HIGHLIGHT ROWS ---- */
.highlight-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f7fd;
    border: 1px solid #ebe9f5;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.highlight-row.success {
    background: #f0faf8;
    border-color: #d0ede9;
}

.highlight-row.danger {
    background: #fff5f5;
    border-color: #fdd;
}

.highlight-row.warning {
    background: #fffbef;
    border-color: #fde9a0;
}

.highlight-row .hi-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.highlight-row strong {
    color: #222;
}

/* ---- STAT ROW (delivery time etc.) ---- */
.stat-strip {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 18px 0;
}

.stat-box {
    flex: 1;
    min-width: 140px;
    background: linear-gradient(135deg, #8492c3, #6e7eb0);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    color: #fff;
}

.stat-box .stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.stat-box .stat-lbl {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
}

.stat-box.teal {
    background: linear-gradient(135deg, #8ebcb7, #6da8a2);
}

/* ---- NO POLICY LIST ---- */
.no-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.no-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    background: #fff5f5;
    border: 1px solid #fdd;
    border-radius: 8px;
    padding: 10px 16px;
}

/* ---- CLOSING BANNER ---- */
.policy-closing {
    margin-top: 48px;
    background: linear-gradient(135deg, #8492c3 0%, #8ebcb7 100%);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
}

.policy-closing h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-closing p {
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto;
}

.policy-closing .closing-heart {
    font-size: 32px;
    display: block;
    margin-top: 20px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
    .policy-card {
        padding: 24px 20px;
    }

    .policy-hero {
        padding: 60px 20px 48px;
    }

    .stat-strip {
        flex-direction: column;
    }

    .policy-closing {
        padding: 36px 24px;
    }
}