/* Spiritual Theme Variables */
:root {
    --spiritual-primary: #DAA520;
    --spiritual-primary-dark: #B8860B;
    --spiritual-secondary: #7C3AED;
    --spiritual-secondary-dark: #6B46C1;
    --spiritual-accent: #14B8A6;
    --spiritual-bg-light: #FFFBF5;
    --spiritual-bg-cream: #FFF8F0;
    --spiritual-text-dark: #3E2723;
    --spiritual-text-muted: #6B5B4F;
}

/* Hinduism-Themed Color Variables */
:root {
    --brand-red: #7e1515;
    --brand-red-light: #a01d1d;
    --sacred-saffron: #F37420;
    --sacred-saffron-light: #F3AF42;
    --sacred-gold: #FFD700;
    --sacred-yellow: #EED062;
    --sacred-white: #FFFFFF;
    --sacred-cream: #FFF8F0;
    --sacred-green: #4B9B5A;
    --text-dark: #3E2723;
    --text-muted: #6B5B4F;
}


/* ========================================
   Header CSS - Extracted from main-style.css and header.php
   ======================================== */

/* Header Container */
.header_allPujas {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999999;
    background-color: #fff;
}

/* Main Header */
.main_header {
    width: 100%;
    align-items: center;
    background-color: #fff;
    padding: 12px;
    justify-content: space-between;
    display: flex;
}

.main_header_ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Header Logo */
.headerLogo img {
    max-height: 45px !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 24px;
    color: #e63946;
    font-weight: 700;
    margin-left: 10px;
}

/* Header Search Bar */
.headerSearchbar {
    align-items: center;

    border-radius: 25px;
    padding: 5px 10px;
    width: 30%;
    position: relative;
    height: max-content;
    display: flex;
}

.headerSearchbar i {
    font-size: 16px;
}

.searchbarInput {
    font-size: 14px;
    border: 0;
    color: #7f7b7a;
    transition: padding .4s;
    padding: 4px 0;
}

.searchbarInput:focus,
.modalsearchbarInput:focus {
    outline: 0;
    box-shadow: none;
}

.searchbarInput::placeholder {
    transition: transform .4s, opacity .4s;
    transform: translateY(0);
    opacity: 1;
}

.searchbarInput:focus::placeholder {
    transform: translateY(-20px);
    opacity: 0;
}

.search_span_input {
    display: flex;
    margin-left: 30px;
    align-items: center;
}

span#searchLabel {
    width: 100%;
    color: #7f7b7a;
    max-width: max-content;
}

.magnifying-glass-xmark {
    position: absolute;
    top: 13px;
}

/* Header Navigation Link */
.header-nav-link {
    font-size: 16px;
    font-weight: 500;
}

a.nav-link.nav-color {
    padding: .5rem 1rem;
    font-weight: 500;
}

/* Language and Location */
.language,
.location {
    font-size: 14px;
    color: #333;
}

/* Dropdown Menu */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    z-index: 1000;
}

.dropdown-menu span {
    font-weight: 700;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu ul li {
    padding: 10px;
    cursor: pointer;
    font-size: 14px !important;
    color: #6c6c6c;
}

.dropdown-menu ul li:hover {
    background-color: #f0f0f0;
}

.dropdown-menu li a:hover {
    background-color: #F37420;
    color: #fff !important;
    padding-left: 5px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: max-content;
}

/* Trending Pujas Dropdown */
div#trendingPujas {
    padding: 15px;
    border: 0;
    border-radius: 20px;
    box-shadow: 1px 7px 12px 4px rgba(0, 0, 0, .1);
    margin-top: 15px;
    overflow: auto;
    height: 400px;
}

.trending-Pujas span {
    font-weight: 700;
    font-size: 18px;
}

.all-trending-Pujas {
    display: flex;
    flex-wrap: wrap;
}

.all-trending-Pujas p {
    margin: 10px;
    border: 1px solid #d4d3d3;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px !important;
}

.all-trending-Pujas p a {
    color: #000;
}

/* Mobile Menu Icon */
.menu-icon {
    flex-direction: column;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 25%;
    transform: translateX(100%);
    transition: transform 1s;
    z-index: 999999;
    box-shadow: -2px 0 5px rgba(0, 0, 0, .1);
    flex-direction: column;
    height: 100vh;
    background-color: #fff;
    display: flex;
}

