/* ============================================================
   THE BRAJ DHAM - Custom Stylesheet
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
    --bd-primary: #138808;
    --bd-primary-dark: #0e6a06;
    --bd-primary-light: #1aad0a;
    --bd-saffron: #FF9933;
    --bd-saffron-dark: #e68a2e;
    --bd-saffron-light: #ffad5c;
    --bd-gold: #FFD700;
    --bd-gold-dark: #ccac00;
    --bd-dark: #333333;
    --bd-light-bg: #F8F9FA;
    --bd-white: #ffffff;
    --bd-gray-100: #f8f9fa;
    --bd-gray-200: #e9ecef;
    --bd-gray-300: #dee2e6;
    --bd-gray-400: #ced4da;
    --bd-gray-500: #adb5bd;
    --bd-gray-600: #6c757d;
    --bd-gray-700: #495057;
    --bd-danger: #dc3545;
    --bd-success: #138808;
    --bd-info: #0dcaf0;
    --bd-warning: #FF9933;
    --bd-deep-saffron: #E8751A;
    --bd-temple-gold: #D4A843;
    --bd-krishna-blue: #1A5276;
    --bd-cream: #FFF8F0;
    --bd-font: 'Poppins', sans-serif;
    --bd-font-serif: 'Playfair Display', Georgia, serif;
    --bd-radius: 0.5rem;
    --bd-radius-lg: 0.75rem;
    --bd-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --bd-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --bd-transition: all 0.3s ease;
}

/* ----- Global Reset & Base ----- */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: var(--bd-font);
    color: var(--bd-dark);
    background-color: var(--bd-light-bg);
    line-height: 1.7;
    overflow-x: clip;
}

a {
    color: var(--bd-primary);
    text-decoration: none;
    transition: var(--bd-transition);
}

a:hover {
    color: var(--bd-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ----- Selection Color ----- */
::selection {
    background-color: var(--bd-saffron);
    color: var(--bd-white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.bd-navbar {
    background-color: var(--bd-primary) !important;
    padding: 0.6rem 0;
    transition: var(--bd-transition);
}

.bd-navbar .navbar-brand {
    color: var(--bd-white) !important;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bd-navbar .navbar-brand:hover {
    color: var(--bd-gold) !important;
}

.bd-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: var(--bd-radius);
    transition: var(--bd-transition);
}

.bd-navbar .nav-link:hover,
.bd-navbar .nav-link:focus {
    color: var(--bd-white) !important;
    background-color: rgba(255, 255, 255, 0.15);
}

.bd-navbar .nav-link.active {
    color: var(--bd-gold) !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.bd-nav-highlight {
    color: var(--bd-gold) !important;
    font-weight: 600 !important;
}

.bd-nav-highlight:hover {
    color: var(--bd-white) !important;
    background-color: rgba(255, 215, 0, 0.2) !important;
}

.bd-navbar .dropdown-menu {
    border: none;
    border-radius: var(--bd-radius);
    box-shadow: var(--bd-shadow-hover);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.bd-navbar .dropdown-item {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    transition: var(--bd-transition);
}

.bd-navbar .dropdown-item:hover {
    background-color: var(--bd-gray-100);
    color: var(--bd-primary);
}

.bd-avatar-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Navbar shrink on scroll */
.bd-navbar.navbar-shrink {
    padding: 0.3rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    font-family: var(--bd-font);
    font-weight: 500;
    border-radius: var(--bd-radius);
    padding: 0.5rem 1.5rem;
    transition: var(--bd-transition);
    font-size: 0.9rem;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(19, 136, 8, 0.35);
}

.btn-primary {
    background-color: var(--bd-primary);
    border-color: var(--bd-primary);
    color: var(--bd-white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bd-primary-dark);
    border-color: var(--bd-primary-dark);
    color: var(--bd-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 136, 8, 0.35);
}

.btn-primary:active {
    background-color: var(--bd-primary-dark);
    border-color: var(--bd-primary-dark);
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--bd-saffron);
    border-color: var(--bd-saffron);
    color: var(--bd-white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--bd-saffron-dark);
    border-color: var(--bd-saffron-dark);
    color: var(--bd-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.35);
}

.btn-secondary:active {
    background-color: var(--bd-saffron-dark);
    border-color: var(--bd-saffron-dark);
    transform: translateY(0);
}

.btn-outline-primary {
    color: var(--bd-primary);
    border-color: var(--bd-primary);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--bd-primary);
    border-color: var(--bd-primary);
    color: var(--bd-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 136, 8, 0.25);
}

.btn-outline-secondary {
    color: var(--bd-saffron);
    border-color: var(--bd-saffron);
    background-color: transparent;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background-color: var(--bd-saffron);
    border-color: var(--bd-saffron);
    color: var(--bd-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.25);
}

.btn-gold {
    background-color: var(--bd-gold);
    border-color: var(--bd-gold);
    color: var(--bd-dark);
    font-weight: 600;
}

.btn-gold:hover {
    background-color: var(--bd-gold-dark);
    border-color: var(--bd-gold-dark);
    color: var(--bd-dark);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.bd-hero {
    background: linear-gradient(135deg, var(--bd-primary) 0%, var(--bd-primary-dark) 40%, var(--bd-saffron) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--bd-white);
}

.bd-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></svg>');
    background-size: 300px;
    opacity: 0.5;
}

.bd-hero .container {
    position: relative;
    z-index: 2;
}

.bd-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.bd-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
}

.bd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 136, 8, 0.85) 0%, rgba(255, 153, 51, 0.7) 100%);
    z-index: 1;
}

.bd-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.bd-section-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.bd-section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bd-dark);
    margin-bottom: 0.5rem;
}

.bd-section-heading p {
    color: var(--bd-gray-600);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bd-section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bd-primary), var(--bd-saffron));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.bd-section-heading-left {
    text-align: left;
}

.bd-section-heading-left::after {
    margin-left: 0;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.bd-category-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--bd-transition);
    border: 1px solid var(--bd-gray-200);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bd-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bd-primary), var(--bd-saffron));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bd-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bd-shadow-hover);
    border-color: transparent;
}

.bd-category-card:hover::before {
    transform: scaleX(1);
}

.bd-category-card .bd-category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(19, 136, 8, 0.1), rgba(255, 153, 51, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--bd-primary);
    transition: var(--bd-transition);
}

.bd-category-card:hover .bd-category-icon {
    background: linear-gradient(135deg, var(--bd-primary), var(--bd-saffron));
    color: var(--bd-white);
    transform: scale(1.1);
}

.bd-category-card h5 {
    font-weight: 600;
    color: var(--bd-dark);
    margin-bottom: 0.5rem;
}

.bd-category-card p {
    color: var(--bd-gray-600);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.bd-product-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    transition: var(--bd-transition);
    border: 1px solid var(--bd-gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bd-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bd-shadow-hover);
    border-color: transparent;
}

.bd-product-card .bd-product-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.bd-product-card .bd-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bd-product-card:hover .bd-product-img img {
    transform: scale(1.08);
}

.bd-product-card .bd-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.bd-product-card .bd-product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bd-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-gray-500);
    cursor: pointer;
    transition: var(--bd-transition);
    border: none;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bd-product-card .bd-product-wishlist:hover,
.bd-product-card .bd-product-wishlist.active {
    color: var(--bd-danger);
    background: #fff0f0;
}

