/* Unique Producers Page Styles */
.vendor-directory {
    padding: 5rem 5% 3rem;
    margin-top: 60px;
    background: #faf8f5;
}

.vendor-heading {
    text-align: center;
    font-size: 2.4rem;
    color: #1a472a;
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
}

.vendor-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1.5rem auto 0;
}

.supplier-profile {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.supplier-visual {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background: #eceae4;
}

.supplier-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.supplier-profile:hover .supplier-visual img {
    transform: scale(1.03);
}


.supplier-details {
    padding: 2.8rem 2rem 2.8rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vendor-name {
    color: #2d6840;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.vendor-bio {
    color: #444;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    font-size: 1.05rem;
    max-width: 38em;
}

.vendor-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #d4a83a;
    color: #1a472a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.25s ease;
    width: fit-content;
}

.vendor-cta:hover {
    background: #bf952d;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .supplier-profile {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 2.5rem;
    }

    .supplier-visual {
        padding-top: 75%;
        /* 4:3 aspect ratio for mobile */
    }

    .supplier-details {
        padding: 2rem 1.8rem 2.5rem;
    }

    .vendor-name {
        font-size: 1.6rem;
    }

    .vendor-bio {
        font-size: 1rem;
    }

    .vendor-cta {
        width: 100%;
        text-align: center;
    }
}

/* Individual Producer Page Styles */
.producer-page {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
}

.producer-hero {
    position: relative;
    margin-top: 60px;
    height: 70vh;
    overflow: hidden;
}

.producer-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.producer-content {
    padding: 4rem 5%;
}

.intro-section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.producer-section {
    margin: 3rem 0;
}

.producer-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.producer-image {
    max-width: 800px;
    margin: 2.5rem auto;
    text-align: center;
}

.producer-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.caption {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.pull-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: var(--neutral-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .producer-hero {
        height: 50vh;
    }

    .producer-content {
        padding: 2rem 5%;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .producer-section h2 {
        font-size: 1.5rem;
    }

    .pull-quote {
        font-size: 1.1rem;
        padding: 1rem;
        margin: 2rem 0;
    }
}

.cta-text {
    padding-bottom: 50px;
}