.mobile_menu_items {
    overflow-y: auto;
}

#mobile-menu ul {
    list-style: none;
    padding: 20px;
}

#mobile-menu ul li {
    margin-bottom: 20px;
}

#mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.mobile_menu_heading {
    background: #f0e7e7;
    padding: 25px;
}

.mobile_menu_heading p {
    font-family: Noto Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
}

.mobile_menu_items_content,
div#login_menu_item.all_puja_modal {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid #d4d3d3;
    text-decoration: none;
}

.mobile_menu_close {
    color: #000;
}

.mobile_menu_close i {
    font-size: 16px;
}

.login_icon_text {
    border-radius: 5px;
    border: 1px dashed #7f7b7a;
    padding: 10px;
    justify-content: space-between;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    background-color: #fff;
    display: flex;
}

.login_icon {
    border: 1px solid #2f0808;
    border-radius: 50%;
    display: flex;
    align-items: center;
    height: 30px;
    width: 30px;
    justify-content: center;
    color: #F37420;
    font-size: 18px;
}

.left_items_content,
.right_items_content,
.user_name,
.user_profile_icon {
    font-family: Noto Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    text-align: left;
    color: #292321;
}

.android_ios_app {
    padding: 25px;
}

.android_ios_app p {
    font-size: 16px;
    text-align: left;
    color: #292321;
    font-weight: 400;
    line-height: 22.4px;
    font-family: Noto Sans;
}

.mobile_loction {
    display: none;
}

/* All Pujas Section */
.all-pujass-section {
    position: sticky;
    top: 0;
    z-index: 9;
    width: 100%;
    padding: 0;
    background-color: #fff;
}

section.all-pujass-section.mt-0.mt-lg-2.all-pujass-section_1 {
    top: 80px !important;
}

.all-pujass-row {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 15px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.all-pujass-row::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    display: none;
}

.all-pujass-row::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 5px;
    display: none;
}

.all-pujass-row::-webkit-scrollbar-thumb {
    background: #F37420;
    border-radius: 5px;
    display: none;
}

.all_puja_modal,
.all_puja_modal_2 {
    display: inline-block;
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
}

.puja-name {
    font-family: Noto Sans;
    font-size: 14.64px;
    font-weight: 500;
    line-height: 20.5px;
    color: #F37420;
    margin-top: 10px;
}

.aall-puja-item .all_puja_modal .puja-name {
    color: #F37420;
    margin-top: 8px;
}

/* Modern Offcanvas Design */
.all-puja-offcanvas-bottom {
    border-radius: 0;
    height: 100vh !important;
    max-height: 100vh !important;
    background-color: #ffffff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    border: none;
}

.offcanvas-header.all-puja-offcanvas {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    /* Resetting the 0 padding */
}

.offcanvas-header.all-puja-offcanvas .btn-close {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    padding: 0.5rem;
}

.offcanvas-header.all-puja-offcanvas .btn-close:hover {
    opacity: 1;
}

/* Category Filters Styling */
.filters-categories-header p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    border-left: 4px solid var(--sacred-saffron);
    padding-left: 10px;
}

