/* Info Pages CSS - Shipping, Returns */

.info-page-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 120px 0 80px;
}

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

.info-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
}

.info-section.highlight {
    background: rgba(167, 139, 250, 0.08);
    border-color: rgba(167, 139, 250, 0.2);
    text-align: center;
}

.section-icon {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 16px;
    color: #a78bfa;
}

.info-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.info-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.info-section ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.info-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.info-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #a78bfa;
    font-weight: 600;
}

.check-list li::before {
    content: '✓';
    color: #4ade80;
}

.cross-list li::before {
    content: '✕';
    color: #f87171;
}

/* Shipping Table */
.shipping-table {
    margin: 24px 0;
    overflow-x: auto;
}

.shipping-table table {
    width: 100%;
    border-collapse: collapse;
}

.shipping-table th,
.shipping-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shipping-table th {
    font-size: 14px;
    font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shipping-table td {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.shipping-table .highlight-row {
    background: rgba(167, 139, 250, 0.08);
}

.shipping-table .highlight-row td {
    font-weight: 600;
}

/* Delivery Grid */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.delivery-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.delivery-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.delivery-time {
    font-size: 32px;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 8px;
}

.delivery-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Steps Grid (for Returns) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.step-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.2);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .info-page-container {
        padding: 100px 0 60px;
    }

    .info-header h1 {
        font-size: 32px;
    }

    .info-subtitle {
        font-size: 16px;
    }

    .info-section {
        padding: 28px 20px;
    }

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

    .delivery-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .shipping-table {
        font-size: 14px;
    }

    .shipping-table th,
    .shipping-table td {
        padding: 12px 8px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
    }
}
