.elementor-4851 .elementor-element.elementor-element-1fc9b87{--display:flex;border-style:solid;--border-style:solid;border-width:1px 1px 1px 1px;--border-top-width:1px;--border-right-width:1px;--border-bottom-width:1px;--border-left-width:1px;border-color:#E9ECEF;--border-color:#E9ECEF;--border-radius:12px 12px 12px 12px;box-shadow:0px 4px 20px 0px rgba(0, 0, 0, 0.08);}.elementor-4851 .elementor-element.elementor-element-ecad901{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 30px) 0px;padding:25px 25px 25px 25px;}/* Start custom CSS for container, class: .elementor-element-1fc9b87 */.category-section {
    background: white;
    border-radius: 12px;
    margin-bottom: 30px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.category-count {
    background: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.products-grid {
    display: grid;
    gap: 20px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    background: #ffffff;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.1);
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #6c757d;
}

.product-sku {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-display {
    text-align: right;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #28a745;
}

.original-price {
    font-size: 14px;
    color: #6c757d;
    text-decoration: line-through;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}

.qty-btn {
    background: #e9ecef;
    border: 1px solid #dee2e6;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #495057;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #dee2e6;
    border-color: #adb5bd;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 6px;
    font-size: 14px;
}

.add-to-cart-btn {
    background: #28a745;
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn.loading {
    background: #6c757d;
    cursor: not-allowed;
}

.add-to-cart-btn.success {
    background: #007bff;
}

.stock-status {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.in-stock {
    background: #d4edda;
    color: #155724;
}

.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-pricing {
        width: 100%;
        justify-content: space-between;
    }

    .quantity-controls {
        margin-right: 0;
    }
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}/* End custom CSS */