/**
 * MAĞAZALARIMIZ SAYFASI STİLLERİ
 */

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-wrapper {
    background: #f8f8f8;
    padding: 1rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #999;
    font-size: 1.2rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color, #2c3e50);
}

.breadcrumb li:last-child {
    color: var(--primary-color, #2c3e50);
    font-weight: 500;
}

/* ============================================
   STORES WRAPPER
   ============================================ */
.stores-wrapper {
    padding: 3rem 0 5rem;
}

/* Başlık */
.stores-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stores-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.stores-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* ============================================
   MAĞAZA YOK MESAJI
   ============================================ */
.no-stores {
    text-align: center;
    padding: 5rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.no-stores i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.no-stores h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.no-stores p {
    color: #999;
    margin-bottom: 2rem;
}

/* ============================================
   ŞEHİR FİLTRESİ
   ============================================ */
.stores-filter {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.stores-filter label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid #e5e5e5;
    background: #fff;
    color: #666;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #2c3e50;
    color: #2c3e50;
}

.filter-btn.active {
    background: #2c3e50;
    border-color: #2c3e50;
    color: #fff;
}

/* ============================================
   MAĞAZA GRID
   ============================================ */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.store-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Görsel */
.store-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.05);
}

/* İçerik */
.store-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.store-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.store-name i {
    color: #e74c3c;
}

.store-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* İletişim Bilgileri */
.store-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #666;
}

.info-item i {
    color: #2c3e50;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #e74c3c;
}

.working-hours {
    flex-direction: column;
    align-items: flex-start;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-left: 1.8rem;
}

.hours-list span {
    font-size: 0.85rem;
}

/* Aksiyonlar */
.store-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.btn-map,
.btn-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-map {
    background: #2c3e50;
    color: #fff;
}

.btn-map:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.btn-call {
    background: #27ae60;
    color: #fff;
}

.btn-call:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* ============================================
   GENEL HARİTA
   ============================================ */
.stores-map-section {
    margin-top: 4rem;
}

.stores-map-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.stores-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #999;
}

.stores-map::before {
    content: 'Harita yakında eklenecektir';
}

/* ============================================
   RESPONSİVE TASARIM
   ============================================ */

@media (max-width: 768px) {
    .stores-wrapper {
        padding: 2rem 0 3rem;
    }

    .stores-title {
        font-size: 2rem;
    }

    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .store-actions {
        flex-direction: column;
    }

    .stores-map {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .stores-wrapper {
        padding: 1.5rem 0 2rem;
    }

    .stores-title {
        font-size: 1.6rem;
    }

    .stores-header {
        margin-bottom: 2rem;
    }

    .store-content {
        padding: 1.2rem;
    }

    .store-name {
        font-size: 1.3rem;
    }

    .store-image {
        height: 180px;
    }

    .stores-map {
        height: 300px;
    }

    .stores-map-section h2 {
        font-size: 1.6rem;
        flex-direction: column;
    }
}
