
.products-header{

    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 15px;
    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;
}

.our-products-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;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #00cc44;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.product-badge.new {
    background: #00cc44;
}

.product-badge.sale {
    background: #ff4444;
}

.wishlist-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    background: white;
}

.product-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    text-align: left;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #ff4444;
    margin-bottom: 8px;
    text-align: left;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stars {
    color: #ffa500;
    font-size: 12px;
}

.rating-count {
    font-size: 12px;
    color: #666;
}

.color-options {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-dot.active {
    border-color: #333;
}

.color-red { background: #ff4444; }
.color-blue { background: #4444ff; }
.color-green { background: #44ff44; }
.color-black { background: #333; }
.color-purple { background: #8844ff; }
.color-yellow { background: #ffff44; }

.view-all-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: block;
    margin: 0 auto;
}

.view-all-btn:hover {
    background: #e63939;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}