.bd-product-card .bd-product-body {
    padding: 1rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bd-product-card .bd-product-category {
    font-size: 0.75rem;
    color: var(--bd-saffron);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.bd-product-card .bd-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bd-dark);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bd-product-card .bd-product-title a {
    color: inherit;
    text-decoration: none;
}

.bd-product-card .bd-product-title a:hover {
    color: var(--bd-primary);
}

.bd-product-card .bd-product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--bd-gray-200);
}

/* ============================================================
   PRICE DISPLAY
   ============================================================ */
.bd-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bd-price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bd-primary);
}

.bd-price-original {
    font-size: 0.85rem;
    color: var(--bd-gray-500);
    text-decoration: line-through;
}

.bd-price-discount {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bd-danger);
    background: #fff0f0;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
}

/* ============================================================
   RATING STARS
   ============================================================ */
.bd-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.bd-rating .fas.fa-star,
.bd-rating .fa-star {
    color: var(--bd-gold);
    font-size: 0.8rem;
}

.bd-rating .far.fa-star {
    color: var(--bd-gray-300);
    font-size: 0.8rem;
}

.bd-rating .fas.fa-star-half-stroke,
.bd-rating .fa-star-half-stroke {
    color: var(--bd-gold);
    font-size: 0.8rem;
}

.bd-rating-count {
    font-size: 0.8rem;
    color: var(--bd-gray-600);
    margin-left: 0.35rem;
}

/* ============================================================
   HOTEL / LISTING CARDS
   ============================================================ */
.bd-hotel-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    transition: var(--bd-transition);
    border: 1px solid var(--bd-gray-200);
    height: 100%;
}

.bd-hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bd-shadow-hover);
}

.bd-hotel-card .bd-hotel-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.bd-hotel-card .bd-hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bd-hotel-card:hover .bd-hotel-img img {
    transform: scale(1.05);
}

.bd-hotel-card .bd-hotel-body {
    padding: 1.2rem;
}

.bd-hotel-card .bd-hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.bd-hotel-card .bd-hotel-amenities span {
    background: var(--bd-gray-100);
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: var(--bd-gray-700);
}

/* ============================================================
   STATUS BADGES
   ============================================================ */
.bd-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.bd-badge-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

.bd-badge-confirmed {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #198754;
}

.bd-badge-shipped {
    background-color: #cff4fc;
    color: #055160;
    border: 1px solid #0dcaf0;
}

.bd-badge-delivered {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid var(--bd-primary);
}

.bd-badge-cancelled {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #dc3545;
}

.bd-badge-active {
    background-color: #d1e7dd;
    color: #0f5132;
}

.bd-badge-inactive {
    background-color: var(--bd-gray-200);
    color: var(--bd-gray-700);
}

.bd-badge-sale {
    background-color: var(--bd-danger);
    color: var(--bd-white);
}

.bd-badge-new {
    background-color: var(--bd-primary);
    color: var(--bd-white);
}

.bd-badge-featured {
    background-color: var(--bd-gold);
    color: var(--bd-dark);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-control,
.form-select {
    font-family: var(--bd-font);
    border-radius: var(--bd-radius);
    border: 1px solid var(--bd-gray-300);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: var(--bd-transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bd-primary);
    box-shadow: 0 0 0 0.2rem rgba(19, 136, 8, 0.15);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--bd-gray-700);
    margin-bottom: 0.4rem;
}

.form-check-input:checked {
    background-color: var(--bd-primary);
    border-color: var(--bd-primary);
}

.bd-form-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    padding: 2rem;
    box-shadow: var(--bd-shadow);
    border: 1px solid var(--bd-gray-200);
}

.input-group-text {
    background-color: var(--bd-gray-100);
    border-color: var(--bd-gray-300);
    color: var(--bd-gray-600);
}

.bd-search-bar {
    position: relative;
}

.bd-search-bar .form-control {
    padding-left: 2.8rem;
    border-radius: 50px;
}

.bd-search-bar .bd-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bd-gray-500);
    z-index: 5;
}

/* Validation styles */
.field-validation-error {
    color: var(--bd-danger);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.input-validation-error {
    border-color: var(--bd-danger) !important;
}

.input-validation-error:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

.validation-summary-errors ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.validation-summary-errors {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    border-radius: var(--bd-radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
}

/* ============================================================
   TOAST / NOTIFICATION STYLES
   ============================================================ */
.bd-toast-container {
    z-index: 1090 !important;
    margin-top: 70px;
}

.bd-toast-container .toast {
    border-radius: var(--bd-radius);
    min-width: 300px;
    font-family: var(--bd-font);
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.bd-footer {
    background-color: var(--bd-primary-dark);
    color: var(--bd-white);
    margin-top: auto;
}

.bd-footer h5 {
    position: relative;
    padding-bottom: 0.75rem;
}

.bd-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--bd-saffron);
}

.bd-footer-links li {
    margin-bottom: 0.5rem;
}

.bd-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--bd-transition);
}

.bd-footer-links a:hover {
    color: var(--bd-gold);
    padding-left: 5px;
}

.bd-footer-contact li {
    margin-bottom: 0.85rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}

.bd-footer-contact li i {
    margin-top: 0.3rem;
    min-width: 20px;
}

.bd-footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--bd-transition);
}

.bd-footer-contact a:hover {
    color: var(--bd-gold);
}

.bd-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bd-white);
    font-size: 1rem;
    transition: var(--bd-transition);
}

.bd-social-links a:hover {
    background: var(--bd-saffron);
    color: var(--bd-white);
    transform: translateY(-3px);
}

.bd-footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bd-footer-bottom a {
    transition: var(--bd-transition);
}

.bd-footer-bottom a:hover {
    color: var(--bd-gold) !important;
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.bd-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bd-primary);
    color: var(--bd-white);
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--bd-transition);
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(19, 136, 8, 0.35);
}

.bd-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bd-scroll-top:hover {
    background: var(--bd-saffron);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

/* ============================================================
   GENERIC CARDS & CONTAINERS
   ============================================================ */
.bd-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    border: 1px solid var(--bd-gray-200);
    transition: var(--bd-transition);
    overflow: hidden;
}

.bd-card:hover {
    box-shadow: var(--bd-shadow-hover);
}

.bd-card-body {
    padding: 1.5rem;
}

.bd-stat-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--bd-gray-200);
    transition: var(--bd-transition);
    position: relative;
    overflow: hidden;
}

.bd-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--bd-primary);
}

.bd-stat-card:hover {
    box-shadow: var(--bd-shadow);
    transform: translateY(-2px);
}

.bd-stat-card .bd-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--bd-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.bd-stat-card .bd-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bd-dark);
}

