/* Pre-order Badge Styles */
.alamin-preorder-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff5722;
    color: #ffffff;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 99;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure relative positioning on product wrappers so absolute badge works properly */
.product .images,
ul.products li.product {
    position: relative;
}

/* Checkout Partial Payment UI */
.alamin-partial-payment-wrapper {
    background: #f7f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.alamin-partial-payment-wrapper h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
}

.alamin-partial-payment-wrapper label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #4a5568;
    transition: color 0.3s ease;
}

.alamin-partial-payment-wrapper label:hover {
    color: #1a202c;
}

.alamin-partial-payment-wrapper input[type="radio"] {
    margin-right: 10px;
    margin-top: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Shop page choto badge */
.alamin-preorder-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
    z-index: 9;
}

/* SINGLE PAGE HIGHLIGHT BADGE - Title er niche */
.alamin-preorder-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(238, 9, 121, 0.3);
    animation: alamin-pulse 1.5s infinite;
    letter-spacing: 0.3px;
}

@keyframes alamin-pulse {
    0% { transform: scale(1); box-shadow: 0 4px 12px rgba(238, 9, 121, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 6px 18px rgba(238, 9, 121, 0.45); }
    100% { transform: scale(1); box-shadow: 0 4px 12px rgba(238, 9, 121, 0.3); }
}