.stz-preorder-wrapper {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.stz-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

.stz-delivery-time {
    font-style: italic;
    color: #555;
    font-size: 13px;
}

.stz-loop-badge {
    margin-top: 5px;
    font-weight: 600;
}

/* Modal Popup Styles */
.stz-preorder-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stz-modal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.stz-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 440px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-family: inherit;
    z-index: 100000;
}
.stz-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
}
.stz-modal-close:hover {
    color: #333;
}
.stz-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.stz-modal-icon {
    width: 36px;
    height: 36px;
    background: #FF9800;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stz-modal-icon svg {
    width: 20px;
    height: 20px;
}
.stz-modal-title-group {
    display: flex;
    flex-direction: column;
}
.stz-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
}
.stz-modal-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: #d18b2c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
.stz-modal-message {
    background: #f5f7fa;
    padding: 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.5;
}
.stz-modal-message p {
    margin: 0 0 5px 0;
}
.stz-modal-message p:last-child {
    margin: 0;
}
.stz-modal-product {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #e9ecf2;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 24px;
    position: relative;
}
.stz-mp-image img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}
.stz-mp-info h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}
.stz-mp-price-group .stz-price {
    font-size: 13px;
    font-weight: bold;
    color: #0b57d0;
}
/* Style WC Price elements inside modal */
.stz-mp-price-group .stz-price del {
    color: #999;
    font-weight: normal;
    margin-right: 5px;
}
.stz-mp-price-group .stz-price ins {
    text-decoration: none;
}
.stz-mp-badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #b9d3ef;
    color: #0d47a1;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
}
.stz-modal-actions {
    display: flex;
    gap: 12px;
}
.stz-btn-primary {
    flex: 1;
    background: #0b57d0;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}
.stz-btn-primary:hover {
    background: #0842a0;
}
.stz-btn-secondary {
    flex: 1;
    background: #dde3eb;
    color: #444;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}
.stz-btn-secondary:hover {
    background: #c5cdd8;
}

/* ====== FOMO SETTINGS ====== */
.stz-fomo-progress-wrapper {
    margin: 15px 0;
    width: 100%;
}
.stz-fomo-progress-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}
.stz-fomo-progress-text .stz-fomo-fire { color: #e2401c; }
.stz-fomo-progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.stz-fomo-progress-fill {
    height: 100%;
    background-color: #e2401c;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.stz-fomo-countdown-wrapper {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #fffaf9;
    padding: 10px;
    border: 1px dashed #e2401c;
    border-radius: 6px;
}
.stz-fomo-countdown-label {
    font-size: 13px;
    font-weight: bold;
    color: #e2401c;
    text-align: center;
}
.stz-fomo-countdown-blocks {
    display: flex;
    justify-content: center;
    gap: 5px;
}
.stz-fomo-countdown-block {
    background-color: #e2401c;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 6px 8px;
    border-radius: 4px;
    min-width: 36px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(226, 64, 28, 0.3);
}
.stz-fomo-countdown-sep {
    font-weight: bold;
    color: #e2401c;
    font-size: 16px;
    margin-top: 6px;
}

/* ====== STICKY BUTTON ====== */
.stz-sticky-preorder-btn-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-top: 1px solid #eaeaea;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    padding: 12px 15px;
    z-index: 9999;
    display: none; /* JS will toggle this */
    justify-content: center;
    align-items: center;
}
.stz-sticky-preorder-btn-wrapper.stz-show {
    display: flex;
    animation: slideUpSticky 0.3s ease-out forwards;
}

@keyframes slideUpSticky {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.stz-sticky-btn {
    width: 100%;
    max-width: 500px;
    background-color: #e2401c;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(226, 64, 28, 0.2);
}

@media (min-width: 769px) {
    .stz-sticky-preorder-btn-wrapper {
        display: none !important; /* Only show on mobile */
    }
}
