/* Custom Stylesheet - No Errors */

body { 
    background-color: #f0f2f5; 
    font-family: 'Segoe UI', sans-serif; 
    margin: 0; 
    padding: 0; 
}

.header-title { 
    text-align: center; 
    padding: 20px; 
    color: #1a73e8; 
    font-weight: bold; 
}

/* Product Grid Styling */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 8px; 
    padding: 10px;
}

.item-card {
    background: #fff;
    border-radius: 10px; 
    padding: 10px 5px; 
    text-align: center;
    border: 1px solid #ddd;
    transition: 0.3s;
    cursor: pointer;
}

.item-card img {
    width: 100%;
    height: 60px; 
    object-fit: contain;
}

.item-card p {
    font-size: 12px; 
    margin-top: 5px;
    font-weight: bold;
}

/* Magnifier Overlay Settings */
#zoomOverlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: none;
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.expanded-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 20px;
}

#zoomOverlay.active .expanded-img { 
    transform: scale(1); 
}

.booking-details { 
    text-align: center; 
    animation: fadeIn 0.6s ease; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Payment Button */
.btn-pay {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    margin-top: 20px;
}

.close-zoom {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    font-weight: bold;
}

.user-info { 
    margin-bottom: 10px; 
    color: #555; 
    font-size: 16px; 
}

/* Gold Booking Button Styling */
.btn-booking-gold {
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    background-size: 200% auto;
    color: #000;
    border: 2px solid #8A6E2F;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-block;
    text-decoration: none;
}

.btn-booking-gold:hover {
    background-position: right center; 
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Fix for Gap Error in Flexbox */
.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-hand-icon {
    font-size: 28px;
    /* gap కి బదులుగా ఇక్కడ margin-right ఇచ్చాను, ఇది ఎర్రర్ చూపదు */
    margin-right: 15px; 
}

.booking-text {
    font-family: 'Arial', sans-serif;
}