/* ══════════════════════════════════════════════════
   Hotel Room Manager – Frontend Styles
   Fonts: Marcellus (headings), Satoshi (body)
   ══════════════════════════════════════════════════ */

:root {
    --hrm-bg: #f5f0e8;
    --hrm-card-bg: #ffffff;
    --hrm-text: #1a2a3a;
    --hrm-text-light: #5a6a7a;
    --hrm-accent: #d4a853;
    --hrm-featured: #f0d060;
    --hrm-featured-text: #2a3a1a;
    --hrm-check: #4aafa0;
    --hrm-exclude: #d45050;
    --hrm-border: #e5e0d5;
    --hrm-form-bg: #faf7f0;
    --hrm-font-heading: 'Marcellus', serif;
    --hrm-font-body: 'Satoshi', sans-serif;
    --hrm-radius: 16px;
    --hrm-radius-sm: 8px;
}

/* ── Grid Layout ── */
.hrm-grid {
    display: grid;
    gap: 30px;
    padding: 20px 0;
}
.hrm-cols-2 { grid-template-columns: repeat(2, 1fr); }
.hrm-cols-3 { grid-template-columns: repeat(3, 1fr); }
.hrm-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
    .hrm-cols-3, .hrm-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .hrm-cols-2, .hrm-cols-3, .hrm-cols-4 { grid-template-columns: 1fr; }
}

/* ── Card ── */
.hrm-card {
    display: block;
    background: var(--hrm-card-bg);
    border-radius: var(--hrm-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--hrm-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.hrm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.hrm-card-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.hrm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hrm-card:hover .hrm-card-image img {
    transform: scale(1.05);
}
.hrm-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hrm-border);
    color: var(--hrm-text-light);
    font-family: var(--hrm-font-body);
}

.hrm-card-tags {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.hrm-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 30px;
    font-family: var(--hrm-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--hrm-text);
    white-space: nowrap;
}
.hrm-tag i {
    font-size: 11px;
    opacity: 0.7;
}

.hrm-card-body {
    padding: 20px 20px 24px;
}
.hrm-card-title {
    font-family: var(--hrm-font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--hrm-text);
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.hrm-card-price {
    font-family: var(--hrm-font-heading);
    font-size: 28px;
    color: var(--hrm-text);
    font-weight: 400;
}

/* ══════════════════════════════════════════════════
   SINGLE ROOM PAGE
   ══════════════════════════════════════════════════ */

.hrm-single-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-family: var(--hrm-font-body);
    color: var(--hrm-text);
}

/* ── Gallery Slider ── */
.hrm-gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--hrm-radius);
    margin-bottom: 30px;
}
.hrm-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}
.hrm-slide {
    min-width: 33.333%;
    flex-shrink: 0;
}
.hrm-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .hrm-slide {
        min-width: 100%;
    }
    .hrm-slide img {
        height: 260px;
    }
}

.hrm-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--hrm-text);
    transition: background 0.2s;
    z-index: 5;
}
.hrm-slider-btn:hover {
    background: #fff;
}
.hrm-slider-prev { left: 16px; }
.hrm-slider-next { right: 16px; }

.hrm-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.hrm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s;
}
.hrm-dot.active {
    background: #fff;
}

/* ── Room Header ── */
.hrm-room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}
.hrm-featured-badge {
    display: inline-block;
    background: var(--hrm-featured);
    color: var(--hrm-featured-text);
    padding: 5px 18px;
    border-radius: 4px;
    font-family: var(--hrm-font-body);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.hrm-room-title {
    font-family: var(--hrm-font-heading);
    font-size: 42px;
    font-weight: 400;
    color: #5a8fa8;
    margin: 0 0 12px 0;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .hrm-room-title { font-size: 30px; }
}

.hrm-room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--hrm-text-light);
}
.hrm-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hrm-meta-item i {
    color: var(--hrm-text-light);
    font-size: 13px;
}

.hrm-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hrm-stars {
    display: flex;
    gap: 2px;
    color: var(--hrm-accent);
    font-size: 14px;
}
.hrm-review-count {
    font-size: 13px;
    color: var(--hrm-text-light);
}

