/* assets/css/style.css */
:root {
    --brand-color: #ff8300;
}

.text-brand { color: var(--brand-color) !important; }
.bg-brand { background-color: var(--brand-color) !important; }
.btn-brand { background-color: var(--brand-color); color: white; border: none; transition: 0.3s; }
.btn-brand:hover { background-color: #e67600; color: white; }

/* Hero Alanı */
.hero-section {
    /* Çizgilerin görünürlüğü 0.07'ye çıkarıldı */
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px,
            transparent 20px
        ),
        /* Derin, premium teknoloji tonları */
        linear-gradient(135deg, #0a1128 0%, #162a5c 50%, #0a192f 100%);
    color: white;
    padding: 60px 0 100px 0;
    position: relative;
    overflow: hidden;
}

/* Arama Kartı ve Wrapper */
.search-wrapper {
    margin-top: -45px;
    position: relative;
    z-index: 10;
}

.search-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.extension-box {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 3'lü Promosyon Kartları */
.promo-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    color: white;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.promo-card > * { 
    position: relative; 
    z-index: 2; 
}

/* 4'lü Ürün Kartları */
.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
    overflow: hidden;
    background: white;
}

.product-card:hover { 
    box-shadow: 0 10px 20px rgba(0,0,0,0.08); 
}

.product-img-top {
    background-color: var(--brand-color);
    padding: 20px;
    text-align: center;
    position: relative;
}

.product-img-top img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}