/**
 * Shipping Information Page - Clean Style
 */

/* Breadcrumb container */
.breadcrumb-container {
    background: #f8f9fa;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    max-height: 50px;
}

/* Shipping page content container */
.shipping-page-content {
    max-width: 1400px;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    margin: 0 auto;
    border: 1px solid #ddd;
}

/* Typography */
.shipping-page-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 40px 0;
}

.shipping-page-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.shipping-page-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 25px 0 12px 0;
}

.shipping-page-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: justify;
}

.shipping-page-content p:last-child {
    margin-bottom: 0;
}

/* Sections */
.shipping-page-content section {
    margin-bottom: 40px;
}

.shipping-page-content section:last-child {
    margin-bottom: 0;
}

/* Lists */
.shipping-page-content ul,
.shipping-page-content ol {
    margin: 16px 0;
    padding-left: 25px;
}

.shipping-page-content li {
    margin: 12px 0;
    line-height: 1.6;
    font-size: 17px;
    color: #000000;
}

/* Links */
.shipping-page-content a {
    color: #32cd33;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shipping-page-content a:hover {
    color: #666666;
    text-decoration: underline;
}

/* Contact info pre tag */
.shipping-page-content pre {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    background: #f8f9fa;
    border-left: 4px solid #32cd33;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    white-space: pre-line;
}

/* Emphasis styling */
.shipping-page-content em {
    font-style: italic;
    color: #666;
    background: #f8f9fa;
    padding: 2px 4px;
    border-radius: 3px;
}

.shipping-page-content strong {
    font-weight: 600;
    color: #000000;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .shipping-page-content {
        padding: 40px 30px;
        border-radius: 6px;
        margin: 0 15px;
    }

    .shipping-page-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .shipping-page-content h2 {
        font-size: 22px;
    }

    .shipping-page-content h3 {
        font-size: 18px;
    }

    .shipping-page-content p,
    .shipping-page-content li {
        font-size: 16px;
        text-align: left;
    }

    .shipping-page-content ul,
    .shipping-page-content ol {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-container {
        padding: 0.5rem 0;
    }

    .shipping-page-content {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .shipping-page-content h1 {
        font-size: 24px;
    }

    .shipping-page-content h2 {
        font-size: 20px;
    }

    .shipping-page-content h3 {
        font-size: 18px;
    }

    .shipping-page-content p,
    .shipping-page-content li {
        font-size: 15px;
    }

    .shipping-page-content pre {
        padding: 15px;
        font-size: 14px;
    }
}

/* Grid for sections (like delivery times) */
.shipping-page-content .row {
    display: flex !important;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.shipping-page-content .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0 15px;
    margin-bottom: 20px;
    display: inline-block;
}

.country-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #32cd33;
    height: 100%;
}

.country-card h3 {
    color: #32cd33;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.country-card p {
    margin-bottom: 0;
    font-size: 16px;
    color: #000000;
}

/* Tracking steps */
.tracking-steps {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: nowrap;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.step-number {
    background: #32cd33;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
}

.step-arrow {
    font-size: 18px;
    color: #666;
    font-weight: normal;
    flex-shrink: 0;
}

/* Mobile responsiveness for grid */
@media (max-width: 768px) {
    .shipping-page-content .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tracking-steps {
        flex-direction: column;
        gap: 15px;
    }

    .step-card {
        max-width: none;
        width: 100%;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
}

/* Focus styles for accessibility */
.shipping-page-content a:focus {
    outline: 2px solid #32cd33;
    outline-offset: 2px;
}