* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background-color: #000000; /* Arka planı tamamen siyah yapar */
    line-height: 1.6;
}

/* Siyah Zeminli Header */
.site-header {
    background-color: #000000 !important; /* Beyaz zemin kalmaması için kesin siyah */
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
}

/* Hareketli Alev Çemberi Kapsayıcısı */
.fire-ring-container {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Logonun ezilip büyümesini engeller */
}

/* Dönem Alev Efekti */
.fire-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff4500, #ff8c00, #ffd700, #ff4500);
    animation: rotateFire 3s linear infinite;
    filter: blur(5px);
    opacity: 0.9;
}

.fire-ring::before {
    content: '';
    position: absolute;
    top: 4px; left: 4px; right: 4px; bottom: 4px;
    background: #000000;
    border-radius: 50%;
}

@keyframes rotateFire {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Logo Çerçevesi ve Görsel Boyut Sınırlama */
.logo-link {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* LOGONUN EKRANI KAPLAMASINI ENGELLEYEN KESİN BÖLÜM */
.brand-logo-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 70px !important;
    max-height: 70px !important;
    object-fit: cover !important;
    display: block;
}

/* Menü Linkleri */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e5c158; /* Logoya uygun altın tonu */
}

.main-nav a:hover, .main-nav a.active {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(229, 193, 88, 0.6);
}* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background-color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Siyah Zeminli Header */
.site-header {
    background: #0a0a0a;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
}

/* Hareketli Alev Çemberi İçinde Logo */
.fire-ring-container {
    position: relative;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Alev Dairesi Efekti (CSS Animation) */
.fire-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff4500, #ff8c00, #ffd700, #ff4500);
    animation: rotateFire 3s linear infinite;
    filter: blur(4px);
    opacity: 0.85;
}

.fire-ring::before {
    content: '';
    position: absolute;
    top: 4px; left: 4px; right: 4px; bottom: 4px;
    background: #0a0a0a;
    border-radius: 50%;
}

@keyframes rotateFire {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-link {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menü Linkleri (Logo Altın Rengine Uygun #d4af37) */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e5c158; /* Logoya uygun altın tonu */
}

.main-nav a:hover, .main-nav a.active {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(229, 193, 88, 0.6);
}

.header-right-tools {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tool-icon {
    font-size: 1.15rem;
    color: #e5c158;
    position: relative;
}

.tool-icon:hover {
    color: #fff;
}

.badge-count {
    position: absolute;
    top: -7px;
    right: -10px;
    background: #ff4500;
    color: #fff;
    font-size: 0.62rem;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Banner */
.banner-breadcrumb {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    border-bottom: 1px solid #222;
}

.banner-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    letter-spacing: 3px;
    color: #e5c158;
    margin-bottom: 10px;
}

.breadcrumb-links {
    font-size: 0.82rem;
    color: #aaa;
}

.breadcrumb-links a {
    color: #ddd;
}

.breadcrumb-links span {
    margin: 0 6px;
}

/* Katalog Alanı */
.catalog-wrapper {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 25px;
}

.catalog-container {
    display: flex;
    gap: 40px;
}

/* Sol Filtre */
.filter-sidebar {
    flex: 0 0 240px;
}

.filter-box {
    margin-bottom: 30px;
}

.filter-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    border-bottom: 2px solid #111;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    font-size: 0.88rem;
    color: #555;
    display: flex;
    justify-content: space-between;
}

.category-list li.active a, .category-list a:hover {
    color: #d4af37;
    font-weight: 600;
}

.checkbox-group label {
    display: block;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 8px;
    cursor: pointer;
}

/* Ürün Izgarası */
.products-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    background: #fff;
    border: 1px solid #eaeaea;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.sale-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #111;
    color: #e5c158;
    font-size: 0.65rem;
    padding: 4px 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.thumb-container {
    position: relative;
    height: 310px;
    overflow: hidden;
}

.thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .thumb-container img {
    transform: scale(1.06);
}

.quick-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 10px;
    transition: bottom 0.3s ease;
}

.product-item:hover .quick-actions {
    bottom: 0;
}

.action-btn {
    width: 100%;
    background: #111;
    color: #e5c158;
    border: 1px solid #e5c158;
    padding: 11px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: #e5c158;
    color: #000;
}

.product-details {
    padding: 18px 15px;
    text-align: center;
}

.sub-category {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.product-details h4 {
    font-size: 0.92rem;
    margin: 8px 0;
    font-weight: 600;
}

.desc-text {
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 12px;
}

.price-box del {
    color: #999;
    font-size: 0.85rem;
    margin-right: 8px;
}

.price-box ins {
    color: #111;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
}

/* Sepet Çekmecesi */
.cart-drawer-overlay {
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

.cart-drawer-overlay.active {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0; right: -380px;
    width: 360px; height: 100%;
    background: #fff;
    z-index: 1001;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.drawer-head {
    background: #0a0a0a;
    color: #e5c158;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-drawer {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.drawer-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.drawer-foot {
    padding: 20px;
    border-top: 1px solid #eee;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.checkout-button {
    width: 100%;
    background: #e5c158;
    color: #000;
    border: none;
    padding: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    color: #ccc;
    margin-top: 80px;
}

.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.about-p {
    font-size: 0.82rem;
    color: #aaa;
    margin-bottom: 15px;
}

.social-links a {
    color: #e5c158;
    margin-right: 15px;
    font-size: 1.1rem;
}

.footer-col h4 {
    color: #e5c158;
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.85rem;
    color: #aaa;
}

.footer-col a:hover {
    color: #e5c158;
}

.contact-col p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.contact-col i {
    color: #e5c158;
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.78rem;
    color: #777;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 15px; }
    .main-nav ul { gap: 12px; flex-wrap: wrap; justify-content: center; }
    .catalog-container { flex-direction: column; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .thumb-container { height: 200px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
}
/* Alev Çemberi Efekti */
.fire-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff4500, #ff8c00, #ffd700, #ff4500);
    animation: rotateFire 2.5s linear infinite;
    filter: blur(4px);
    opacity: 0.95;
}

.fire-ring::before {
    content: '';
    position: absolute;
    top: 4px; left: 4px; right: 4px; bottom: 4px;
    background: #000000;
    border-radius: 50%;
}

@keyframes rotateFire {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Kategori Menüsü Aktif Eleman Stili */
.category-list li.active a {
    color: #b88628 !important; /* Altın sarısı vurgu rengi */
    font-weight: bold;
}

.category-list li.active a span {
    color: #b88628 !important;
}