/* E-Ticaret Stili Üst Header */
.main-header {
    background-color: var(--surface);
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}

.header-search {
    flex: 1;
    max-width: 600px;
    display: flex;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--secondary);
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    outline: none;
}

.header-search button {
    background-color: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
    border-radius: 0 8px 8px 0;
    padding: 0 1.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.header-search button:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.action-btn {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    color: var(--primary);
}

/* Mega Menu */
.mega-menu {
    background-color: var(--primary);
    color: white;
}

.menu-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
}

.menu-item {
    color: white;
    text-decoration: none;
    padding: 1rem 0;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
    white-space: nowrap;
}

.menu-item:hover, .menu-item.active {
    border-bottom-color: var(--secondary);
}

/* Breadcrumb */
.breadcrumb-area {
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb {
    color: var(--primary);
    cursor: pointer;
}
.breadcrumb.active {
    color: var(--text-muted);
    cursor: default;
}

/* Layout Grid */
.layout-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Sidebar Filters */
.sidebar-filters {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.filter-group {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Right Content */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

.sort-box select {
    padding: 0.5rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    outline: none;
    font-size: 0.9rem;
}

/* Business Grid Mega */
.business-grid-mega {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.business-card-mega {
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.business-card-mega:hover {
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
    transform: translateY(-4px);
}

.bc-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    position: relative;
}

.bc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary);
    color: white;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.bc-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.bc-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.bc-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bc-rating span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.bc-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bc-price {
    font-weight: 700;
    color: var(--primary);
}

.btn-details {
    background-color: var(--primary-light);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-details:hover {
    background-color: var(--primary);
}

@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }
    .header-container {
        flex-wrap: wrap;
    }
    .header-search {
        order: 3;
        max-width: 100%;
        margin-top: 1rem;
    }
}
