/* Genel Ayarlar */
html, body { font-family: 'Inter', sans-serif; background-color: #f8f9fa; overflow-x: hidden; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* Ürün Kartları (Ana Sayfa) */
.product-card { transition: transform 0.2s; cursor: pointer; }
.product-card:hover { transform: translateY(-5px); }

/* Ürün Detay Sayfası - Varyasyon Butonları */
.variant-btn {
    min-width: 50px;
    height: 45px;
    border: 1px solid #e0e0e0;
    background: white;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-radius: 0; /* Keskin köşeler */
}

/* Mouse ile üzerine gelince */
.variant-btn:hover:not(.disabled) {
    border-color: #000;
    background-color: #f8f9fa;
}

/* Seçili Olan (Aktif) */
.variant-btn.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* Stoğu bitmiş olan (Pasif) */
.variant-btn.disabled {
    background-color: #f1f1f1;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: #eee;
}

/* Siyah Buton (Premium) */
.btn-black {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 0;
    transition: all 0.3s;
}
.btn-black:hover {
    background-color: #333;
    color: #fff;
}

/* Ürün Görselleri */
.product-main-img {
    height: 600px; /* Büyük görsel yüksekliği */
    object-fit: cover;
}

.product-title {
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-thumb {
    width: 80px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    border: 1px solid transparent;
}
.product-thumb:hover, .product-thumb.active {
    opacity: 1;
    border-color: #000;
}

/* Accordion Özelleştirme */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #000;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
}