.dogloja-shop-var-product {
    margin: 0 0 0.75rem;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.dogloja-shop-var-fields {
    margin: 0.5rem 0 1.25rem;
}

.dogloja-shop-var-fields label {
    display: block;
    font-weight: 600;
    margin: 0.75rem 0 0.35rem;
    font-size: 14px;
}

.dogloja-shop-var-fields select {
    width: 100%;
    max-width: 100%;
    padding: 0.55rem 0.65rem;
    font-size: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: inherit;
}

.dogloja-shop-var-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

/* Toast: carrinho (canto inferior direito, sucesso verde) */
.dogloja-cart-toast {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 100060;
    max-width: min(22rem, calc(100vw - 2.5rem));
    padding: 1rem 2.5rem 1rem 1.1rem;
    box-sizing: border-box;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid #81c784;
    border-left: 4px solid #2e7d32;
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(21, 5, 21, 0.18);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.45;
    color: #1b5e20;
    animation: dogloja-cart-toast-in 0.35s ease-out;
}

@keyframes dogloja-cart-toast-in {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dogloja-cart-toast__msg {
    margin: 0;
}

.dogloja-cart-toast__link {
    color: #0d3d12;
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
}

.dogloja-cart-toast__link:hover {
    color: #150515;
}

.dogloja-cart-toast__close {
    position: absolute;
    top: 0.35rem;
    right: 0.4rem;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    border: none;
    background: transparent;
    color: #2e7d32;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    border-radius: 3px;
}

.dogloja-cart-toast__close:hover {
    background: rgba(46, 125, 50, 0.12);
    color: #150515;
}
