/* ==========================================================

   ATWCE PREMIUM EVENT PASS DESIGN - NEON & GOLD

========================================================== */



:root {

    --gold: #f5b942;

    --gold-light: #ffdd85;

    --card-bg: rgba(20, 18, 45, 0.7); /* Deep translucent purple/blue */

    --text-main: #ffffff;

    --text-muted: #8b92b2;

}



/* 1. MAIN LAYOUT FIXES */

.single-product .woocommerce-summary-wrap {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: space-between;

    margin: 60px 0;

    gap: 40px;

}



.single-product .woocommerce-gallery.col-xl-7 {

    flex: 0 0 45% !important;

    max-width: 45% !important;

}



.single-product .woocommerce-summary-inner.col-xl-5 {

    flex: 0 0 50% !important;

    max-width: 50% !important;

}



/* 2. POSTER IMAGE & FLOATING ANIMATION */

@keyframes floatTicket {

    0% { transform: translateY(0px); }

    50% { transform: translateY(-15px); }

    100% { transform: translateY(0px); }

}



.single-product .woocommerce-product-gallery__image img {

    width: 100% !important;

    max-width: 450px !important;

    margin: auto;

    display: block;

    border-radius: 20px;

    border: 1px solid rgba(245, 185, 66, 0.3);

    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(245, 185, 66, 0.15);

    animation: floatTicket 5s ease-in-out infinite;

}



/* Hide Unwanted WooCommerce Image UI */

.single-product .zoomImg,

.single-product .woocommerce-product-gallery__trigger {

    display: none !important;

}



/* 3. PREMIUM BOOKING CARD (GLASSMORPHISM) */

.single-product .summary {

    background: var(--card-bg);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 24px;

    padding: 50px !important;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);

}



/* 4. TYPOGRAPHY */

.single-product .woocommerce-sg-product-title h1 {

    font-size: 46px;

    line-height: 1.2;

    font-weight: 700;

    color: var(--text-main);

    margin-bottom: 15px;

}



.single-product .woocommerce-sg-product-price {

    margin-bottom: 25px;

}



.single-product .woocommerce-sg-product-price .price {

    font-size: 40px;

    font-weight: 700;

    color: var(--gold) !important;

}



.single-product .woocommerce-sg-product-excerpt p {

    color: var(--text-muted);

    font-size: 18px;

    line-height: 1.6;

    margin-bottom: 40px;

}



/* ==========================================================

   QUANTITY SELECTOR FIX (FLEX ORDERING & NO OVERLAP)

========================================================== */



/* ==========================================================

   QUANTITY SELECTOR FIX (FLEX ORDERING & NO OVERLAP)

========================================================== */



/* 1. Main Quantity Container */

.single-product .wooc-product-quantity {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

}



/* 2. Fix the Box Layout */

.single-product .quantity {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    width: 140px !important; /* Fixed width banayega jisse size nahi bigdega */

    height: 50px !important;

    background: rgba(11, 11, 42, 0.8) !important;

    border: 1px solid rgba(245, 185, 66, 0.3) !important;

    border-radius: 12px !important;

    padding: 0 5px !important;

    position: relative !important;

}



/* Hide Screen Reader Text */

.single-product .quantity .screen-reader-text {

    display: none !important;

}



/* 3. Input Box Formatting (Set to Middle) */

.single-product .quantity input.qty {

    position: static !important; /* Theme ke purane position override */

    order: 2 !important; /* Input ko center me layega */

    width: 50px !important;

    height: 100% !important;

    background: transparent !important;

    border: none !important;

    color: #fff !important;

    font-size: 18px !important;

    font-weight: bold !important;

    text-align: center !important;

    padding: 0 !important;

    margin: 0 !important;

    -moz-appearance: textfield !important;

}



/* Remove default browser arrows inside number input */

.single-product .quantity input.qty::-webkit-outer-spin-button,

.single-product .quantity input.qty::-webkit-inner-spin-button {

    -webkit-appearance: none !important;

    margin: 0 !important;

}



/* 4. Icons Fixing (Overcoming Absolute Positioning) */

.single-product .quantity .quantity-icon {

    position: static !important; /* Ye overlap ko fix karega */

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    color: var(--gold) !important;

    font-size: 20px !important;

    cursor: pointer !important;

    background: transparent !important;

    border-radius: 8px !important;

    transition: all 0.3s ease !important;

    margin: 0 !important;

}



