/**
 * Wholesale Page Component
 * Mobile-first responsive layout
 */

/* ============================================================================
   WHOLESALE WRAPPER
   ========================================================================== */

.wholesale-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ============================================================================
   WHOLESALE SECTION
   ========================================================================== */

.wholesale-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--light-grey);
}

.wholesale-section:last-of-type {
    border-bottom: none;
}

/* ============================================================================
   WHOLESALE CONTENT
   ========================================================================== */

.wholesale-content {
    order: 1;
}

.wholesale-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

.wholesale-cta {
    margin-bottom: 1.5rem;
}

.wholesale-cta a {
    color: var(--forest-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.wholesale-cta a:hover {
    color: var(--olive);
}

/* ============================================================================
   WHOLESALE TITLE
   ========================================================================== */

.wholesale-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin: 0 0 1rem 0;
}

/* ============================================================================
   WHOLESALE FEATURES LIST
   ========================================================================== */

.wholesale-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.wholesale-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark-grey);
}

.wholesale-features li i {
    color: var(--forest-green);
    font-size: 1.125rem;
    width: 1.5rem;
    flex-shrink: 0;
}

/* ============================================================================
   WHOLESALE BUTTON
   ========================================================================== */

.wholesale-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background-color: var(--forest-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wholesale-btn:hover {
    background-color: var(--dark-green-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 79, 69, 0.3);
    color: white;
}

.wholesale-btn:visited {
    color: white;
}

/* ============================================================================
   WHOLESALE IMAGE
   ========================================================================== */

.wholesale-image {
    order: 2;
}

.wholesale-image figure {
    margin: 0;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.wholesale-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ============================================================================
   WHOLESALE FOOTER
   ========================================================================== */

.wholesale-footer {
    text-align: center;
    padding-top: 1rem;
}

/* ============================================================================
   TABLET STYLES (768px+)
   ========================================================================== */

@media (min-width: 768px) {
    .wholesale-wrapper {
        padding: 3rem 1rem;
    }

    .wholesale-section {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }

    .wholesale-title {
        font-size: 1.75rem;
    }
}

/* ============================================================================
   DESKTOP STYLES (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
    .wholesale-wrapper {
        padding: 4rem 1rem;
    }

    .wholesale-section {
        grid-template-columns: 7fr 5fr;
        gap: 3rem;
        padding-bottom: 3rem;
        margin-bottom: 3rem;
    }

    .wholesale-section-reverse {
        grid-template-columns: 5fr 7fr;
    }

    .wholesale-section-reverse .wholesale-content {
        order: 2;
    }

    .wholesale-section-reverse .wholesale-image {
        order: 1;
    }

    .wholesale-content p {
        font-size: 1.0625rem;
    }

    .wholesale-title {
        font-size: 1.875rem;
    }

    .wholesale-image figure {
        padding: 2rem;
    }
}
