/* ========================================
   MODERN SPECIFIC PRODUCER PAGE
   Living Holistic Reko Houston TX
   ======================================== */

/* Producer Hero Section */
.producer-hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: var(--space-24) var(--space-6);
    margin-bottom: var(--space-16);
    position: relative;
    overflow: hidden;
}

.producer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(34,197,94,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(34,197,94,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.producer-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 2;
}

.producer-hero .producer-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--rounded-3xl);
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--white);
    transition: transform var(--transition-normal);
}

.producer-hero .producer-logo:hover {
    transform: scale(1.05);
}

.producer-hero-text {
    text-align: left;
}

.producer-hero h1 {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

.producer-location {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--primary-green);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--rounded-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-md);
}

.producer-location::before {
    content: '📍';
    font-size: var(--text-base);
}

.producer-hero p {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.producer-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.hero-badge {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
    color: var(--gray-900);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--rounded-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.producer-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--rounded-xl);
    font-size: var(--text-lg);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.producer-hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
}

.producer-hero-cta::after {
    content: '🛒';
    font-size: var(--text-xl);
}

/* Producer Content Sections */
.producer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.content-section {
    background: var(--white);
    border-radius: var(--rounded-2xl);
    padding: var(--space-10);
    margin-bottom: var(--space-12);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.content-section h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.content-section h2::before {
    content: attr(data-icon);
    font-size: var(--text-2xl);
    width: 48px;
    height: 48px;
    background: var(--primary-green-light);
    border-radius: var(--rounded-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-section p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
}

/* Product Offerings */
.producer-products {
    margin-bottom: var(--space-12);
}

.producer-products h2[data-icon="🌱"]::before {
    content: '🌱';
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.product-card {
    background: var(--gray-50);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green-light);
    background: var(--white);
}

.product-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.product-card h3::before {
    content: '✨';
    font-size: var(--text-lg);
}

.product-card p {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.product-price {
    display: inline-flex;
    align-items: center;
    background: var(--primary-green);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--rounded-lg);
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Traditional List Style for Products */
.producer-products ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-4);
}

.producer-products ul li {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    font-size: var(--text-lg);
    color: var(--gray-700);
    transition: all var(--transition-fast);
    position: relative;
    padding-left: var(--space-16);
}

.producer-products ul li::before {
    content: '🌿';
    position: absolute;
    left: var(--space-6);
    top: var(--space-6);
    font-size: var(--text-xl);
    width: 32px;
    height: 32px;
    background: var(--primary-green-light);
    border-radius: var(--rounded-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.producer-products ul li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green-light);
}

.producer-products ul li strong {
    color: var(--primary-green);
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--text-xl);
}

/* Pickup Locations */
.producer-locations {
    margin-bottom: var(--space-12);
}

.producer-locations h2[data-icon="📍"]::before {
    content: '📍';
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.location-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.location-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 2;
}

.location-card p {
    font-size: var(--text-base);
    opacity: 0.9;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
}

.location-card .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--white);
    color: var(--primary-green);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--rounded-lg);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    z-index: 2;
}

.location-card .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location-card .btn-cta::after {
    content: '→';
    font-weight: bold;
}

/* Traditional List Style for Locations */
.producer-locations ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
}

.producer-locations ul li {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    border-radius: var(--rounded-xl);
    transition: all var(--transition-fast);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.producer-locations ul li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.producer-locations ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-lg);
    transition: all var(--transition-fast);
}

.producer-locations ul li a::after {
    content: '→';
    font-size: var(--text-xl);
    font-weight: bold;
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.producer-locations ul li a:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

/* Benefits Section */
.producer-benefits {
    margin-bottom: var(--space-12);
}

.producer-benefits h2[data-icon="🌟"]::before {
    content: '🌟';
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.benefit-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: var(--rounded-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-fast);
    border: 2px solid var(--gray-100);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green-light);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-green-light);
    border-radius: var(--rounded-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin: 0 auto var(--space-6);
}

