/**
 * Vortis Preorders — Frontend CSS
 * Stile coerente con nerdtopia.it — accent arancione su tema dark/minimalista
 */

/* Badge data di uscita */
.vpo-release-date-badge {
    background: #32373c;
    color: #fff;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
    width: auto;
    box-sizing: border-box;
    letter-spacing: 0.3px;
    font-weight: 500;
    line-height: 1.4;
}

.vpo-release-date-badge strong {
    font-weight: 700;
}

/* Badge nel loop (archivi/shop) — piu compatto */
.vpo-release-date-badge--loop {
    font-size: 11px;
    padding: 5px 12px;
    margin-top: 2px;
    margin-bottom: 8px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.vpo-release-icon {
    font-size: 14px;
    vertical-align: middle;
}

/* Pulsante preordine — accent arancione su tema scuro */
.vpo-preorder-btn,
.single_add_to_cart_button.vpo-preorder-active {
    background: #e55a2b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 9999px !important;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.vpo-preorder-btn:hover,
.single_add_to_cart_button.vpo-preorder-active:hover {
    background: #cc4a1f !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 90, 43, 0.3);
}

.vpo-preorder-btn:active,
.single_add_to_cart_button.vpo-preorder-active:active {
    transform: translateY(0);
}

/* Badge nel carrello */
.vpo-cart-badge {
    display: inline-block;
    background: #32373c;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .vpo-release-date-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    .vpo-release-date-badge--loop {
        font-size: 10px;
    }
    .vpo-cart-badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
        width: fit-content;
    }
}
