.row-title {
    grid-column: 1 / -1;
    margin: 30px 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
}

.lucky-draw-row {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

/* 3 columns for Umrah tickets */
.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* 4 columns for other products */
.four-col {
    grid-template-columns: repeat(4, 1fr);
}

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

    .three-col,
    .four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .three-col,
    .four-col {
        grid-template-columns: 1fr;
    }
}

.lucky-draw-grid {
    display: grid;
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto;
}

.lucky-draw-box {
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    background: url("https://img.freepik.com/free-photo/ornate-arched-doorway-with-golden-details-lanterns_23-2151983944.jpg?ga=GA1.1.938829128.1769604838&semt=ais_hybrid&w=740&q=80");
    box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
    color: #fff;
    font-family: "Segoe UI", sans-serif;
    background-size: cover;
    background-position: center 0;
    min-height: 510px;
    padding-top: 130px;
}

.lucky-draw-box .label {
    font-size: 14px;
    letter-spacing: 1.5px;
    opacity: .85;
    margin-bottom: 14px;
}

.serial {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffd700;
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: .85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.draw-btn {
    margin-top: 22px;
    padding: 12px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    box-shadow: 0 10px 25px rgba(255, 215, 0, .35);
    transition: all .3s ease;
}

.draw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 215, 0, .55);
}

.draw-btn:disabled {
    background: #555;
    color: #aaa;
    cursor: not-allowed;
    box-shadow: none;
}

/* Password Protection Styles */
.ramadan-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 20px;
}

.ramadan-password-box {
    background: linear-gradient(135deg, #1a1a1a, #262626);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.ramadan-password-box .icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.ramadan-password-box h2 {
    color: #ffd700;
    margin: 0 0 10px;
    font-size: 24px;
}

.ramadan-password-box p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 14px;
}

.password-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.password-input-group input {
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-size: 24px;
    letter-spacing: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.password-input-group input:focus {
    border-color: #ffd700;
}

.password-input-group button {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #111;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.password-input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.error-msg {
    margin-top: 20px;
    color: #ff4d4d;
    font-size: 13px;
    background: rgba(255, 77, 77, 0.1);
    padding: 10px;
    border-radius: 5px;
}

.draw-prize-image {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.draw-prize-image img {
    max-height: 130px;
}

.winner-details {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: fadeIn 0.5s ease-in-out;
    width: 80%;
    margin: 20px auto 10px;
}

.winner-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.winner-city {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}