    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 40px 0; overflow: hidden; position: relative; }
    .hero-price { position: absolute; top: 0; right: 0; background-color: #3b82f6; color: white; padding: 10px 20px; font-size: 16px; font-weight: 600; border-bottom-left-radius: 12px; z-index: 10; }
    .hero-text { padding-right: 20px; }
.hg-action-buttons {
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin-top: 0px;
    margin-bottom: 5px;
}
    .hg-btn, .hg-submit-btn { display: flex; align-items: center; justify-content: center; padding: 12px 24px; text-decoration: none; font-weight: 600; font-size: 15px; transition: transform 0.2s ease, filter 0.2s ease; border: none; cursor: pointer; font-family: inherit; }
    .hg-btn:hover, .hg-submit-btn:hover { transform: scale(1.02); filter: brightness(1.1); }
    .hg-btn .material-symbols-outlined, .hg-submit-btn .material-symbols-outlined { font-size: 20px; margin: 0 5px; }
    .hg-or-divider { background: #facc15; color: #212931; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; z-index: 2; margin-left: -18px; margin-right: -18px; border: 3px solid #fff; }
    .hero-gallery { position: relative; height: 500px; width: 100%; }
    .gallery-wrapper { position: relative; width: 100%; height: 100%; }
    .hg-img-box { position: absolute; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: #fff; cursor: pointer; transition: transform 0.3s ease; }
    .hg-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hg-lightbox { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); align-items: center; justify-content: center; }
    .hg-lightbox.active { display: flex; }
    .hg-lightbox-content { max-width: 90%; max-height: 90%; position: relative; }
    .hg-lightbox-img { max-width: 100%; max-height: 90vh; }
    .hg-close, .hg-prev, .hg-next { cursor: pointer; position: absolute; color: white; user-select: none; }
    .hg-close { top: 20px; right: 30px; font-size: 40px; font-weight: bold; }
    .hg-prev, .hg-next { top: 50%; padding: 16px; margin-top: -50px; font-weight: bold; font-size: 20px; background-color: rgba(0,0,0,0.4); }
    .hg-prev { left: 0; border-radius: 0 3px 3px 0; }
    .hg-next { right: 0; border-radius: 3px 0 0 3px; }
    @media (max-width: 768px) { .hero-grid { grid-template-columns: 1fr; } .hero-text { padding-right: 0; } .hero-gallery { height: 350px; margin-top: 30px; } .hero-price { top:10px; right:10px; font-size:14px; padding:6px 12px; } }
    
    /* Success Page */
    /* Payment Success Page Styles */
.payment-status-wrapper {
    padding: 60px 20px;
    text-align: center;
}

.payment-status-wrapper .status-icon {
    font-size: 80px;
    line-height: 1;
}

.payment-status-wrapper .status-icon.success {
    color: #28a745;
}

.payment-status-wrapper .status-icon.error {
    color: #dc3545;
}

.payment-status-wrapper h2 {
    margin-top: 20px;
}

.payment-status-wrapper .order-info-box {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
    border: 1px solid #dee2e6;
}

.payment-status-wrapper .order-info-box strong {
    margin-right: 8px;
    color: #d4af37;
}

.payment-status-wrapper .order-info-box .order-id {
    font-size: 1.2em;
    font-weight: bold;
    color: #28a745;
}

/* Form Validation Error Highlight */
.option-fieldset.error-highlight {
    border: 2px solid #e74c3c;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    transition: all 0.3s ease-in-out;
}

.blg-content p {
    margin-top: 15px;
}