/* Set Minus to Left, Plus to Right */

.single-product .quantity .quantity-down {

    order: 1 !important; /* Minus pehle aayega */

}



.single-product .quantity .quantity-up {

    order: 3 !important; /* Plus aakhir me aayega */

}



/* Hover Effect for Icons */

.single-product .quantity .quantity-icon:hover {

    background: rgba(245, 185, 66, 0.2) !important;

}



.woocommerce #pxl-wapper .quantity-icon.pxl-icon--plus:before, .woocommerce-page #pxl-wapper .quantity-icon.pxl-icon--plus:before, .woocommerce #pxl-wapper .quantity-icon.pxl-icon--minus:before, .woocommerce-page #pxl-wapper .quantity-icon.pxl-icon--minus:before, .woocommerce #pxl-wapper .quantity-icon.pxl-icon--plus:after, .woocommerce-page #pxl-wapper .quantity-icon.pxl-icon--plus:after, .woocommerce #pxl-wapper .quantity-icon.pxl-icon--minus:after, .woocommerce-page #pxl-wapper .quantity-icon.pxl-icon--minus:after {

    background-color:#f6bb46!important;

}





/* 6. GLOWING ANIMATED BUTTON */

.single-product .single_add_to_cart_button {

    width: 100%;

    padding: 22px;

    border: none !important;

    border-radius: 16px !important;

    font-size: 18px !important;

    font-weight: 800 !important;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #000 !important;

    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)) !important;

    background-size: 200% auto !important;

    box-shadow: 0 10px 30px rgba(245, 185, 66, 0.2);

    transition: all 0.5s ease;

    cursor: pointer;

}



.single-product .single_add_to_cart_button:hover {

    background-position: right center !important;

    transform: translateY(-3px);

    box-shadow: 0 15px 40px rgba(245, 185, 66, 0.5);

}



/* 7. HIDE USELESS ELEMENTS */

.sku_wrapper,

.posted_in,

.tagged_as,

.woocommerce-social-share,

.woocommerce-sg-product-rating,

.related.products,

.shopengine-wishlist,

.shopengine-comparison {

    display: none !important;

}



/* 8. MOBILE RESPONSIVENESS */

@media(max-width: 991px) {

    .single-product .woocommerce-summary-wrap {

        flex-direction: column;

        gap: 40px;

    }



    .single-product .woocommerce-gallery.col-xl-7,

    .single-product .woocommerce-summary-inner.col-xl-5 {

        flex: 0 0 100% !important;

        max-width: 100% !important;

    }



    .single-product .summary {

        padding: 35px 25px !important;

    }



    .single-product .woocommerce-sg-product-title h1 {

        font-size: 34px;

    }



    .single-product .woocommerce-sg-product-price .price {

        font-size: 32px;

    }



    .single-product .wooc-product-quantity {

        flex-direction: column;

        align-items: flex-start;

    }

}
/* Success Notice */
.woocommerce-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

    background: linear-gradient(135deg, #18062f 0%, #2a0d45 50%, #140523 100%) !important;
    border: none !important;
    border-radius: 24px;
    padding: 25px 30px !important;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.woocommerce-message::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -120px;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    background: radial-gradient(
        ellipse,
        rgba(160,80,255,.35) 0%,
        rgba(160,80,255,.15) 40%,
        transparent 70%
    );
    pointer-events: none;
}

.woocommerce-message > * {
    position: relative;
    z-index: 2;
}

/* Button */
.woocommerce-message .button.wc-forward {
    float: none !important;
    margin: 0 !important;

    background: linear-gradient(135deg,#ff2d92,#7b42ff) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    font-weight: 600;
    white-space: nowrap;
    min-width: 130px;
    text-align: center;
}

/* Tablet */
@media (max-width: 768px) {

    .woocommerce-message {
        flex-direction: column;
        text-align: center;
        padding: 20px !important;
    }

    .woocommerce-message .button.wc-forward {
        width: 100%;
        max-width: 220px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .woocommerce-message {
        border-radius: 18px;
        padding: 18px !important;
        font-size: 15px;
    }

    .woocommerce-message .button.wc-forward {
        width: 100%;
        max-width: 100%;
        padding: 0px 20px !important;
        font-size: 14px;
    }
}