/* Renk filtresi için yazılı butonlar (filter-pill) */
.filter-pill {
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #d36b6b;
    border-radius: 20px;
    padding: 6px 18px;
    margin: 4px 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.filter-pill-input:checked + .filter-pill,
.filter-pill:hover {
    background: #d36b6b;
    color: #fff;
}
:root {
    /* Nestem Kids GÖRSEL RENK PALETİ */
    --nestem-primary: #70a3a4;
    /* Muted Teal/Ana Aksan */
    --nestem-soft: #f9f5f0;
    /* Cream/Arkaplan */
    --nestem-dark: #D8714A;
    /* Soft Brown/Metin */

}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--nestem-soft);
    /* Yumuşak Arkaplan */
    color: var(--nestem-dark);
}

.navbar-brand,
.nav-link,
.btn {
    font-weight: 600;
}

.bg-nestem-soft {
    background-color: var(--nestem-soft);
}

.text-primary-nestem {
    color: var(--nestem-primary) !important;
}

.bg-primary-nestem {
    background-color: var(--nestem-primary) !important;
}

.bg-soft-nestem {
    background-color: var(--nestem-soft) !important;
}

.btn-nestem {
    background-color: var(--nestem-primary);
    border-color: var(--nestem-primary);
    color: white;
    transition: all 0.3s;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(112, 163, 164, 0.4);
}

.btn-nestem:hover {
    background-color: #5e8888;
    /* Biraz daha koyu ton */
    border-color: #5e8888;
}

.product-card {
    border: 1px solid var(--nestem-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(74, 65, 61, 0.1);
    /* Hafif kahverengi gölge */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 65, 61, 0.15);
}

.product-img-placeholder,
.product-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nestem-primary);
    font-size: 1.5rem;
}

/* Hero Banner */
.hero-banner {
    background-color: white;
    /* Sade ve temiz */
    padding: 5rem 0;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background-color: var(--nestem-dark);
    /* Koyu kahverengi/gri */
    color: white;
}

.navbar-logo {
    height: 55px; /* Logo yüksekliği 40px'ten 55px'e çıkarıldı */
    object-fit: contain;
    
}

/* For color filter boxes */
.color-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid transparent; /* Default border */
    transition: border-color 0.2s ease-in-out;
}

.color-box:hover {
    border-color: var(--nestem-primary); /* Highlight on hover */
}

.form-check-input:checked + .color-box {
    border-color: var(--nestem-dark) !important; /* Selected color */
    border-width: 2px;
}

/* Semi-transparent white background helper */
.bg-white-50 { background-color: rgba(255, 255, 255, 0.5) !important; }


/* Category showcase circles */
.category-circle {
    width: clamp(180px, 45vw, 300px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    border: 3px solid var(--nestem-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    margin: 0 auto; /* center within column and avoid overflow */
    position: relative; /* ensure absolute children are contained */
}
.category-circle .cat-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: opacity .4s ease;
}
.category-circle .cat-img.hidden { opacity: 0; }
.category-circle .cat-img.visible { opacity: 1; }
.category-label {
    margin-top: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--nestem-dark);
}

/* Category indicators */
.category-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}
.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.25);
    transition: transform .2s ease, background-color .2s ease;
}
.indicator-dot.active {
    background: var(--nestem-primary);
    transform: scale(1.25);
}

/* Responsive circle sizing to keep layout stable */
/* removed fixed height media queries in favor of clamp + aspect-ratio */


