/* ===================== GLOBAL ===================== */
body, input, button {
    font-family: 'Segoe UI', Arial, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
input[type=text], input[type=number] {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #d41792;
}

/* ===================== WRAPPER / HERO ===================== */
.qwl-wrap {
    max-width: 500px;
    margin: 40px auto;
    border: 3px solid #d41792;
    border-radius: 18px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.qwl-hero {
    text-align: center;
    margin-bottom: 20px;
}

.qwl-hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.qwl-about{
	text-align:left;
	font-size:13px;
}

/* ===================== PHOTO GRID ===================== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.photo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.photo-item .photo-img {
    width: 100%;
    height: 120px; /* all images same height */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 6px;
}

.photo-item .photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills container, crops excess */
    display: block;
}

.photo-item h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================== HEADINGS ===================== */
.green-border-heading {
    border-left: 4px solid #28a745;
    padding-left: 5px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    color: #333;
}

/* ===================== DATE / SLOT BOX ===================== */
.date-slot-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.date-slot-box {
    flex: 1 1 calc(50% - 10px);
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.date-slot-box:hover {
    background: #eee;
}
.date-slot-box.selected {
    border-color: #d41792;
    background: #e6ffe6;
}

.date-slot-box.disabled {
    background: #eee;
    color: #999;
    cursor: not-allowed;
}

/* Chand Raat Special Slot */
.chand-raat-slot {
    background: linear-gradient(135deg, #f0fff9, #dffaf1, #c8f7e8);
    color: #2c3e50;
    border: 1px solid #a3e4d7;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    position: relative;
}

.chand-raat-slot .slot-title {
    font-weight: 700;
    font-size: 15px;
}

.chand-raat-slot::after {
    content: "🌙";
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 20px;
}



/* ===================== QUANTITY / BUTTONS ===================== */
.qwl-qty {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.custom-circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg,#d41792,#99156b);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.custom-circle-btn:hover {
    transform: scale(1.15);
}

.qwl-btn {
    width: 100%;
    padding: 14px;
    background: #d41792;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
}

.qwl-btn[disabled] {
    background: #aaa;
}

#total_amount {
    font-weight: bold;
    text-align: center;
    font-size: 18px;
}

/* ===================== BLINKING / NOTICES ===================== */
.ends-soon {
    color: red;
    font-weight: bold;
    margin-left: 5px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* ===================== POPUPS ===================== */
.qwl-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.qwl-popup {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: scaleIn 0.25s ease;
    position: relative;
}

.qwl-popup h2 {
    margin: 0 0 10px;
    color: #e91e63;
}

.qwl-popup p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.qwl-popup button {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.qwl-popup button:hover {
    background: #d81b60;
}

.qwl-close {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 22px;
    cursor: pointer;
    color: #888;
}

/* ===================== ANIMATIONS ===================== */
@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideDown {
    0% { transform: translateY(-15px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ===================== ATTRACT ANIMATION ===================== */
@keyframes attract {
    0% {
        opacity: 1;
        transform: scale(1);
        color: #ff6b00;
        text-shadow: 0 0 6px rgba(255,107,0,.6);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
        color: #ff0000;
        text-shadow: 0 0 14px rgba(255,0,0,.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        color: #ff6b00;
        text-shadow: 0 0 6px rgba(255,107,0,.6);
    }
}

.attract {
    font-weight: 700;
    animation: attract 1.2s infinite ease-in-out;
}
.photo-img-small {
    width: 100%;
    height: 380px; /* moderate height */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 6px;
}

.photo-img-small img {
    max-height: 380px; /* slightly smaller */
    width: auto;       /* keep original width proportion */
    display: block;
    margin: 0 auto;    /* center if narrower than container */
}
/* ===================== NEW TICKET CARDS (FULL WIDTH COMPACT) ===================== */
.ticket-types {
    display: flex;
    flex-direction: column;
    gap: 12px; /* reduced spacing */
}

/* ===================== CARD BASE ===================== */
.ticket-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px; /* compact */
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.ticket-left {
    max-width: 70%;
}

.ticket-left h3 {
    margin: 0 0 5px;
    font-size: 17px;
}

.ticket-desc {
    font-size: 13px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.ticket-features {
    padding-left: 15px;
    font-size: 12.5px;
    margin: 3px 0 0;
}

.ticket-features li {
    margin-bottom: 2px;
}

/* RIGHT SIDE */
.ticket-right {
    text-align: right;
}

.ticket-price {
    font-size: 20px;
    font-weight: 700;
}

/* ===================== GENERAL (LIGHT BLUE) ===================== */
.ticket-card.general {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe, #93c5fd);
    color: #0f172a;
}

.ticket-card.general:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(59,130,246,0.3);
}

/* ===================== VIP (GOLD) ===================== */
.ticket-card.vip {
    background: linear-gradient(135deg, #d4af37, #ffd700, #fff3b0);
    color: #222;
}

.ticket-card.vip:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(212,175,55,0.4);
}

/* ===================== ACTIVE STATE ===================== */
.ticket-card.active {
    border: 2px solid #fff;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.ticket-card.general.active {
    border-color: #d41792;
}

.ticket-card.vip.active {
    border-color: #d41792;
}

/* ===================== MOBILE ===================== */
@media(max-width:768px){
    .ticket-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .ticket-left {
        max-width: 100%;
    }

    .ticket-right {
        width: 100%;
        margin-top: 8px;
        text-align: left;
    }
}
.early-bird{
    background:linear-gradient(135deg,#00c6ff,#0072ff);
    color:#fff;

    box-shadow:0 0 10px rgba(0,114,255,0.6),
               0 0 20px rgba(0,198,255,0.5);

    animation:pulseBlue 1.5s infinite alternate;
}

@keyframes pulseBlue{
    0%{ transform:scale(1); }
    100%{ transform:scale(1.06); }
}


.early-bird{
    display:inline-block;
    margin:10px 0;
    padding:8px 18px;
    font-size:14px;
    font-weight:700;
    border-radius:30px;
    color:#fff;

    background:linear-gradient(135deg,#ff00cc,#ff4d6d);

    box-shadow:0 0 10px rgba(255,0,204,0.6),
               0 0 20px rgba(255,77,109,0.5);

    animation:pulsePink 1.5s infinite alternate;
}

@keyframes pulsePink{
    0%{ transform:scale(1); }
    100%{ transform:scale(1.07); }
}

.old-price {
    text-decoration: line-through;
    color: #F01111;
    font-size: 14px;
    margin-right: 8px;
}
.new-price {
    color: #1D5907;
    font-weight: bold;
    font-size: 20px;
}

.price-line {
    margin: 5px 0 10px;
}

/replace 
.new-price {
    color: #1D5907;
    font-weight: bold;
    font-size: 18px;
}

.price-line {
    margin: 5px 0 10px;
}

.ticket-price {
    font-weight: bold;
    font-size: 18px;
}
.early-bird-badge {
    display: inline-block;
    color: red;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
}