/* ═══════════════════════════════════════════
   TemasLink — İşletmeler Sayfası Stilleri (isletmeler.css)
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.biz-hero {
    padding: 160px 6% 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: 1px solid var(--border);
}

.biz-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.biz-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.material-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}
.material-badge i { color: var(--accent-dim); }

/* ── Products Section ── */
.biz-products {
    padding: 100px 6%;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}
.product-showcase:last-child {
    margin-bottom: 0;
}
.product-showcase.reverse .product-image {
    order: 2;
}
.product-showcase.reverse .product-info {
    order: 1;
}

/* Image Placeholder for physical products */
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image .placeholder-icon {
    font-size: 48px;
    color: var(--border-hover);
    margin-bottom: 16px;
}

.product-image .placeholder-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 0 20px;
}

.product-image .size-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.product-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}
.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    font-size: 0.9rem;
}
.product-features li i {
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .product-showcase, .product-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    .product-showcase.reverse .product-image,
    .product-showcase.reverse .product-info {
        order: initial;
    }
}

@media (max-width: 768px) {
    .biz-hero { padding: 130px 5% 60px; }
    .biz-products { padding: 60px 5%; }
}