.bd-stat-card .bd-stat-label {
    font-size: 0.85rem;
    color: var(--bd-gray-600);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.bd-breadcrumb {
    background: var(--bd-white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--bd-gray-200);
}

.bd-breadcrumb .breadcrumb {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.bd-breadcrumb .breadcrumb-item a {
    color: var(--bd-primary);
}

.bd-breadcrumb .breadcrumb-item.active {
    color: var(--bd-gray-600);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.page-link {
    color: var(--bd-primary);
    border-radius: var(--bd-radius) !important;
    margin: 0 2px;
    font-weight: 500;
    border-color: var(--bd-gray-300);
}

.page-link:hover {
    background-color: var(--bd-primary);
    border-color: var(--bd-primary);
    color: var(--bd-white);
}

.page-item.active .page-link {
    background-color: var(--bd-primary);
    border-color: var(--bd-primary);
}

/* ============================================================
   TABLE STYLES
   ============================================================ */
.bd-table {
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    box-shadow: var(--bd-shadow);
}

.bd-table .table {
    margin-bottom: 0;
}

.bd-table .table thead th {
    background-color: var(--bd-primary);
    color: var(--bd-white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 0.85rem 1rem;
}

.bd-table .table tbody td {
    vertical-align: middle;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.bd-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.bd-empty-state i {
    font-size: 4rem;
    color: var(--bd-gray-300);
    margin-bottom: 1.5rem;
}

.bd-empty-state h4 {
    color: var(--bd-gray-700);
    font-weight: 600;
}

.bd-empty-state p {
    color: var(--bd-gray-500);
    max-width: 400px;
    margin: 0.5rem auto 1.5rem;
}

/* ============================================================
   LOADING / SPINNER
   ============================================================ */
.bd-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.bd-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bd-gray-200);
    border-top-color: var(--bd-primary);
    border-radius: 50%;
    animation: bd-spin 0.8s linear infinite;
}

@keyframes bd-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   IMAGE GALLERY / LIGHTBOX
   ============================================================ */
.bd-gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--bd-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--bd-transition);
}

.bd-gallery-thumb:hover,
.bd-gallery-thumb.active {
    border-color: var(--bd-primary);
}

.bd-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.bd-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(19, 136, 8, 0.05) 0%, rgba(255, 153, 51, 0.05) 100%);
    padding: 2rem 1rem;
}

.bd-auth-card {
    max-width: 450px;
    width: 100%;
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--bd-shadow);
    border: 1px solid var(--bd-gray-200);
}

.bd-auth-card .bd-auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.bd-auth-card .bd-auth-logo i {
    font-size: 2.5rem;
    color: var(--bd-primary);
}

.bd-auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.bd-auth-divider::before,
.bd-auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--bd-gray-300);
}

.bd-auth-divider span {
    padding: 0 1rem;
    color: var(--bd-gray-500);
    font-size: 0.85rem;
}

/* ============================================================
   SIDEBAR (Filters / Admin)
   ============================================================ */
.bd-sidebar {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--bd-gray-200);
}

.bd-sidebar h6 {
    font-weight: 600;
    color: var(--bd-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bd-primary);
}

.bd-filter-group {
    margin-bottom: 1.5rem;
}

.bd-filter-group label {
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================================
   TAGS / CHIPS
   ============================================================ */
.bd-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bd-gray-100);
    color: var(--bd-gray-700);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0.2rem;
    transition: var(--bd-transition);
}

.bd-tag:hover {
    background: var(--bd-primary);
    color: var(--bd-white);
}

.bd-tag-saffron {
    background: rgba(255, 153, 51, 0.1);
    color: var(--bd-saffron-dark);
}

.bd-tag-saffron:hover {
    background: var(--bd-saffron);
    color: var(--bd-white);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.bd-text-primary {
    color: var(--bd-primary) !important;
}

.bd-text-saffron {
    color: var(--bd-saffron) !important;
}

.bd-text-gold {
    color: var(--bd-gold) !important;
}

.bd-bg-primary {
    background-color: var(--bd-primary) !important;
}

.bd-bg-saffron {
    background-color: var(--bd-saffron) !important;
}

.bd-bg-light {
    background-color: var(--bd-light-bg) !important;
}

.bd-bg-gradient {
    background: linear-gradient(135deg, var(--bd-primary), var(--bd-saffron)) !important;
}

.bd-border-primary {
    border-color: var(--bd-primary) !important;
}

.bd-rounded {
    border-radius: var(--bd-radius-lg) !important;
}

.bd-shadow {
    box-shadow: var(--bd-shadow) !important;
}

.bd-shadow-hover {
    box-shadow: var(--bd-shadow-hover) !important;
}

/* ============================================================
   TESTIMONIAL CARD
   ============================================================ */
.bd-testimonial-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    padding: 2rem;
    border: 1px solid var(--bd-gray-200);
    transition: var(--bd-transition);
    position: relative;
}

.bd-testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--bd-primary);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.bd-testimonial-card:hover {
    box-shadow: var(--bd-shadow);
    transform: translateY(-3px);
}

.bd-testimonial-card .bd-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bd-primary);
}

/* ============================================================
   BANNER / CTA SECTION
   ============================================================ */
.bd-cta-section {
    background: linear-gradient(135deg, var(--bd-primary) 0%, var(--bd-saffron) 100%);
    padding: 4rem 0;
    color: var(--bd-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bd-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.bd-cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.bd-cta-section p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Extra small devices (phones in portrait, less than 576px) */
@media (max-width: 575.98px) {
    .bd-hero {
        min-height: 380px;
    }

    .bd-hero h1 {
        font-size: 1.8rem;
    }

    .bd-hero p {
        font-size: 1rem;
    }

    .bd-section-heading h2 {
        font-size: 1.5rem;
    }

    .bd-product-card .bd-product-img {
        height: 180px;
    }

    .bd-auth-card {
        padding: 1.5rem;
    }

    .bd-footer .container .row > div {
        text-align: center;
    }

    .bd-footer h5::after {
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .bd-stat-card .bd-stat-value {
        font-size: 1.4rem;
    }

    .bd-form-card {
        padding: 1.25rem;
    }

    .bd-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .bd-hero h1 {
        font-size: 2.2rem;
    }

    .bd-hero {
        min-height: 420px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .bd-hero h1 {
        font-size: 2.5rem;
    }

    .bd-navbar .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem !important;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .bd-hero h1 {
        font-size: 3rem;
    }
}

/* Extra large (1400px+) */
@media (min-width: 1400px) {
    .bd-hero h1 {
        font-size: 3.5rem;
    }
}

/* Print Styles */
@media print {
    .bd-navbar,
    .bd-footer,
    .bd-scroll-top,
    .bd-toast-container {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.bd-fade-in {
    animation: bdFadeIn 0.6s ease forwards;
}

@keyframes bdFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bd-fade-in-delay-1 { animation-delay: 0.1s; }
.bd-fade-in-delay-2 { animation-delay: 0.2s; }
.bd-fade-in-delay-3 { animation-delay: 0.3s; }
.bd-fade-in-delay-4 { animation-delay: 0.4s; }

/* ============================================================
   MISC / OVERRIDES
   ============================================================ */

/* Override Bootstrap carousel indicators */
.carousel-indicators [data-bs-target] {
    background-color: var(--bd-saffron);
}

/* Smooth image placeholders */
.bd-img-placeholder {
    background: linear-gradient(135deg, var(--bd-gray-100), var(--bd-gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-gray-400);
    font-size: 2rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bd-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--bd-gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bd-primary);
}

/* Link reset inside cards */
.bd-product-card a,
.bd-hotel-card a,
.bd-category-card a {
    text-decoration: none;
    color: inherit;
}

/* Quantity input */
.bd-qty-input {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--bd-gray-300);
    border-radius: var(--bd-radius);
    overflow: hidden;
}

.bd-qty-input button {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bd-gray-100);
    color: var(--bd-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--bd-transition);
}

.bd-qty-input button:hover {
    background: var(--bd-primary);
    color: var(--bd-white);
}

.bd-qty-input input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--bd-gray-300);
    border-right: 1px solid var(--bd-gray-300);
    font-family: var(--bd-font);
    font-weight: 600;
}

.bd-qty-input input:focus {
    outline: none;
}

/* ============================================================
   HOMEPAGE SECTIONS (matching actual HTML class names)
   ============================================================ */

/* --- Hero Section (default, no banners) --- */
.hero-section {
    background: linear-gradient(135deg, var(--bd-primary) 0%, var(--bd-primary-dark) 40%, var(--bd-saffron) 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 250px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(19, 136, 8, 0.85), rgba(255, 153, 51, 0.65));
    z-index: 1;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.3rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--bd-gold);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-weight: 300;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* --- Section Headings --- */
.section-heading {
    position: relative;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bd-dark);
    margin-bottom: 0.3rem;
}

.section-heading p {
    color: var(--bd-gray-600);
    font-size: 1rem;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bd-primary), var(--bd-saffron));
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* --- Category Cards --- */
.category-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.35s ease;
    border: 1px solid var(--bd-gray-200);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--bd-primary), var(--bd-saffron));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(19, 136, 8, 0.12);
    border-color: transparent;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(19, 136, 8, 0.1), rgba(255, 153, 51, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--bd-primary);
    transition: all 0.35s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--bd-primary), var(--bd-saffron));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.category-card h5 {
    font-weight: 600;
    color: var(--bd-dark);
    font-size: 1rem;
}

