.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    padding: 8px;
    transition: opacity 0.2s ease;
    font-size: 16px;
}

.back-button:hover {
    opacity: 0.8;
}
.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    text-decoration: none !important;
    padding: 8px 12px !important;
    transition: opacity 0.2s ease;
    font-size: 16px;
    background: transparent !important;
}

.back-button:hover {
    opacity: 0.9;
}

.back-button svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    display: inline-block;
}

.back-button span {
    font-size: 16px;
}

/* Hide any leftover icon elements or pseudo-elements that may draw a square */
.product-header .back-button i,
.product-header .back-button::before,
.product-header .back-button::after,
.product-header .back-button [class*="fa-"],
.product-header .back-button [role="img"] {
    display: none !important;
    background: none !important;
    content: none !important;
}

/* Ensure no background image or border shows */
.product-header .back-button {
    background-image: none !important;
    border: none !important;
}

/* If another stylesheet sets a fixed-position .voltar, prefer this header button */
.product-header .back-button {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
}

/* Contador de seleção por grupo (ex: 0/2) */
.group-header{display:flex;align-items:center;justify-content:space-between;gap:8px}
.group-counter{background:#f5f5f5;border-radius:14px;padding:6px 10px;font-weight:600;font-size:14px;color:#333;display:inline-flex;align-items:center;gap:6px}
.group-counter.limit-reached{background:#eafaf0;color:#166534;border:1px solid #34d399}
.group-description{margin-top:8px;color:#666;font-size:13px}