/* WP Better Composite Products styles */
/** Custom CSS for WPC Composite Products **/
.wooco_component_product_selection_list .wooco_component_product_selection_list_item .wooco_component_product_selection_list_item_choose span:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 12px;
	content: "\f00c";
	line-height: 25px;
}

.wooco_component_product_selection_list .wooco_component_product_selection_list_item.wooco_item_selected {
	border-color: var(--e-global-color-accent);
}

.wooco_component_product_selection_list .wooco_component_product_selection_list_item.wooco_item_selected .wooco_component_product_selection_list_item_choose span:before {
	background: var(--e-global-color-accent);
}

.wooco_component_product_qty_btn {
	display: none;
}

.wooco-qty-label {
	margin-right: 5px;
}

.wooco_component_name {
	font-size: 24px;
}

/* Hide all steps initially when in stepped mode */
.wooco-stepped-mode .wooco_component,
.wooco-steps-enabled .wooco_component {
    display: none;
}

.wooco-stepped-mode .wooco_component.wooco-step-active,
.wooco-steps-enabled .wooco_component.wooco-step-active {
    display: block;
}

/* Step navigation */
.wooco-step-navigation {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    align-items: center;
}

.wooco-step-nav-btn {
    padding: 12px 24px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.wooco-step-nav-btn:hover {
    background: #005177;
}

.wooco-step-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.wooco-step-nav-btn.wooco-back-btn {
    background: #666;
}

.wooco-step-nav-btn.wooco-back-btn:hover {
    background: #444;
}

/* Step progress indicator */
.wooco-step-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.wooco-step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wooco-step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
}

.wooco-step-dot.completed {
    background: #22458f;
    color: white;
}

.wooco-step-dot.active {
    background: #f79421;
    color: white;
    transform: scale(1.2);
}

.wooco-step-line {
    width: 40px;
    height: 2px;
    background: #e0e0e0;
}

.wooco-step-line.completed {
    background: #4caf50;
}

/* Step info */
.wooco-step-info {
    text-align: center;
    margin-bottom: 20px;
}

.wooco-step-info h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.wooco-step-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.wooco-review-header {
	text-wrap: balance;
}

/* Responsive */
@media (max-width: 768px) {
    .wooco-step-navigation {
        flex-direction: column;
    }
    
    .wooco-step-nav-btn {
        width: 100%;
    }
    
    .wooco-step-progress {
        gap: 5px;
    }
    
    .wooco-step-dot {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .wooco-step-line {
        width: 20px;
    }
}