.category-card p {
    font-size: 0.8rem;
    margin: 0;
}

.category-card a {
    color: inherit;
    text-decoration: none;
}

.category-card a:hover {
    color: inherit;
}

/* --- Feature Cards (Why Choose Us) --- */
.feature-card {
    background: #fff;
    border-radius: 12px;
    transition: all 0.35s ease;
    border: 1px solid var(--bd-gray-200);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--bd-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(19, 136, 8, 0.1), rgba(255, 153, 51, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--bd-primary);
    transition: all 0.35s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--bd-primary), var(--bd-saffron));
    color: #fff;
    transform: scale(1.1);
}

.feature-card h5 {
    font-weight: 600;
    color: var(--bd-dark);
}

/* --- Business Cards --- */
.business-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(19, 136, 8, 0.12);
}

.business-cover {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: var(--bd-gray-200);
    position: relative;
}

.business-cover::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.business-info {
    padding: 20px;
    text-align: center;
    position: relative;
}

.business-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    margin-top: -50px;
    margin-bottom: 10px;
    background: #fff;
}

.business-info h5 {
    font-weight: 600;
    color: var(--bd-dark);
    margin-bottom: 5px;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--bd-primary) 0%, var(--bd-primary-dark) 50%, var(--bd-saffron) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.cta-section h2 {
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-light {
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    color: var(--bd-primary);
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Homepage --- */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 400px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-description {
        font-size: 0.9rem;
    }
    .hero-buttons .btn {
        padding: 10px 22px;
        font-size: 0.8rem;
    }
    .section-heading h2 {
        font-size: 1.5rem;
    }
    .category-card {
        padding: 1.2rem 1rem;
    }
    .category-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    .category-card h5 {
        font-size: 0.85rem;
    }
    .business-cover {
        height: 120px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-buttons .btn-lg {
        font-size: 0.75rem;
        padding: 8px 18px;
    }
    .hero-buttons .btn.me-3 {
        margin-right: 0.5rem !important;
    }
}

/* ===== NAVBAR LOGO ===== */
.bd-nav-logo {
    height: 42px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.bd-footer-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

/* ===== HERO BANNER CAROUSEL ===== */
.bd-hero-carousel .carousel-item {
    height: auto;
}

.bd-banner-slide {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bd-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 136, 8, 0.7) 0%, rgba(255, 153, 51, 0.5) 100%);
    z-index: 1;
}

.bd-banner-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
}

.bd-banner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.bd-hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    opacity: 0.7;
}

.bd-hero-carousel .carousel-indicators button.active {
    background: var(--bd-gold);
    border-color: var(--bd-gold);
    opacity: 1;
}

.bd-hero-carousel .carousel-control-prev-icon,
.bd-hero-carousel .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    background-size: 50%;
}

/* Default Hero Logo */
.bd-hero-logo {
    height: 100px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== PROMOTIONAL BANNERS ===== */
.bd-promo-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--bd-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bd-promo-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bd-promo-banner img {
    transition: transform 0.4s ease;
}

.bd-promo-banner:hover img {
    transform: scale(1.03);
}

.bd-promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 15px 15px;
    color: #fff;
}

.bd-promo-overlay h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.bd-promo-overlay p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.85;
}

/* ===== RESPONSIVE BANNER ===== */
@media (max-width: 767.98px) {
    .bd-banner-slide {
        min-height: 350px;
    }
    .bd-banner-title {
        font-size: 1.8rem;
    }
    .bd-banner-subtitle {
        font-size: 1rem;
    }
    .bd-hero-logo {
        height: 70px;
    }
    .bd-nav-logo {
        height: 34px;
    }
}

/* ============================================================
   PRODUCT CARD - Exact Design System
   ============================================================ */

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(19, 136, 8, 0.15);
    border-color: var(--bd-primary);
}

/* --- Image Wrapper --- */
.product-card .product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--bd-gray-100);
    aspect-ratio: 1/1;
}

.product-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

/* --- Badges --- */
.product-card .badge-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #dc3545, #e74c60);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.product-card .badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--bd-primary), var(--bd-primary-light));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(19, 136, 8, 0.3);
}

.product-card .badge-discount + .badge-new,
.product-card .badge-new:not(:first-of-type) {
    top: 42px;
}

.product-card .badge-bestseller {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--bd-saffron), var(--bd-gold));
    color: #333;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(255, 153, 51, 0.3);
}

.product-card .badge-discount ~ .badge-bestseller {
    top: 42px;
}

/* --- Wishlist Button --- */
.product-card .wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--bd-gray-500);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-5px);
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-card .wishlist-btn:hover {
    background: #dc3545;
    color: #fff;
    transform: scale(1.1);
}

.product-card .wishlist-btn.active {
    background: #dc3545;
    color: #fff;
}

.product-card .wishlist-btn.active i {
    font-weight: 900;
}

/* --- Product Info --- */
.product-card .product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card .product-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bd-primary);
    margin-bottom: 4px;
}

.product-card .product-name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.product-card .product-name a {
    color: var(--bd-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card .product-name a:hover {
    color: var(--bd-primary);
}

/* --- Rating Stars --- */
.product-card .product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.product-card .product-rating .stars {
    display: flex;
    gap: 1px;
}

.product-card .product-rating .stars i {
    color: var(--bd-gold);
    font-size: 0.8rem;
}

.product-card .product-rating .stars .far.fa-star {
    color: var(--bd-gray-300);
}

.product-card .product-rating .review-count {
    font-size: 0.75rem;
    color: var(--bd-gray-500);
}

/* --- Price --- */
.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.product-card .price-current {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bd-primary);
    line-height: 1;
}

.product-card .price-original {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--bd-gray-500);
    text-decoration: line-through;
}

/* --- Add to Cart Button --- */
.product-card .btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border: 2px solid var(--bd-primary);
    background: transparent;
    color: var(--bd-primary);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--bd-font);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-card .btn-add-cart:hover {
    background: var(--bd-primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(19, 136, 8, 0.3);
}

.product-card .btn-add-cart:active {
    transform: translateY(0);
}

/* --- Responsive Product Cards --- */
@media (max-width: 575.98px) {
    .product-card .product-image-wrapper {
        aspect-ratio: 4/3;
    }
    .product-card .product-info {
        padding: 12px;
    }
    .product-card .product-name {
        font-size: 0.85rem;
        min-height: auto;
        -webkit-line-clamp: 2;
    }
    .product-card .price-current {
        font-size: 1rem;
    }
    .product-card .btn-add-cart {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    .product-card .wishlist-btn {
        opacity: 1;
        transform: translateY(0);
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    .product-card .badge-discount,
    .product-card .badge-new,
    .product-card .badge-bestseller {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

/* ============================================================
   LOCATION PAGE
   ============================================================ */
.bd-location-hero {
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--bd-primary-dark);
}

.bd-location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(19,136,8,0.85) 100%);
    z-index: 1;
}

.bd-location-hero .breadcrumb-item a {
    text-decoration: none;
}

/* ============================================================
   TEMPLE PAGE
   ============================================================ */
.bd-temple-hero {
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--bd-primary-dark);
}

.bd-temple-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(19,136,8,0.85) 100%);
    z-index: 1;
}

