/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 20 2026 | 16:34:31 */
/* 1. Checkout Boxes Base Styling */
.woocommerce-checkout form.checkout .col-1, 
.woocommerce-checkout form.checkout .col-2,
.woocommerce-checkout #order_review_heading, 
.woocommerce-checkout #order_review,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    background: #0d1b2a !important;
    border-radius: 14px !important;
    padding: 25px !important;
    position: relative !important;
    margin-bottom: 25px !important;
    box-sizing: border-box !important;
    border: 3px solid #ffcc00 !important;
    overflow: hidden !important;
}

/* 2. Asli Border-Locked Live Light Beam */
.woocommerce-checkout form.checkout .col-1::after, 
.woocommerce-checkout form.checkout .col-2::after,
.woocommerce-checkout #order_review::after,
.woocommerce-billing-fields::after,
.woocommerce-shipping-fields::after,
.woocommerce-additional-fields::after {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    width: calc(100% + 6px) !important;
    height: calc(100% + 6px) !important;
    border: 3px solid transparent !important;
    border-radius: 14px !important;
    background: linear-gradient(90deg, transparent, #ffffff, #ffcc00, #ffffff, transparent) border-box !important;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    animation: borderBeam 3s linear infinite !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

@keyframes borderBeam {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* 3. Input Fields */
.woocommerce-checkout input[type="text"], 
.woocommerce-checkout input[type="email"], 
.woocommerce-checkout input[type="tel"], 
.woocommerce-checkout select, 
.woocommerce-checkout textarea {
    background-color: #ffffff !important;
    color: #0b0f19 !important;
    border: 2px solid #ff9900 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-weight: bold !important;
    width: 100% !important;
    z-index: 15 !important;
}

/* 4. Qty / Quantity Box - Premium & Beautiful */
div.quantity {
    display: inline-flex !important;
    align-items: center !important;
    background: #0b0f19 !important;
    border: 2px solid #ffcc00 !important;
    border-radius: 10px !important;
    padding: 2px !important;
}

.woocommerce-checkout .quantity input.qty {
    background-color: #ffffff !important;
    color: #0b0f19 !important;
    border: none !important;
    font-weight: 900 !important;
    height: 40px !important;
    width: 50px !important;
    text-align: center !important;
}

.woocommerce-checkout .quantity .minus, 
.woocommerce-checkout .quantity .plus {
    background: #ffcc00 !important;
    color: #000 !important;
    border: none !important;
    border-radius: 6px !important;
    width: 35px !important;
    height: 38px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

.woocommerce-checkout .quantity .minus:hover, 
.woocommerce-checkout .quantity .plus:hover {
    background: #fff !important;
    box-shadow: 0 0 10px #ffcc00 !important;
}

/* 5. Place Order Button - VIP Gaming Style */
.woocommerce-checkout #payment #place_order {
    background: linear-gradient(135deg, #ffcc00, #ff9900) !important;
    color: #0b0f19 !important;
    border: 2px solid #ffffff !important;
    border-radius: 10px !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    width: 100% !important;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5) !important;
    transition: all 0.3s ease-in-out !important;
    position: relative !important;
    z-index: 20 !important;
}

.woocommerce-checkout #payment #place_order:hover {
    background: linear-gradient(135deg, #ffffff, #ffcc00) !important;
    color: #000000 !important;
    border-color: #ffcc00 !important;
    box-shadow: 0 0 25px #ffffff, 0 0 35px #ffcc00 !important;
    transform: translateY(-2px) !important;
}

/* Labels and Headings */
.woocommerce-checkout label, h3 { color: #ffcc00 !important; }