.benefit-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.benefit-card p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Traditional List Style for Benefits */
.producer-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-4);
}

.producer-benefits ul li {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    font-size: var(--text-lg);
    color: var(--gray-700);
    transition: all var(--transition-fast);
    position: relative;
    padding-left: var(--space-16);
}

.producer-benefits ul li::before {
    content: '✨';
    position: absolute;
    left: var(--space-6);
    top: var(--space-6);
    font-size: var(--text-xl);
    width: 32px;
    height: 32px;
    background: var(--accent-yellow);
    border-radius: var(--rounded-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.producer-benefits ul li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green-light);
}

.producer-benefits ul li strong {
    color: var(--primary-green);
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--text-xl);
}

/* Contact & Social Section */
.producer-contact {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    border-radius: var(--rounded-2xl);
    padding: var(--space-12);
    text-align: center;
    margin: var(--space-16) 0;
}

.producer-contact h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--space-8);
}

.contact-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-6);
    border-radius: var(--rounded-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--primary-green);
    border-radius: var(--rounded-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
}

.contact-method span {
    font-size: var(--text-base);
    font-weight: 600;
}

/* Call-to-Action Buttons */
.btn-highlight {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
    color: var(--gray-900);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--rounded-xl);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
    margin: var(--space-4);
}

.btn-highlight:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, var(--accent-yellow-dark) 0%, var(--accent-yellow) 100%);
}

.btn-highlight::after {
    content: '🛒';
    font-size: var(--text-xl);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .producer-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }
    
    .producer-hero .producer-logo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .content-section {
        padding: var(--space-8);
    }
}

@media (max-width: 768px) {
    .producer-hero {
        padding: var(--space-16) var(--space-4);
    }
    
    .producer-hero h1 {
        font-size: var(--text-4xl);
    }
    
    .producer-hero p {
        font-size: var(--text-lg);
    }
    
    .producer-content {
        padding: 0 var(--space-4);
    }
    
    .content-section {
        padding: var(--space-6);
        margin-bottom: var(--space-8);
    }
    
    .content-section h2 {
        font-size: var(--text-2xl);
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .products-grid,
    .locations-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .producer-products ul,
    .producer-locations ul,
    .producer-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .producer-contact {
        padding: var(--space-8);
        margin: var(--space-12) 0;
    }
}

@media (max-width: 480px) {
    .producer-hero .producer-logo {
        width: 120px;
        height: 120px;
    }
    
    .producer-hero h1 {
        font-size: var(--text-3xl);
    }
    
    .producer-hero p {
        font-size: var(--text-base);
    }
    
    .content-section {
        padding: var(--space-4);
    }
    
    .content-section h2 {
        font-size: var(--text-xl);
    }
    
    .product-card,
    .location-card,
    .benefit-card {
        padding: var(--space-4);
    }
    
    .producer-products ul li,
    .producer-benefits ul li {
        padding: var(--space-4);
        padding-left: var(--space-12);
        font-size: var(--text-base);
    }
    
    .producer-contact {
        padding: var(--space-6);
    }
    
    .btn-highlight {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-base);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .producer-hero .producer-logo,
    .content-section,
    .product-card,
    .location-card,
    .benefit-card,
    .contact-method,
    .btn-highlight {
        transition: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .content-section {
        border: 3px solid var(--gray-900);
    }
    
    .product-card,
    .location-card,
    .benefit-card {
        border: 2px solid var(--gray-900);
    }
}

/* Print styles */
@media print {
    .producer-hero-cta,
    .btn-highlight,
    .contact-methods {
        display: none;
    }
    
    .content-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--gray-300);
    }
    
    .producer-hero {
        background: var(--white);
        color: var(--gray-900);
    }
    
    .location-card {
        background: var(--white);
        color: var(--gray-900);
        border: 1px solid var(--gray-300);
    }
}
