/* Shipping Information Page Styles */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.shipping-content {
    display: grid;
    gap: 3rem;
}

.shipping-section, .processing-section, .special-handling, .faq-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shipping-options {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.shipping-option {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.shipping-option:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.option-header i {
    color: #667eea;
    font-size: 1.5rem;
}

.option-header h3 {
    margin: 0;
    color: #2c3e50;
}

.option-details p {
    margin: 0.25rem 0;
    color: #6c757d;
}

.processing-timeline {
    margin-top: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.timeline-content p {
    margin: 0;
    color: #6c757d;
}

.handling-info {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.handling-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.handling-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.handling-item h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.handling-item p {
    margin: 0;
    color: #6c757d;
}

.faq-list {
    margin-top: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.faq-item p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

.faq-item a {
    color: #667eea;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .shipping-section, .processing-section, .special-handling, .faq-section {
        padding: 1.5rem;
    }
    
    .shipping-options {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .handling-item {
        flex-direction: column;
        text-align: center;
    }
    
    .option-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