.filters-categories-body {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filters-categories-item {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filters-categories-item:hover {
    background-color: #fff1f1;
    border-color: var(--sacred-saffron);
    color: var(--sacred-saffron);
    transform: translateY(-2px);
}

.filters-categories-item.active {
    background-color: var(--sacred-saffron);
    color: #fff;
    border-color: var(--sacred-saffron);
    box-shadow: 0 4px 10px rgba(243, 116, 32, 0.2);
}

/* Modal Search Bar Enhancements */
.headerSearchbar.modalSearchbar {
    width: 100%;
    max-width: 400px;

    padding: 8px 15px;
    border-radius: 50px;
    margin-left: auto;
    /* Push to right on large screens */
}

.headerSearchbar.modalSearchbar:focus-within {
    background-color: #fff;
    border-color: var(--sacred-saffron);

}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .all-puja-offcanvas-bottom {
        height: 100vh !important;
        max-height: 100vh !important;
    }

    /* Make the services grid scrollable inside the modal */
    .all-puja-offcanvas-bottom #serviceModalBody {
        max-height: calc(100vh - 220px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 5px;
        margin-bottom: 20px;
    }

    .offcanvas-header.all-puja-offcanvas {
        padding: 15px;
    }

    .filters-categories-item {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Desktop Scrolling Logic */
@media (min-width: 769px) {
    .all-puja-offcanvas-bottom #serviceModalBody {
        max-height: calc(100vh - 250px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}

/* Scrollbar Styling for a better look */
.all-puja-offcanvas-bottom #serviceModalBody::-webkit-scrollbar {
    width: 6px;
}

.all-puja-offcanvas-bottom #serviceModalBody::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.all-puja-offcanvas-bottom #serviceModalBody::-webkit-scrollbar-thumb {
    background: var(--sacred-saffron);
    border-radius: 10px;
}

.all-puja-offcanvas-bottom #serviceModalBody::-webkit-scrollbar-thumb:hover {
    background: var(--brand-red);
}

/* Pandit Container */
.panditContainer {
    padding-right: 5rem;
    padding-left: 5rem;
    width: auto;
    box-shadow: 4px 4px 4px 0 #00000021;
}

.panditContainer-2,
.panditContainer-3 {
    margin-left: 5rem;
    margin-right: 5rem;
    width: auto;
}

/* Navbar */
.navbar {
    padding: 10px 0;
    box-shadow: 0 4px 4px 0 #00000021;
    background-color: #ffff;
}

.navbar-collapse {
    flex-grow: unset;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-icon img {
    max-width: 100%;
    height: auto;
}

/* User Profile Header */
.user_name_profile_header {
    justify-content: space-between;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user_name_profile {
    background: #fff;
    padding: 10px 30px 10px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.userName span,
.userLoction span,
.user_address_header span {
    font-family: Noto Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    text-align: left;
    color: #292321;
}

.userLoction {
    padding: 20px;
}

.location-name {
    list-style: none;
}

/* Topbar (from header.php inline styles) */
.topbar {
    padding: 5px 0;
    color: #fff;
    background: #F37420;
    position: relative;
    text-align: center;
    z-index: 100000;
}

.topbar p {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
    margin: 5px 0px !important;
    display: inline-block;
}

.topbar-border-span {
    border: 2px dotted #fff;
    padding: 6px;
    border-radius: 50px;
    font-weight: 600;
}

.topbar-border-span1 {
    font-size: 14px;
}

.btn-subscribe {
    font-weight: 600 !important;
    line-height: 1.5;
    text-align: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 3.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 1px solid #fff !important;
    background: none !important;
    box-shadow: -1px 1px 9px 1px #fff;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.btn-subscribe:focus {
    outline: 0 !important;
    box-shadow: -1px 1px 9px 1px #fff !important;
}

.shopify-close {
    position: absolute;
    right: 15px;
    top: 45%;
    font-size: 14px;
    padding: 5px;
    line-height: 14px;
    transform: translateY(-50%);
    cursor: pointer;
}

svg {
    fill: #fff;
    height: 20px;
}

.puja-text {
    font-size: 15px;
}

/* Nav Items */
.nav-item {
    text-align: left;
}

li#menu-item-87,
li#menu-item-6108 {
    position: relative;
}

li#menu-item-87 .nav-color::after,
#menu-item-6108 .nav-color::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown-menu .nav-color::after {
    border-top: none !important;
    border-right: none !important;
    content: "";
}

/* Countdown Box (from header.php inline styles) */
.countdown-box {
    background-color: #f9f9f9;
    padding: 4px 20px;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.countdown-time {
    font-size: 1.5rem;
    color: rgb(240 50 46) !important;
    display: block;
}

.countdown-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-top: 4px;
}

.shani-header {
    border-bottom: none !important;
    padding: 12px 16px 0px;
}

/* Responsive Styles */
@media (max-width: 767px) {

    header .language,
    header .location,
    header .search {
        display: none;
    }

    .search input {
        width: 120px;
    }

    .menu-icon {
        display: flex;
    }
}

@media (max-width: 576px) {
    .countdown-box {
        padding: 10px 14px;
        min-width: 65px;
    }

    .countdown-time {
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .countdown-box {
        padding: 0px 10px;
        min-width: 50px;
    }

    .countdown-time {
        font-size: 1rem;
    }
}

/* New Header Menu Styles */
.header-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu-item a {
    font-size: 15px;
    font-weight: 600;
    color: #292321;
    text-transform: uppercase;
    font-family: 'Noto Sans', sans-serif;
    transition: color 0.3s ease;
}

.header-menu-item a:hover {
    color: #F37420;
}

/* Header Buttons */
.btn-login {
    border: 1px solid #F37420;
    color: #F37420;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #F37420;
    color: #fff;
}

.btn-book-pandit {
    background: #F37420;
    color: #fff;
    border: 1px solid #F37420;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-book-pandit:hover {
    background: #fff;
    color: #F37420;
}


/* ========================================
   Saffron Theme Updates
   ======================================== */



.header-theme-link {
    color: var(--text-dark) !important;
    font-size: 14.64px;
    font-weight: 500;
    line-height: 20.5px;

    margin-top: 10px;
}

.puja-name {
    color: var(--text-dark) !important;
    font-size: 14.64px;
    font-weight: 500;
    line-height: 20.5px;

    margin-top: 10px;
}

.header-theme-link:hover {
    color: #d65a0c !important;
    /* Slightly darker shade for hover */
}

/* Filled Button - Matches .view-all-cities-btn */
.btn-theme-filled {
    display: inline-flex;
    align-items: center;
    background: var(--sacred-saffron);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    /*box-shadow: 0 4px 15px rgba(243, 116, 32, 0.3);*/
    border: none;
}

.btn-theme-filled:hover {
    background: var(--sacred-saffron-light);
    transform: translateY(-2px);
    color: #fff;
    /*box-shadow: 0 6px 20px rgba(243, 116, 32, 0.4);*/
}

.btn-theme-filled::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-theme-filled:hover::after {
    transform: translateX(5px);
}

/* Outline Button - Matches .seeAllBtn */
.btn-theme-outline {
    color: #000;
    border: 1px solid #000;
    font-weight: 700;
    padding: 3px 5px 3px 15px;
    /* Matches exact "See All Reviews" padding */
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background: transparent;
}

.btn-theme-outline:hover {
    background: #f0f0f0;
    color: #000;
}

@media (max-width: 1200px) {
    .panditContainer {
        padding-right: 0rem;
        padding-left: 0rem;
        width: auto;
        box-shadow: 4px 4px 4px 0 #00000021;
    }

    /* Reduce horizontal padding/margin for menu items */
    .menu-item.me-3 {
        margin-right: 0.5rem !important;
    }

    /* Reduce font size for menu links */
    .header-theme-link,
    .puja-name {
        font-size: 13px !important;
    }

    /* Adjust right section gap */
    .main_header_ul {
        gap: 10px !important;
    }

    /* Fix "Book a Pandit" button squashing */
    .btn-theme-filled {
        padding: 8px 15px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        width: auto !important;
    }

    /* Ensure icon margin is handled */
    .btn-theme-filled::after {
        margin-left: 5px !important;
    }

    /* Adjust Location Font Size */
    .real-location-fetch,
    .header-nav-link i {
        font-size: 13px !important;
    }

    /* Adjust main header padding if needed */
    .main_header {
        padding: 10px 5px !important;
    }

    /* Slightly reduce logo size if needed */
    .headerLogo img {
        max-height: 40px !important;
    }

    /* Adjust spacing for location/language dropdowns */
    .header-nav-link.me-5 {
        margin-right: 1rem !important;
    }
}

.display-5.pujas-heading {
    font-family: Noto Sans;
    font-size: 2rem;
    font-weight: 700;
    line-height: 52.8px;
    color: var(--text-dark);
}

/* ========================================
   Puja Service Card Styles (Moved from home-desktop.css)
   ======================================== */

.puja-service-card {
    background: var(--sacred-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: auto;
    position: relative;
}

.puja-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.puja-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.puja-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.puja-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.puja-service-card:hover .puja-card-image img {
    transform: scale(1.08);
}

.puja-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sacred-saffron);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sacred-white);
    z-index: 1;
}

.puja-card-content {
    padding: 20px;
}

.puja-card-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.puja-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.puja-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.puja-rating i {
    color: var(--sacred-gold);
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 5px;
}

.puja-conducted {
    font-size: 13px;
    color: var(--text-muted);
}

.puja-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.view-details-btn {
    background: transparent;
    color: var(--spiritual-primary);
    border: 1px solid var(--spiritual-primary);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-details-btn:hover {
    background: var(--spiritual-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.15);
}

.book-puja-btn {
    background: var(--sacred-saffron);
    color: var(--sacred-white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-puja-btn:hover {
    background: var(--sacred-saffron-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 116, 32, 0.3);
}