/* Shipping & Returns Page Styles */
body {
    margin-top: 80px;
}
:root {
    --ivory: #FEFCFA;
    --clay: #E3C8B0;
    --sage: #B5C2B7;
    --taupe: #85827C;
    --dusty-rose: #D4B9A3;
    --deep-moss: #8B5E3C;
    --chocolate: #4A4845;
    --linen: #F4ECE3;
}

/* Hero Section */
.shipping-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    text-align: center;
    padding: 0 2rem;
}

.shipping-hero-content {
    max-width: 800px;
    z-index: 1;
}

.shipping-hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--chocolate);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.shipping-hero-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1rem;
    color: var(--taupe);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Shipping Container */
.shipping-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.shipping-intro {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1rem;
    color: var(--taupe);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 1rem;
}

/* Timeline */
.shipping-timeline {
    position: relative;
    padding-left: 50px;
    margin-bottom: 4rem;
}

.shipping-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--dusty-rose);
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--ivory);
    border: 2px solid var(--dusty-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dusty-rose);
    font-size: 1.2rem;
}

.timeline-content {
    background-color: var(--ivory);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(181, 194, 183, 0.3);
    box-shadow: 0 5px 15px rgba(92, 77, 61, 0.05);
}

.timeline-content h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.5rem;
    color: var(--chocolate);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: var(--taupe);
    line-height: 1.8;
}

/* Policy Cards */
.shipping-policies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.policy-card {
    background-color: var(--ivory);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(181, 194, 183, 0.3);
    box-shadow: 0 5px 15px rgba(92, 77, 61, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.policy-icon {
    font-size: 1.8rem;
    color: var(--dusty-rose);
    margin-bottom: 1.5rem;
}

.policy-card h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.3rem;
    color: var(--chocolate);
    margin-bottom: 1rem;
}

.policy-card p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: var(--taupe);
    line-height: 1.8;
}

.policy-card a {
    color: var(--dusty-rose);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-card a:hover {
    color: var(--chocolate);
    text-decoration: underline;
}

/* Notes Section */
.shipping-notes {
    background-color: rgba(244, 236, 227, 0.5);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    border-left: 3px solid var(--dusty-rose);
}

.note-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.note-header i {
    font-size: 1.5rem;
    color: var(--dusty-rose);
    margin-right: 1rem;
}

.note-header h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.5rem;
    color: var(--chocolate);
    margin: 0;
}

.note-list {
    list-style-type: none;
    padding-left: 0;
}

.note-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: var(--taupe);
    line-height: 1.8;
}

.note-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dusty-rose);
    font-size: 1.5rem;
    line-height: 1;
}

/* Contact CTA */
.shipping-contact {
    text-align: center;
    padding: 2rem;
    background-color: rgba(244, 236, 227, 0.5);
    border-radius: 4px;
}

.shipping-contact p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1rem;
    color: var(--taupe);
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #8B5E3C;
    color: white;
    border-radius: 4px;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #6F4B30;
    transform: translateY(-2px);
}

/* Floating Elements */
.floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        margin-top: 70px;
    }
    .shipping-hero-title {
        font-size: 2.2rem;
    }

    .shipping-hero-subtitle {
        font-size: 1rem;
    }

    .shipping-container {
        padding: 3rem 1rem;
    }

    .shipping-timeline {
        padding-left: 40px;
    }

    .timeline-icon {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 60px;
    }
    .shipping-hero {
        height: 35vh;
        min-height: 250px;
    }

    .shipping-hero-title {
        font-size: 1.8rem;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .policy-card {
        padding: 1.5rem;
    }
}