.bd-temple-hero .breadcrumb-item a {
    text-decoration: none;
}

/* ============================================================
   TEMPLE CARD (on location page)
   ============================================================ */
.bd-temple-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    transition: var(--bd-transition);
    border: 1px solid var(--bd-gray-200);
    height: 100%;
}

.bd-temple-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bd-shadow-hover);
    border-color: var(--bd-primary);
}

.bd-temple-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--bd-gray-100);
}

.bd-temple-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bd-temple-card:hover .bd-temple-card-img img {
    transform: scale(1.08);
}

.bd-temple-card-body {
    padding: 1.2rem;
}

.bd-temple-card-body h5 {
    font-weight: 600;
    color: var(--bd-dark);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* ============================================================
   TIMINGS CARD (temple sidebar)
   ============================================================ */
.bd-timings-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    box-shadow: var(--bd-shadow);
    border: 1px solid var(--bd-gray-200);
}

.bd-timings-card-header {
    background: linear-gradient(135deg, var(--bd-primary), var(--bd-primary-dark));
    color: var(--bd-white);
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
}

.bd-timings-card-body {
    padding: 1.25rem;
}

.bd-timing-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bd-gray-200);
}

.bd-timing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bd-timing-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bd-gray-600);
    margin-bottom: 0.25rem;
}

.bd-timing-value {
    font-size: 0.95rem;
    color: var(--bd-dark);
    font-weight: 500;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.bd-faq-section .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bd-dark);
}

.bd-faq-section .accordion-button:not(.collapsed) {
    background-color: rgba(19, 136, 8, 0.05);
    color: var(--bd-primary);
    box-shadow: none;
}

.bd-faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(19, 136, 8, 0.2);
}

.bd-faq-section .accordion-body {
    color: var(--bd-gray-700);
    line-height: 1.8;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.bd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.bd-gallery-item {
    border-radius: var(--bd-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.bd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bd-gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.bd-map-section iframe {
    display: block;
}

/* ============================================================
   INFO SECTION
   ============================================================ */
.bd-info-section .bd-content-block {
    line-height: 1.8;
    color: var(--bd-gray-700);
}

.bd-info-section .bd-content-block h3,
.bd-info-section .bd-content-block h4 {
    color: var(--bd-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.bd-info-section .bd-content-block ul,
.bd-info-section .bd-content-block ol {
    padding-left: 1.5rem;
}

.bd-info-section .bd-content-block p {
    margin-bottom: 1rem;
}

/* ============================================================
   RELATED TEMPLES (sidebar)
   ============================================================ */
.bd-related-temple-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bd-gray-200);
    text-decoration: none;
    color: var(--bd-dark);
    transition: var(--bd-transition);
}

.bd-related-temple-item:last-child {
    border-bottom: none;
}

.bd-related-temple-item:hover {
    color: var(--bd-primary);
}

.bd-related-temple-item h6 {
    font-size: 0.9rem;
    font-weight: 600;
}

.bd-related-temple-img {
    width: 60px;
    height: 60px;
    border-radius: var(--bd-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.bd-related-temple-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   LOCATION/TEMPLE RESPONSIVE
   ============================================================ */
@media (max-width: 767.98px) {
    .bd-location-hero,
    .bd-temple-hero {
        min-height: 300px;
        padding-bottom: 2rem;
    }

    .bd-location-hero h1,
    .bd-temple-hero h1 {
        font-size: 2rem;
    }

    .bd-temple-card-img {
        height: 160px;
    }

    .bd-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 575.98px) {
    .bd-location-hero h1,
    .bd-temple-hero h1 {
        font-size: 1.6rem;
    }

    .bd-location-hero,
    .bd-temple-hero {
        min-height: 250px;
    }
}

/* ============================================================
   MEGA MENU STYLES
   ============================================================ */

/* Mega dropdown container */
.bd-mega-dropdown {
    position: static !important;
}

.bd-mega-toggle {
    cursor: pointer;
}

.bd-mega-toggle .fa-chevron-down {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.bd-mega-dropdown:hover .bd-mega-toggle .fa-chevron-down,
.bd-mega-dropdown.show .bd-mega-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Mega menu panel */
.bd-mega-menu-panel {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    border: none;
    border-radius: 0 0 var(--bd-radius-lg) var(--bd-radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 28px 0;
    background: var(--bd-white);
    border-top: 3px solid var(--bd-saffron);
    margin-top: 0 !important;
    animation: bdMegaFadeIn 0.25s ease-out;
    overflow: hidden;
}

@keyframes bdMegaFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section column */
.bd-mega-section {
    padding: 0 20px;
    border-right: 1px solid var(--bd-gray-200);
}

.bd-mega-section:last-child {
    border-right: none;
}

.bd-mega-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bd-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bd-saffron);
    display: inline-block;
}

/* Menu links */
.bd-mega-links {
    margin: 0;
    padding: 0;
}

.bd-mega-links li {
    margin-bottom: 4px;
}

.bd-mega-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 12px;
    border-radius: var(--bd-radius);
    text-decoration: none;
    color: var(--bd-dark);
    transition: var(--bd-transition);
}

.bd-mega-link:hover {
    background: var(--bd-gray-100);
    color: var(--bd-primary);
    transform: translateX(4px);
}

.bd-mega-link-icon {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--bd-saffron);
    margin-top: 3px;
    flex-shrink: 0;
}

.bd-mega-link:hover .bd-mega-link-icon {
    color: var(--bd-primary);
}

.bd-mega-link-content {
    display: flex;
    flex-direction: column;
}

.bd-mega-link-title {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
}

.bd-mega-link-desc {
    font-size: 0.75rem;
    color: var(--bd-gray-600);
    line-height: 1.3;
    margin-top: 2px;
}

.bd-mega-link:hover .bd-mega-link-desc {
    color: var(--bd-gray-700);
}

.bd-mega-link-title .badge {
    font-size: 0.6rem;
    font-weight: 600;
    vertical-align: middle;
    padding: 2px 6px;
}

/* Desktop hover behavior */
@media (min-width: 992px) {
    .bd-mega-dropdown:hover > .bd-mega-menu-panel {
        display: block;
    }

    .bd-mega-dropdown > .bd-mega-menu-panel {
        display: none;
    }

    .bd-mega-dropdown.show > .bd-mega-menu-panel {
        display: block;
    }
}

/* Mobile responsive */
@media (max-width: 991.98px) {
    .bd-mega-menu-panel {
        position: static !important;
        box-shadow: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        padding: 12px 0;
        background: rgba(0, 0, 0, 0.15);
        animation: none;
    }

    .bd-mega-menu-panel .container {
        padding: 0;
    }

    .bd-mega-menu-panel .row {
        flex-direction: column;
    }

    .bd-mega-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 12px 16px;
    }

    .bd-mega-section:last-child {
        border-bottom: none;
    }

    .bd-mega-section-title {
        color: var(--bd-saffron);
        border-bottom-color: rgba(255, 255, 255, 0.2);
        font-size: 0.7rem;
    }

    .bd-mega-link {
        color: rgba(255, 255, 255, 0.8);
        padding: 6px 8px;
    }

    .bd-mega-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        transform: none;
    }

    .bd-mega-link-icon {
        color: var(--bd-saffron);
    }

    .bd-mega-link-desc {
        color: rgba(255, 255, 255, 0.5);
    }
}

/* ============================================================
   PREMIUM HOMEPAGE SECTIONS
   ============================================================ */

/* --- Section Header (Serif) --- */
.bd-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bd-section-header h2 {
    font-family: var(--bd-font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--bd-dark);
    margin-bottom: 0.5rem;
}

.bd-section-header p {
    color: var(--bd-gray-600);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

.bd-section-header::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--bd-deep-saffron), var(--bd-temple-gold));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* --- Trust Badges (below hero) --- */
.bd-trust-badges {
    background: var(--bd-white);
    border-bottom: 1px solid var(--bd-gray-200);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bd-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
}