/* ── Price Row ── */
.hrm-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--hrm-border);
}
.hrm-current-price {
    font-family: var(--hrm-font-heading);
    font-size: 34px;
    color: var(--hrm-text);
}
.hrm-original-price {
    font-family: var(--hrm-font-body);
    font-size: 20px;
    color: var(--hrm-text-light);
    text-decoration: line-through;
}

/* ── Two Column Layout ── */
.hrm-content-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 991px) {
    .hrm-content-wrap {
        grid-template-columns: 1fr;
    }
}

/* ── Section Titles ── */
.hrm-section {
    margin-bottom: 40px;
}
.hrm-section-title {
    font-family: var(--hrm-font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--hrm-text);
    margin: 0 0 18px 0;
}
.hrm-description-text {
    font-family: var(--hrm-font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--hrm-text-light);
}
.hrm-description-text p {
    margin: 0 0 12px;
}

/* ── Tour Amenities Grid ── */
.hrm-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 24px;
}
@media (max-width: 600px) {
    .hrm-facilities-grid { grid-template-columns: repeat(2, 1fr); }
}
.hrm-facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--hrm-text);
    font-family: var(--hrm-font-body);
}
.hrm-facility-item i {
    color: var(--hrm-check);
    font-size: 16px;
    flex-shrink: 0;
}

/* ── Included / Excluded ── */
.hrm-inclusions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (max-width: 600px) {
    .hrm-inclusions-list { grid-template-columns: 1fr; }
}
.hrm-inclusion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-family: var(--hrm-font-body);
}
.hrm-included i { color: var(--hrm-check); }
.hrm-excluded i { color: var(--hrm-exclude); }
.hrm-excluded span { text-decoration: line-through; color: var(--hrm-text-light); }

/* ── FAQ Accordion ── */
.hrm-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hrm-faq-item {
    border: 1px solid var(--hrm-border);
    border-radius: var(--hrm-radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}
.hrm-faq-item.active {
    border-color: var(--hrm-accent);
}
.hrm-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--hrm-font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--hrm-text);
    background: var(--hrm-card-bg);
    transition: background 0.2s;
}
.hrm-faq-item.active .hrm-faq-question {
    background: var(--hrm-form-bg);
}
.hrm-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--hrm-border);
    color: var(--hrm-text);
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.hrm-faq-item.active .hrm-faq-toggle {
    background: var(--hrm-accent);
    color: #fff;
}
.hrm-faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-family: var(--hrm-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--hrm-text-light);
    background: var(--hrm-form-bg);
}
.hrm-faq-answer p {
    margin: 0;
}

/* ── Reviews ── */
.hrm-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hrm-review-item {
    background: var(--hrm-form-bg);
    border-radius: var(--hrm-radius-sm);
    padding: 20px;
}
.hrm-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.hrm-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hrm-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hrm-font-heading);
    font-size: 18px;
    flex-shrink: 0;
}
.hrm-review-info {
    flex: 1;
}
.hrm-review-author {
    display: block;
    font-family: var(--hrm-font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}
.hrm-review-stars {
    display: flex;
    gap: 2px;
    color: var(--hrm-accent);
    font-size: 13px;
}
.hrm-review-date {
    font-size: 13px;
    color: var(--hrm-text-light);
}
.hrm-review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--hrm-text-light);
    margin: 0;
}

/* ── Map ── */
.hrm-map-container {
    border-radius: var(--hrm-radius);
    overflow: hidden;
}
.hrm-map-container iframe {
    display: block;
}

/* ══════════ SIDEBAR ══════════ */
.hrm-sidebar-card {
    background: var(--hrm-form-bg);
    border-radius: var(--hrm-radius);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--hrm-border);
}
.hrm-sidebar-title {
    font-family: var(--hrm-font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--hrm-text);
    margin: 0 0 20px 0;
}

