/* ====================================
   BRANDS PAGE STYLES
   ==================================== */

.brands-intro {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.brands-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.brands-headline {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1.25rem;
}

.brands-sub {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 900px;
    margin: 0 auto;
}

/* Brand Sections */
.brand-section {
    padding: 4rem 2rem;
}

.kivo-section { background: var(--bg-light); }
.mutlu-section { background: var(--bg-cream); }

/* Kivo Banner */
.kivo-banner {
    background: linear-gradient(135deg, #2d7a35, #5a9e4f);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kivo-logo-big {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    letter-spacing: 6px;
    line-height: 1;
}

.kivo-banner-text {
    text-align: center;
}

.kivo-banner-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

/* Mutlu Banner */
.mutlu-banner {
    background: linear-gradient(135deg, #c0392b, #96281b);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mutlu-banner-text {
    text-align: center;
}

.mutlu-logo-big {
    font-size: 3.5rem;
    font-weight: 900;
    font-style: italic;
    color: white;
    line-height: 1;
}

.mutlu-logo-sub {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mutlu-banner-text p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image.pepper-bg {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.product-card-image.gari-bg {
    background: linear-gradient(135deg, #d35400, #e67e22);
}

.product-card-image.creamer-bg {
    background: linear-gradient(135deg, #795548, #8d6e63);
}

.product-card-image.ginger-bg {
    background: linear-gradient(135deg, #6d4c41, #8d6e63);
}

.product-card-image.curry-bg {
    background: linear-gradient(135deg, #e65100, #f57c00);
}

.product-card-image.beans-bg {
    background: linear-gradient(135deg, #c0392b, #962d22);
}

.product-card-image.spaghetti-bg {
    background: linear-gradient(135deg, #8b1a1a, #b22222);
}

.pkg-display {
    text-align: center;
    color: white;
}

.pkg-name {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 0.4rem;
}

.mutlu-name {
    font-style: italic;
    letter-spacing: 1px;
}

.pkg-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.9;
}

.pkg-desc strong { font-size: 0.9rem; }

.product-card-body {
    padding: 1.5rem;
}

.product-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-card-body p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    background: #e8f5e9;
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

/* ====================================
   RESPONSIVE - BRANDS
   ==================================== */
@media (max-width: 900px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .kivo-logo-big { font-size: 2.5rem; }
}
