.wc-product-bundle {
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
}

.wc-product-bundle h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.bundle-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.bundle-option {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 0;
    flex: 1;
    min-width: 300px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background: white;
    overflow: hidden;
}

.bundle-option:hover {
    border-color: #007cba;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bundle-option.selected {
    border-color: #007cba;
    background-color: #f0f7ff;
    box-shadow: 0 4px 12px rgba(0,124,186,0.2);
}

.bundle-savings-badge {
    background: #ff4444;
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
}

.bundle-header {
    padding: 20px 20px 10px;
    border-bottom: 1px solid #eee;
}

.bundle-header h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.2em;
    font-weight: bold;
}

.bundle-phrase {
    margin: 0;
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

.bundle-content {
    padding: 15px 20px 20px;
}

.bundle-pricing {
    margin-bottom: 15px;
    text-align: center;
}

.regular-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 1em;
    display: block;
}

.price {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.8em;
    display: block;
    margin: 5px 0;
}

.bundle-color-selection {
    margin: 15px 0;
    text-align: center;
}

.color-dropdown {
    display: inline-block;
}

.color-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 0.9em;
}

.bundle-actions {
    text-align: center;
    margin-top: 15px;
}

.select-bundle-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.select-bundle-button:hover {
    background: #005a87;
}

.bundle-option.selected .select-bundle-button {
    background: #28a745;
}

.bundle-option.selected .select-bundle-button:hover {
    background: #218838;
}

/* Estilo para a página de administração */
.wc-bundle-settings {
    padding: 15px 0;
}

.bundle-variation {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bundle-variation h5 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.bundle-variation label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.bundle-variation input[type="text"],
.bundle-variation input[type="number"],
.bundle-variation select {
    width: 100%;
    max-width: 300px;
    padding: 5px;
}

.remove-variation {
    background: #dc3232;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
}

.remove-variation:hover {
    background: #a00;
}

/* Frase promocional acima do título */
.promo-tag {
    font-size: 14px;
    color: #e74c3c;
    margin-bottom: 8px;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Layout dos preços lado a lado */
.pricing-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.price-option {
    flex: 1;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

/* Seleção de cores */
.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.color-option.selected {
    background-color: #333;
    color: white;
    border-color: #333;
}

/* Mensagem adicional (substitui o botão) */
.additional-message {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    color: #555;
    position: relative;
    margin-top: -10px;
    z-index: 2;
    border: 1px solid #e9ecef;
}

.additional-message::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 20px;
    height: 10px;
    background-color: #f8f9fa;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}