.bd-trust-badge i {
    font-size: 1.4rem;
    color: var(--bd-deep-saffron);
}

.bd-trust-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bd-dark);
}

/* --- Destinations Section --- */
.bd-destinations-section {
    background: var(--bd-cream);
    padding: 3.5rem 0;
}

.bd-destination-card {
    position: relative;
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    height: 200px;
    display: block;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bd-destination-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.bd-destination-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bd-destination-card:hover .bd-destination-card-img {
    transform: scale(1.1);
}

.bd-destination-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.bd-destination-card-overlay h3 {
    font-family: var(--bd-font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.bd-destination-card-overlay p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bd-destination-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bd-deep-saffron), var(--bd-temple-gold));
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-destination-card-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Temples Section --- */
.bd-temples-section {
    padding: 3.5rem 0;
    background: var(--bd-white);
}

.bd-home-temple-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    border: 1px solid var(--bd-gray-200);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.bd-home-temple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--bd-deep-saffron);
    color: inherit;
}

.bd-home-temple-card-img {
    height: 150px;
    overflow: hidden;
    position: relative;
    background: var(--bd-gray-100);
}

.bd-home-temple-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bd-home-temple-card:hover .bd-home-temple-card-img img {
    transform: scale(1.08);
}

.bd-home-temple-card-img .bd-location-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.bd-home-temple-card-body {
    padding: 0.8rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bd-home-temple-card-body h5 {
    font-family: var(--bd-font-serif);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--bd-dark);
    margin-bottom: 0.5rem;
}

.bd-home-temple-card-body .bd-darshan-time {
    font-size: 0.8rem;
    color: var(--bd-gray-600);
    margin-top: auto;
}

.bd-home-temple-card-body .bd-darshan-time i {
    color: var(--bd-deep-saffron);
    margin-right: 0.3rem;
}

.bd-home-temple-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bd-krishna-blue), var(--bd-deep-saffron));
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-home-temple-card-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Counters Section --- */
.bd-counters-section {
    background: linear-gradient(135deg, var(--bd-deep-saffron) 0%, var(--bd-temple-gold) 100%);
    padding: 4rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bd-counters-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.bd-counters-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.bd-counter-item {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 1;
}

.bd-counter-item i {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.9;
}

.bd-counter-number {
    font-family: var(--bd-font-serif);
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.bd-counter-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* --- Travel / Plan Your Yatra --- */
.bd-travel-section {
    padding: 3.5rem 0;
    background: var(--bd-cream);
}

.bd-travel-card {
    background: var(--bd-white);
    border-radius: var(--bd-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid var(--bd-gray-200);
    border-top: 4px solid transparent;
    height: 100%;
}

.bd-travel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-top-color: var(--bd-deep-saffron);
}

.bd-travel-card i.bd-travel-icon {
    font-size: 2.5rem;
    color: var(--bd-deep-saffron);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.bd-travel-card:hover i.bd-travel-icon {
    transform: scale(1.15);
}

.bd-travel-card h5 {
    font-family: var(--bd-font-serif);
    font-weight: 600;
    color: var(--bd-dark);
    margin-bottom: 0.5rem;
}

.bd-travel-card p {
    font-size: 0.9rem;
    color: var(--bd-gray-600);
    margin-bottom: 1rem;
}

.bd-travel-card .bd-travel-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bd-deep-saffron);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bd-travel-card .bd-travel-link:hover {
    color: var(--bd-primary);
}

.bd-travel-card .bd-travel-link i {
    font-size: 0.75rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.bd-travel-card:hover .bd-travel-link i {
    transform: translateX(4px);
}

/* --- Festival Banner --- */
.bd-festival-banner {
    background: linear-gradient(135deg, var(--bd-deep-saffron) 0%, var(--bd-temple-gold) 100%);
    padding: 4rem 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bd-festival-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/><circle cx="25" cy="25" r="15" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 200px;
}

.bd-festival-banner h2 {
    font-family: var(--bd-font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.bd-festival-banner p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0.5rem auto 1.5rem;
    position: relative;
    z-index: 1;
}

.bd-festival-banner .btn {
    position: relative;
    z-index: 1;
}

/* --- FAQ Section (Homepage) --- */
.bd-home-faq-section {
    padding: 3.5rem 0;
    background: var(--bd-white);
}

.bd-home-faq-section .accordion-item {
    border: 1px solid var(--bd-gray-200);
    border-radius: var(--bd-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.bd-home-faq-section .accordion-button {
    font-family: var(--bd-font);
    font-weight: 600;
    font-size: 1rem;
    color: var(--bd-dark);
    padding: 1.1rem 1.25rem;
}

.bd-home-faq-section .accordion-button:not(.collapsed) {
    background: rgba(232, 117, 26, 0.06);
    color: var(--bd-deep-saffron);
    box-shadow: none;
}

.bd-home-faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8751A'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.bd-home-faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(232, 117, 26, 0.2);
}

.bd-home-faq-section .accordion-body {
    color: var(--bd-gray-700);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* --- Business CTA (enhanced) --- */
.bd-business-cta {
    background: linear-gradient(135deg, var(--bd-krishna-blue) 0%, var(--bd-primary-dark) 100%);
    padding: 3.5rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bd-business-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.bd-business-cta h2 {
    font-family: var(--bd-font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bd-business-cta p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.bd-business-cta .bd-cta-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.bd-business-cta .bd-cta-features li {
    display: inline-block;
    margin: 0.3rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.bd-business-cta .bd-cta-features li i {
    color: var(--bd-temple-gold);
    margin-right: 0.4rem;
}

/* --- Scroll Animation --- */
.bd-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.bd-animate-on-scroll.bd-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Premium Homepage Responsive --- */
@media (max-width: 991.98px) {
    .bd-section-header h2 {
        font-size: 2rem;
    }

    .bd-destination-card {
        height: 180px;
    }

    .bd-counter-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .bd-section-header h2 {
        font-size: 1.7rem;
    }

    .bd-section-header p {
        font-size: 0.9rem;
    }

    .bd-destinations-section,
    .bd-temples-section,
    .bd-travel-section,
    .bd-home-faq-section {
        padding: 2.5rem 0;
    }

    .bd-counters-section,
    .bd-festival-banner,
    .bd-business-cta {
        padding: 2.5rem 0;
    }

    .bd-destination-card {
        height: 160px;
    }

    .bd-destination-card-overlay h3 {
        font-size: 1rem;
    }

    .bd-home-temple-card-img {
        height: 130px;
    }

    .bd-about-section {
        padding: 2.5rem 0;
    }

    .bd-counter-number {
        font-size: 2rem;
    }

    .bd-counter-item i {
        font-size: 1.6rem;
    }

    .bd-trust-badge span {
        font-size: 0.8rem;
    }

    .bd-trust-badge i {
        font-size: 1.1rem;
    }

    .bd-festival-banner h2,
    .bd-business-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .bd-section-header h2 {
        font-size: 1.5rem;
    }

    .bd-destination-card {
        height: 150px;
    }

    .bd-counter-number {
        font-size: 1.8rem;
    }

    .bd-counter-label {
        font-size: 0.8rem;
    }

    .bd-travel-card {
        padding: 1.5rem 1rem;
    }

    .bd-business-cta .bd-cta-features li {
        display: block;
        margin: 0.4rem 0;
    }

    .bd-about-section .bd-about-image {
        max-height: 250px;
    }

    .bd-festival-slide {
        flex: 0 0 220px;
    }
}

/* --- About Section --- */
.bd-about-section {
    padding: 3.5rem 0;
    background: var(--bd-white);
}

.bd-about-heading {
    font-family: var(--bd-font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bd-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.bd-about-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bd-deep-saffron), var(--bd-temple-gold));
    border-radius: 2px;
}

.bd-about-section p {
    color: var(--bd-gray-700);
    line-height: 1.8;
    font-size: 0.95rem;
}

.bd-about-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--bd-radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* --- Products Section --- */
.bd-products-section {
    padding: 3.5rem 0;
}

/* --- Businesses Section --- */
.bd-businesses-section {
    padding: 3.5rem 0;
    background: var(--bd-white);
}

/* --- Festivals Section (with slider) --- */
.bd-festivals-section {
    padding: 3.5rem 0;
    background: var(--bd-cream);
}

.bd-festival-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--bd-deep-saffron) var(--bd-gray-200);
}

.bd-festival-slider::-webkit-scrollbar {
    height: 6px;
}

.bd-festival-slider::-webkit-scrollbar-track {
    background: var(--bd-gray-200);
    border-radius: 3px;
}

.bd-festival-slider::-webkit-scrollbar-thumb {
    background: var(--bd-deep-saffron);
    border-radius: 3px;
}

.bd-festival-slide {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    background: var(--bd-white);
    border: 1px solid var(--bd-gray-200);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.bd-festival-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--bd-deep-saffron);
    color: inherit;
}

.bd-festival-slide-img {
    height: 160px;
    overflow: hidden;
    background: var(--bd-gray-100);
}

.bd-festival-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bd-festival-slide:hover .bd-festival-slide-img img {
    transform: scale(1.08);
}

.bd-festival-slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bd-deep-saffron), var(--bd-temple-gold));
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-festival-slide-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.bd-festival-slide-info {
    padding: 0.75rem 1rem;
}

.bd-festival-slide-info h5 {
    font-family: var(--bd-font-serif);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bd-dark);
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bd-festival-slide-meta {
    font-size: 0.78rem;
    color: var(--bd-gray-600);
}

.bd-festival-slide-meta i {
    color: var(--bd-deep-saffron);
}

/* ===== BLOG STYLES ===== */

/* Blog Hero */
.bd-blog-hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 50%, #52796f 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

/* Blog Card */
.bd-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bd-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.bd-blog-card-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
}

.bd-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bd-blog-card:hover .bd-blog-card-img img {
    transform: scale(1.05);
}

.bd-blog-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bd-blog-card-body h5 {
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Category Badge */
.bd-blog-category-badge {
    display: inline-block;
    background: #e65100;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.bd-blog-card-img .bd-blog-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
}

/* Blog Meta */
.bd-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: #6c757d;
}

.bd-blog-meta span {
    white-space: nowrap;
}

/* Blog Detail Header / Banner */
.bd-blog-detail-header {
    max-height: 350px;
    overflow: hidden;
}

.bd-blog-detail-header img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Blog Content Typography */
.bd-blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.bd-blog-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.bd-blog-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d6a4f;
}

.bd-blog-content p {
    margin-bottom: 1.2rem;
}

.bd-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.bd-blog-content blockquote {
    border-left: 4px solid #e65100;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #fff8f0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.bd-blog-content ul, .bd-blog-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.bd-blog-content li {
    margin-bottom: 0.5rem;
}

/* Blog Tags */
.bd-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bd-blog-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    color: #555;
    border-radius: 20px;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.2s;
}

.bd-blog-tag:hover,
.bd-blog-tag.active {
    background: #e65100;
    color: #fff;
}

/* Blog Navigation (Prev/Next) */
.bd-blog-nav a {
    color: #1a472a;
}

.bd-blog-nav a:hover {
    color: #e65100;
}

/* Blog Sidebar */
.bd-blog-sidebar {
    position: sticky;
    top: 100px;
}

.bd-blog-sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
}

