/* Chickpea page unique styles */
.chickpea-page {
    background-color: #ffffff;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

.hero-slideshow {
    position: relative;
    height: 100vh;
    /* Fallback */
    height: 100svh;
    /* Mobile modern */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1e293b;
    background-color: #ffffff;
    margin-top: -76px;
    /* Consistency */
    padding-top: 76px;
    /* Content visibility */
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 0;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #b45309;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #475569;
}

.hero-contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f59e0b;
    color: #ffffff;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-contact-btn:hover {
    background-color: #eab308;
}

.slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slide-dots .dot {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-dots .dot.active {
    background-color: #f59e0b;
}

.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #b45309;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 9999px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: #ffffff;
}

.prev-slide {
    left: 1rem;
}

.next-slide {
    right: 1rem;
}

/* Unique content section */
.unique-content-section {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.unique-content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #b45309;
}

.unique-content-section article {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.unique-content-section article:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.unique-content-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #d97706;
}

.unique-content-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
}

/* Call to action section */
.cta-section {
    background-color: #f8fafc;
    color: #1e293b;
    padding: 3rem 1rem;
    text-align: center;
    margin-top: 3rem;
    border-radius: 12px;
    box-shadow: none;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px #5c3a00;
}

.cta-section a {
    background-color: #f59e0b;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px transparent;
}

.cta-section a:hover {
    background-color: #333;
    box-shadow: 0 0 15px #facc15;
}

/* Footer adjustments */
.footer {
    background-color: #f8fafc;
    color: #64748b;
    padding: 2rem 1rem;
    box-shadow: inset 0 1px 0 #e2e8f0;
}

.footer a {
    color: #b45309;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    text-decoration: underline;
    color: #d97706;
}

/* Animations */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeInScale {
    animation: fadeInScale 1s ease forwards;
}

/* Product Overview Section */
.product-overview-section {
    background-color: #1f2937;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 0 20px #b8860b;
}

.product-overview-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fbbf24;
    text-shadow: 1px 1px 3px #5c3a00;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text {
    color: #e5e7eb;
    font-size: 1.125rem;
    line-height: 1.75;
}

.overview-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px #b8860b;
    transition: box-shadow 0.3s ease;
}

.overview-image:hover {
    box-shadow: 0 0 25px #facc15;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

/* Locations Section */
.locations-section {
    background-color: #2d3748;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 0 20px #b8860b;
}

.locations-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fbbf24;
    text-shadow: 1px 1px 3px #5c3a00;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-card {
    background-color: #374151;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px #b8860b;
    transition: box-shadow 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 0 25px #facc15;
}

.location-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-card:hover img {
    transform: scale(1.05);
}

.location-content {
    padding: 1rem 1.5rem;
    color: #e5e7eb;
}

.location-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
    text-shadow: 1px 1px 2px #5c3a00;
}

.location-content p {
    font-size: 1rem;
    line-height: 1.5;
}