/* --- ÜRÜNLER SAYFASI ÖZEL STİLLERİ --- */
.top-category-slider {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 15px;
    scrollbar-width: none;
}

.top-category-slider::-webkit-scrollbar {
    display: none;
}

.slider-item {
    white-space: nowrap;
    padding: 8px 16px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #333;
    border-radius: 20px;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.slider-item.active {
    background: var(--logo-red, #a61214);
    color: #fff;
    border-color: var(--logo-red, #a61214);
}

.category-header h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    border-left: 4px solid var(--logo-yellow, #f2b705);
    padding-left: 10px;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card {
    background: rgba(22, 22, 22, 0.9);
    border: 1px solid #2e2e2e;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.product-img-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.badge {
    position: absolute;
    top: -4px;
    left: -4px;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    color: #fff;
}

.badge-campaign { background: var(--logo-red, #a61214); }
.badge-favorite { background: var(--logo-yellow, #f2b705); color: #111; }

.product-details {
    flex: 1;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.product-title-row h3 {
    font-size: 15px;
    font-weight: 700;
}

.product-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--logo-yellow, #f2b705);
    white-space: nowrap;
}

.product-ingredients {
    font-size: 11px;
    color: #888;
    margin: 4px 0 6px 0;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    gap: 8px;
    font-size: 10px;
}

.meta-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    color: #ccc;
}


/* --- KAMPANYALI ÜRÜN KARTI ÖZEL KIRMIZI BORDER --- */
.product-card.is-campaign-card {
    border: 2px solid var(--logo-red, #a61214) !important;
    box-shadow: 0 4px 18px rgba(166, 18, 20, 0.25);
    position: relative;
}

/* İsteğe Bağlı: Kampanyalı ürün kartına çok hafif şık bir geçiş ekler */
.product-card.is-campaign-card:hover {
    box-shadow: 0 6px 22px rgba(166, 18, 20, 0.4);
}

