.category-header{
  
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.title-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.categories-label {
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.navigation {
    display: flex;
    gap: 8px;
}

.nav-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-arrow:hover {
    background: #f5f5f5;
}

.nav-arrow.prev {
    color: #666;
}

.nav-arrow.next {
    color: #666;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.categories-container{
    gap: 16px; 
}

.category-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    width:230px;
    height:200px;
    margin-right: 20px;
}


.category-item:hover {
    border-color: #ff4444;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-item.active {
    background: #ff4444;
    border-color: #ff4444;
    color: white;
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.category-item.active .category-icon {
    color: white;
}

.category-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.category-item.active .category-name {
    color: white;
}

/* Icons using Unicode symbols */
.icon-phone::before { content: "📱"; }
.icon-computer::before { content: "💻"; }
.icon-fashion::before { content: "👠"; }
.icon-vehicle::before { content: "🚘"; }
.icon-property::before { content: "🏠"; }
.icon-beauty::before { content: "💄"; }
.icon-pets::before { content: "🐕"; }
.icon-babies::before { content: "👶"; }
.icon-electronics::before { content: "🤖"; }
.icon-farm::before { content: "🚜"; }
.icon-hotel::before { content: "🏨"; }
.icon-home::before { content: "🛖"; }
.icon-building::before { content: "🧱"; }
.icon-autoparts::before { content: "🔈"; }