.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-5693 .elementor-element.elementor-element-22c1a0d{text-align:left;}/* Start custom CSS for shortcode, class: .elementor-element-73aba5d *//* Initial step hiding */
#summary-step, .selection-step[data-step="2"], .selection-step[data-step="3"] {
    display: none;
}

/* Basic styling */
.selection-step {
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    background: #f9f9f9;
}
.step-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}
.next-step, .prev-step, #complete-bundle {
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
}
.next-step, #complete-bundle {
    background: #6ec06e;
    color: white;
    border: none;
}
.prev-step {
    background: #f1f1f1;
    border: 1px solid #ddd;
}
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}
.product-item {
    padding: 15px;
    border: 1px solid #eee;
    
}

/* Layout de grade para produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 25px;
}

.product-card {
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
}

/* Estado de seleção */
.product-card.selected {
    background: #f5f5f5;
    border-color: #4CAF50;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.product-card.selected:after {
    content: "✓ Selecionado";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4CAF50;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
}

.product-image-container {
    height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 50%;
}

.product-info {
    padding: 15px;
}

.product-selection {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    cursor: pointer;
}

.product-selection input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 10px;
    cursor: pointer;
}

.product-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    display: block;
}

.product-price {
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
}

/* Melhorias responsivas */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .product-image-container {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}/* End custom CSS */