/* ── Inquiry Form ── */
.hrm-form-group {
    margin-bottom: 16px;
}
.hrm-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--hrm-text);
    margin-bottom: 6px;
    font-family: var(--hrm-font-body);
}
.hrm-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--hrm-border);
    border-radius: var(--hrm-radius-sm);
    font-family: var(--hrm-font-body);
    font-size: 14px;
    color: var(--hrm-text);
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.hrm-form-group input:focus {
    border-color: var(--hrm-accent);
    outline: none;
}
.hrm-form-group input::placeholder {
    color: #b0b5be;
}
.hrm-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--hrm-text);
    color: #fff;
    border: none;
    border-radius: var(--hrm-radius-sm);
    font-family: var(--hrm-font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}
.hrm-submit-btn:hover {
    background: #2a3a4a;
    transform: translateY(-1px);
}
.hrm-submit-btn:active {
    transform: translateY(0);
}
.hrm-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.hrm-form-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--hrm-radius-sm);
    font-size: 14px;
    font-family: var(--hrm-font-body);
}
.hrm-form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.hrm-form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* ── Amenities Sidebar ── */
.hrm-amenities-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hrm-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--hrm-border);
    font-family: var(--hrm-font-body);
    font-size: 14px;
    color: var(--hrm-text);
}
.hrm-amenity-item:last-child {
    border-bottom: none;
}
.hrm-amenity-item i {
    width: 22px;
    text-align: center;
    color: var(--hrm-accent);
    font-size: 16px;
}

/* ── No rooms message ── */
.hrm-no-rooms {
    text-align: center;
    padding: 40px;
    color: var(--hrm-text-light);
    font-family: var(--hrm-font-body);
    font-size: 16px;
}

/* ══════════════════════════════════════════════════
   SEARCH BAR SHORTCODE
   ══════════════════════════════════════════════════ */
.hrm-search-bar {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    background: var(--hrm-card-bg) !important;
    border-radius: var(--hrm-radius) !important;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08) !important;
    overflow: visible !important;
    max-width: 1100px !important;
    margin: 30px auto !important;
    font-family: var(--hrm-font-body) !important;
    padding: 0 !important;
    border: none !important;
    list-style: none !important;
    box-sizing: border-box !important;
}
.hrm-search-bar * {
    box-sizing: border-box !important;
}
.hrm-search-field {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 22px 24px !important;
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 0% !important;
    flex: 1 1 0% !important;
    min-width: 0 !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    float: none !important;
    width: auto !important;
}
.hrm-search-icon {
    font-size: 22px !important;
    color: #3a6ea5 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    width: auto !important;
}
.hrm-search-input-wrap {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 0% !important;
    flex: 1 1 0% !important;
    min-width: 0 !important;
    position: relative !important;
}
.hrm-search-input-wrap label {
    display: block !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--hrm-text-light) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 4px !important;
    padding: 0 !important;
    float: none !important;
    width: auto !important;
}
.hrm-search-input-wrap input[type="text"],
.hrm-search-input-wrap input[type="date"],
.hrm-search-input-wrap input[type="time"],
.hrm-search-input-wrap input[type="number"] {
    width: 100% !important;
    border: none !important;
    outline: none !important;
    font-family: var(--hrm-font-heading) !important;
    font-size: 15px !important;
    color: var(--hrm-text) !important;
    background: transparent !important;
    padding: 2px 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    border-radius: 0 !important;
    height: auto !important;
    line-height: 1.4 !important;
    min-height: 0 !important;
    max-width: 100% !important;
}
.hrm-search-input-wrap input::placeholder {
    color: #b0b5be !important;
    font-family: var(--hrm-font-heading) !important;
}
.hrm-search-divider {
    width: 1px !important;
    height: auto !important;
    background: var(--hrm-border) !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
    margin: 14px 0 !important;
    padding: 0 !important;
    border: none !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    float: none !important;
    display: block !important;
}
button.hrm-search-btn,
.hrm-search-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    gap: 2px !important;
    padding: 22px 36px !important;
    background: var(--hrm-featured) !important;
    color: var(--hrm-featured-text) !important;
    border: none !important;
    cursor: pointer !important;
    font-family: var(--hrm-font-heading) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    transition: background 0.2s, transform 0.15s !important;
    border-radius: 0 var(--hrm-radius) var(--hrm-radius) 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    min-width: 130px !important;
    float: none !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}