.bd-blog-sidebar-widget h6 {
    color: #1a472a;
    border-bottom: 2px solid #e65100;
    padding-bottom: 0.5rem;
}

.bd-blog-sidebar-widget ul a {
    transition: color 0.2s;
}

.bd-blog-sidebar-widget ul a:hover {
    color: #e65100 !important;
}

/* Blog Pagination */
.bd-blog-pagination .page-link {
    border: none;
    color: #1a472a;
    margin: 0 2px;
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
}

.bd-blog-pagination .page-item.active .page-link {
    background: #e65100;
    color: #fff;
}

.bd-blog-pagination .page-link:hover {
    background: #f0f0f0;
    color: #e65100;
}

/* Blog Share Buttons */
.bd-blog-share .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Blog Related */
.bd-blog-related {
    max-width: 100%;
}

/* Responsive */
@media (max-width: 991.98px) {
    .bd-blog-hero {
        padding: 3rem 0 2rem;
    }

    .bd-blog-sidebar {
        position: static;
        margin-top: 2rem;
    }

    .bd-blog-detail-header,
    .bd-blog-detail-header img {
        max-height: 260px;
        height: 260px;
    }
}

@media (max-width: 767.98px) {
    .bd-blog-detail-header,
    .bd-blog-detail-header img {
        max-height: 220px;
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .bd-blog-hero h1 {
        font-size: 1.6rem;
    }

    .bd-blog-content {
        font-size: 1rem;
    }

    .bd-blog-detail-header,
    .bd-blog-detail-header img {
        max-height: 180px;
        height: 180px;
    }

    .bd-blog-meta {
        font-size: 0.78rem;
        gap: 0.5rem;
    }
}

/* Blog Sidebar - Location & Temple Links */
.bd-blog-sidebar-nav {
    position: sticky;
    top: 100px;
}

.bd-blog-sidebar-nav h6 {
    color: #1a472a;
    border-bottom: 2px solid #e65100;
    padding-bottom: 0.5rem;
}

.bd-blog-sidebar-nav .bd-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.bd-blog-sidebar-nav .bd-sidebar-link:hover {
    background: #f0f7f0;
    color: #1a472a;
    transform: translateX(4px);
}

.bd-blog-sidebar-nav .bd-sidebar-link i {
    color: #e65100;
    width: 16px;
    text-align: center;
}

.bd-blog-sidebar-nav .bd-sidebar-link img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 0.25rem;
}

/* Mobile: temples/locations shown below article */
.bd-blog-mobile-sidebar {
    display: none;
}

.bd-mobile-scroll-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
}

.bd-mobile-scroll-row::-webkit-scrollbar {
    height: 4px;
}

.bd-mobile-scroll-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.bd-mobile-scroll-card {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #333;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.bd-mobile-scroll-card:hover {
    color: #1a472a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.bd-mobile-scroll-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.375rem;
}

.bd-mobile-scroll-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7f0;
    border-radius: 0.375rem;
    color: #e65100;
    font-size: 1.25rem;
}

/* Right sidebar on blog listing - also handle sidebar link styles */
.bd-blog-sidebar .bd-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    border-radius: 0.375rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.88rem;
}

.bd-blog-sidebar .bd-sidebar-link:hover {
    background: #f0f7f0;
    color: #1a472a;
    transform: translateX(3px);
}

.bd-blog-sidebar .bd-sidebar-link i {
    color: #e65100;
    width: 16px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .bd-blog-mobile-sidebar {
        display: block;
    }
}

/* ==========================================
   Blog Detail Page - 2-Column Layout
   ========================================== */

/* Blog sidebar — CSS sticky (parent col stretches, inner div sticks) */
.bd-blog-detail-sidebar {
    position: sticky;
    top: 90px;
    padding-left: 0.5rem;
}

/* Blog sidebar uses same .bd-sidebar-widget classes as shared sidebar */
.bd-blog-detail-sidebar .bd-blog-sidebar-widget {
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.bd-blog-detail-sidebar .bd-blog-sidebar-widget h6 {
    color: #1a472a;
    border-bottom: 2px solid #e65100;
    padding-bottom: 0.4rem;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}

/* Popular post sidebar item */
.bd-sidebar-popular-post {
    align-items: flex-start !important;
}

.bd-sidebar-post-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.bd-sidebar-post-title {
    font-weight: 500;
    font-size: 0.82rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Inline TOC (mobile) */
.bd-toc-container {
    background: #f8fdf8;
    border-left: 4px solid #e65100;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.bd-toc-container h6 {
    color: #1a472a;
}

.bd-toc-container nav a {
    display: block;
    padding: 0.3rem 0;
    color: #555;
    text-decoration: none;
    font-size: 0.88rem;
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}

.bd-toc-container nav a:last-child {
    border-bottom: none;
}

.bd-toc-container nav a:hover {
    color: #e65100;
}

/* Sidebar TOC links */
.bd-toc-sidebar a.bd-toc-link {
    display: block;
    padding: 0.35rem 0.75rem;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    line-height: 1.4;
}

.bd-toc-sidebar a.bd-toc-link:hover {
    color: #1a472a;
    border-left-color: #ddd;
    background: #fafafa;
}

.bd-toc-sidebar a.bd-toc-link.active {
    color: #e65100;
    border-left-color: #e65100;
    background: #fff8f0;
    font-weight: 600;
}

/* Related Content Cards (bottom sections) */
.bd-blog-related-section .bd-section-heading {
    margin-bottom: 1.5rem;
}

.bd-related-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    background: #fff;
    height: 100%;
}

.bd-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.bd-related-card-img {
    height: 140px;
    overflow: hidden;
}

.bd-related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.bd-related-card:hover .bd-related-card-img img {
    transform: scale(1.05);
}

.bd-related-card-body {
    padding: 0.75rem 1rem;
}

.bd-related-card-body h6 {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* (responsive for .bd-blog-detail-sidebar handled in shared sidebar section below) */

/* ==========================================
   Shared Page Sidebar (Location/Temple/Festival)
   ========================================== */

/* Page sidebar — CSS sticky (parent col stretches, inner div sticks) */
.bd-page-sidebar {
    position: sticky;
    top: 90px;
}

/* Sidebar widget (shared across all pages) — compact */
.bd-sidebar-widget {
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.bd-sidebar-widget-title {
    color: #1a472a;
    border-bottom: 2px solid #e65100;
    padding-bottom: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Sidebar links (shared) — compact */
.bd-sidebar-widget .bd-sidebar-link,
.bd-blog-detail-sidebar .bd-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.3rem;
    color: #333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    font-size: 0.83rem;
    line-height: 1.3;
}

.bd-sidebar-widget .bd-sidebar-link:hover,
.bd-blog-detail-sidebar .bd-sidebar-link:hover {
    background: #f0f7f0;
    color: #1a472a;
}

.bd-sidebar-widget .bd-sidebar-link i,
.bd-blog-detail-sidebar .bd-sidebar-link i {
    color: #e65100;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.bd-sidebar-widget .bd-sidebar-link img,
.bd-blog-detail-sidebar .bd-sidebar-link img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 0.2rem;
    flex-shrink: 0;
}

/* Sidebar info card — compact */
.bd-sidebar-info-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    background: #fff;
}

.bd-sidebar-info-header {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
    color: #fff;
    padding: 0.65rem 0.85rem;
    font-weight: 600;
    font-size: 0.88rem;
}

.bd-sidebar-info-body {
    padding: 0.25rem 0;
}

.bd-sidebar-info-item {
    padding: 0.4rem 0.85rem;
    border-bottom: 1px solid #f5f5f5;
}

.bd-sidebar-info-item:last-child {
    border-bottom: none;
}

.bd-sidebar-info-label {
    font-size: 0.72rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.1rem;
}

.bd-sidebar-info-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

/* Sticky column — no align-self override; column stretches to full row height,
   giving the inner sticky sidebar room to stick while scrolling */

/* Responsive: reset sidebar on mobile */
@media (max-width: 991.98px) {
    .bd-page-sidebar,
    .bd-blog-detail-sidebar {
        position: static;
        top: auto;
        padding-left: 0;
    }
}

/* ============================================================
   GOOGLE TRANSLATE WIDGET
   ============================================================ */

/* Hide Google Translate default bar and artifacts */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

body { top: 0 !important; }

.skiptranslate { display: none !important; }

/* Custom language switcher button */
.bd-lang-switcher {
    position: relative;
}

.bd-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: var(--bd-radius);
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--bd-font);
    cursor: pointer;
    transition: var(--bd-transition);
    white-space: nowrap;
}

.bd-lang-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.bd-lang-btn i {
    font-size: 0.9rem;
}

.bd-lang-btn .bd-lang-arrow {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.bd-lang-switcher.open .bd-lang-arrow {
    transform: rotate(180deg);
}

/* Dropdown panel */
.bd-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: var(--bd-radius);
    box-shadow: var(--bd-shadow-hover);
    z-index: 1060;
    padding: 6px 0;
    border: 1px solid var(--bd-gray-200);
}

.bd-lang-switcher.open .bd-lang-dropdown {
    display: block;
    animation: bdLangFadeIn 0.2s ease;
}

@keyframes bdLangFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bd-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 16px;
    border: none;
    background: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bd-dark);
    font-family: var(--bd-font);
    cursor: pointer;
    transition: var(--bd-transition);
    text-align: left;
}

.bd-lang-item:hover {
    background: var(--bd-gray-100);
    color: var(--bd-primary);
}

.bd-lang-item.active {
    color: var(--bd-primary);
    font-weight: 600;
    background: rgba(19, 136, 8, 0.06);
}

.bd-lang-btn i.fa-globe {
    font-size: 1rem;
}

/* Mobile: show as compact icon-only on very small screens */
@media (max-width: 575.98px) {
    .bd-lang-btn .bd-lang-label {
        display: none;
    }
    .bd-lang-btn {
        padding: 5px 8px;
    }
    .bd-lang-dropdown {
        right: -10px;
        min-width: 160px;
    }
}

/* Navbar collapsed: full-width on mobile nav */
@media (max-width: 991.98px) {
    .bd-lang-switcher {
        width: 100%;
        margin-top: 0.5rem;
    }
    .bd-lang-btn {
        width: 100%;
        justify-content: center;
    }
    .bd-lang-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid var(--bd-gray-200);
        margin-top: 4px;
        border-radius: var(--bd-radius);
    }
}