button.hrm-search-btn:hover,
.hrm-search-btn:hover {
    background: #e8c44a !important;
    transform: scale(1.02) !important;
}
.hrm-search-btn i {
    font-size: 14px !important;
    margin-top: 4px !important;
}

/* Destination dropdown */
.hrm-dest-dropdown {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: -12px !important;
    right: -12px !important;
    background: #fff !important;
    border: 1px solid var(--hrm-border) !important;
    border-radius: var(--hrm-radius-sm) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    z-index: 99999 !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    margin-top: 8px !important;
    padding: 0 !important;
    width: auto !important;
    min-width: 250px !important;
}
.hrm-dest-dropdown.active {
    display: block !important;
}
.hrm-dest-item {
    padding: 12px 16px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    color: var(--hrm-text) !important;
    transition: background 0.15s !important;
    border-bottom: 1px solid #f0f0f0 !important;
    background: #fff !important;
    margin: 0 !important;
    list-style: none !important;
}
.hrm-dest-item:last-child {
    border-bottom: none !important;
}
.hrm-dest-item:hover {
    background: var(--hrm-form-bg) !important;
}
.hrm-dest-item .hrm-dest-name {
    font-weight: 600 !important;
    font-family: var(--hrm-font-body) !important;
    display: block !important;
}
.hrm-dest-item .hrm-dest-tag {
    font-size: 12px !important;
    color: var(--hrm-text-light) !important;
    margin-top: 2px !important;
    display: block !important;
}
.hrm-dest-no-results {
    padding: 16px !important;
    color: var(--hrm-text-light) !important;
    font-size: 14px !important;
    text-align: center !important;
}

/* Search bar responsive */
@media (max-width: 768px) {
    .hrm-search-bar {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        border-radius: var(--hrm-radius) !important;
    }
    .hrm-search-field {
        padding: 14px 20px !important;
    }
    .hrm-search-divider {
        width: auto !important;
        height: 1px !important;
        margin: 0 14px !important;
    }
    button.hrm-search-btn,
    .hrm-search-btn {
        -webkit-box-orient: horizontal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        gap: 8px !important;
        border-radius: 0 0 var(--hrm-radius) var(--hrm-radius) !important;
        padding: 16px !important;
    }
}

/* ══════════════════════════════════════════════════
   TOUR FORM STYLES
   ══════════════════════════════════════════════════ */
.hrm-tour-form-card {
    background: var(--hrm-form-bg);
}
.hrm-tour-price-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hrm-border);
}
.hrm-per-person-label {
    font-family: var(--hrm-font-heading);
    font-size: 28px;
    color: var(--hrm-text);
}
.hrm-per-person-text {
    font-size: 13px;
    color: var(--hrm-text-light);
}
.hrm-form-row {
    display: flex;
    gap: 12px;
}
.hrm-form-group.hrm-half {
    flex: 1;
}
.hrm-tour-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #fff;
    border-radius: var(--hrm-radius-sm);
    border: 1px solid var(--hrm-border);
    margin-bottom: 16px;
}
.hrm-total-label {
    font-family: var(--hrm-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--hrm-text);
}
.hrm-total-amount {
    font-family: var(--hrm-font-heading);
    font-size: 22px;
    color: var(--hrm-text);
}

.hrm-pay-razorpay-btn {
    background: #1a73e8 !important;
}
.hrm-pay-razorpay-btn:hover {
    background: #1565c0 !important;
}
.hrm-pay-razorpay-btn i {
    margin-right: 6px;
}
.hrm-cash-btn {
    background: transparent !important;
    color: var(--hrm-text) !important;
    border: 1px solid var(--hrm-border) !important;
    margin-top: 8px;
}
.hrm-cash-btn:hover {
    background: var(--hrm-form-bg) !important;
    border-color: var(--hrm-text) !important;
}