﻿/* ============================================================
   📌 GLOBAL ROOT VARIABLES
   ============================================================ */

:root {
    /* Primary Colors */
    --bp-primary: #B7410E;
    --bp-primary-dark: #8E2A07;
    --bp-primary-light: #D45A1E;
    --bp-gold: #E5C068;
    --bp-gold-dark: #C4A040;
    --bp-gold-light: #F0D080;
    /* Background & Surface */
    --bp-bg: #FDF8F0;
    --bp-surface: #FFFFFF;
    --bp-text: #2D2D2D;
    --bp-text-light: #6B6B6B;
    --bp-border: #E8E0D5;
    /* Status Colors */
    --bp-success: #059669;
    --bp-success-bg: #D1FAE5;
    --bp-error: #DC2626;
    --bp-error-bg: #FEE2E2;
    --bp-warning: #D97706;
    --bp-warning-bg: #FEF3C7;
    /* Muhurt Classifications */
    --bp-auspicious: #059669;
    --bp-auspicious-bg: rgba(5, 150, 105, 0.08);
    --bp-highly: #B7410E;
    --bp-highly-bg: rgba(183, 65, 14, 0.08);
    --bp-neutral: #6B6B6B;
    --bp-neutral-bg: rgba(107, 107, 107, 0.08);
    --bp-inauspicious: #DC2626;
    --bp-inauspicious-bg: rgba(220, 38, 38, 0.08);
    --bp-retrograde-bg: rgba(220, 38, 38, 0.06);
    /* Shadows */
    --bp-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --bp-shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --bp-shadow-lg: 0 8px 25px rgba(0,0,0,0.25);
    --bp-shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    /* Radius */
    --bp-radius: 20px;
    --bp-radius-sm: 12px;
    --bp-radius-lg: 16px;
    /* Transitions */
    --bp-transition: all 0.3s ease;
}


/* ============================================================
   📌 GLOBAL ANIMATIONS
   ============================================================ */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes bp-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bp-footer-shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bp-shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}

.bp-spin {
    animation: bp-spin 1s linear infinite;
    display: inline-block;
}


/* ============================================================
   📌 UTILITY CLASSES
   ============================================================ */

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.min-vh-100 {
    min-height: 100vh;
}

.bg-light {
    background-color: #f8f9fa;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.w-100 {
    width: 100%;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1.5rem;
}


/* ============================================================
   📌 PAGE LAYOUT - UNIFIED
   ============================================================ */

/* --- Page Container --- */
.bp-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-page-narrow {
    max-width: 900px;
}

.bp-page-wide {
    max-width: 1400px;
}

/* --- Page Header --- */
.bp-page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bp-page-header-icon {
    font-size: 3rem;
    color: var(--bp-primary);
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.bp-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

    .bp-page-title:focus,
    .bp-page-title:focus-visible {
        outline: none !important;
        box-shadow: none !important;
    }

    .bp-page-title i {
        color: var(--bp-primary);
    }

.bp-page-subtitle {
    color: var(--bp-text-light);
    font-size: 0.9rem;
}


/* ============================================================
   📌 GRID & CARDS - UNIFIED
   ============================================================ */

/* --- Grid --- */
.bp-grid {
    display: grid;
    gap: 1.5rem;
}

.bp-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.bp-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.bp-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.bp-grid-auto {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.bp-grid-box {
    grid-template-columns: 1fr 1fr;
}

.bp-grid-special {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* --- Card --- */
.bp-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    transition: var(--bp-transition);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
}

    .bp-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
    }

.bp-card-inner {
    padding: 1.5rem 1rem;
    text-align: center;
}

.bp-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bp-transition);
}

.bp-card:hover .bp-card-icon {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(183, 65, 14, 0.3);
}

.bp-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.bp-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
}

.bp-card:hover .bp-card-title {
    color: var(--bp-primary);
}

.bp-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bp-primary);
    font-size: 0.75rem;
    transition: var(--bp-transition);
}

.bp-card:hover .bp-card-arrow {
    gap: 0.75rem;
}

.bp-card-arrow i {
    transition: transform 0.3s ease;
}

.bp-card:hover .bp-card-arrow i {
    transform: translateX(4px);
}


/* ============================================================
   📌 PLANET CARDS
   ============================================================ */

.bp-planet-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    cursor: pointer;
    transition: var(--bp-transition);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
    position: relative;
}

    .bp-planet-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--bp-primary), var(--bp-gold));
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
    }

    .bp-planet-card:hover::after {
        transform: scaleX(1);
    }

    .bp-planet-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
    }

.bp-planet-card-inner {
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bp-planet-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bp-transition);
    box-shadow: 0 4px 12px rgba(183, 65, 14, 0.2);
}

.bp-planet-card:hover .bp-planet-icon {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(183, 65, 14, 0.3);
}

.bp-planet-icon i {
    font-size: 2rem;
    color: white;
}

.bp-planet-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.bp-planet-card:hover .bp-planet-name {
    color: var(--bp-primary);
}


/* ============================================================
   📌 RASHI & NAKSHATRA GRIDS
   ============================================================ */

/* --- Rashi --- */
.bp-rashi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-rashi-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bp-rashi-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.bp-rashi-subtitle {
    color: var(--bp-text-light);
    font-size: 0.9rem;
}

.bp-rashi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.bp-rashi-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    cursor: pointer;
    transition: var(--bp-transition);
    overflow: hidden;
}

    .bp-rashi-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
        background: linear-gradient(135deg, var(--bp-surface) 0%, rgba(183, 65, 14, 0.02) 100%);
    }

.bp-rashi-card-inner {
    padding: 1rem 0.5rem;
    text-align: center;
}

.bp-rashi-icon-wrapper {
    width: 55px;
    height: 55px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bp-transition);
}

.bp-rashi-card:hover .bp-rashi-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(183, 65, 14, 0.3);
}

.bp-rashi-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.bp-rashi-name {
    margin-bottom: 0.5rem;
}

.bp-rashi-hindi {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bp-text);
    display: block;
}

.bp-rashi-english {
    font-size: 0.65rem;
    color: var(--bp-text-light);
}

.bp-rashi-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bp-primary);
    font-size: 0.7rem;
    transition: var(--bp-transition);
}

.bp-rashi-card:hover .bp-rashi-card-arrow {
    gap: 0.75rem;
}

.bp-rashi-card-arrow i {
    transition: transform 0.3s ease;
}

.bp-rashi-card:hover .bp-rashi-card-arrow i {
    transform: translateX(4px);
}

/* --- Nakshatra --- */
.bp-nakshatra-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-nakshatra-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bp-nakshatra-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.bp-nakshatra-subtitle {
    color: var(--bp-text-light);
    font-size: 0.9rem;
}

.bp-nakshatra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.bp-nakshatra-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    cursor: pointer;
    transition: var(--bp-transition);
    overflow: hidden;
}

    .bp-nakshatra-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
        background: linear-gradient(135deg, var(--bp-surface) 0%, rgba(183, 65, 14, 0.02) 100%);
    }

.bp-nakshatra-card-inner {
    padding: 1rem 0.5rem;
    text-align: center;
}

.bp-nakshatra-icon-wrapper {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bp-transition);
}

.bp-nakshatra-card:hover .bp-nakshatra-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(183, 65, 14, 0.3);
}

.bp-nakshatra-icon-wrapper i {
    font-size: 1.4rem;
    color: white;
}

.bp-nakshatra-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bp-text);
    transition: color 0.2s ease;
}

.bp-nakshatra-card:hover .bp-nakshatra-name {
    color: var(--bp-primary);
}

.bp-nakshatra-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bp-border);
    color: var(--bp-text-light);
    font-size: 0.75rem;
}


/* ============================================================
   📌 BOX GRID COMPONENT
   ============================================================ */

.bp-box-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
}

.bp-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: rgba(183, 65, 14, 0.03);
    border-bottom: 1px solid var(--bp-border);
}

.bp-box-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .bp-box-header-left i {
        font-size: 1.2rem;
        color: var(--bp-primary);
    }

    .bp-box-header-left h3 {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--bp-text);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .bp-box-header-left h3 span {
            font-size: 0.7rem;
            color: var(--bp-text-light);
            font-weight: normal;
        }

.bp-box-grid {
    display: grid;
    gap: 0.6rem;
    padding: 0.8rem;
}

.bp-box-grid-1 {
    grid-template-columns: 1fr;
}

.bp-box-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.bp-box-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.bp-box-item {
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    padding: 0.7rem 0.9rem;
    transition: var(--bp-transition);
    position: relative;
    border-left: 4px solid var(--bp-primary);
}

    .bp-box-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--bp-shadow);
    }

    .bp-box-item.auspicious {
        border-left: 4px solid var(--bp-auspicious);
    }

    .bp-box-item.highly-auspicious {
        border-left: 4px solid var(--bp-highly);
    }

    .bp-box-item.neutral {
        border-left: 4px solid var(--bp-neutral);
    }

    .bp-box-item.inauspicious {
        border-left: 4px solid var(--bp-inauspicious);
    }

.bp-box-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}

.bp-box-seq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--bp-surface);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--bp-primary);
    border: 1px solid var(--bp-border);
}

.bp-box-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bp-text);
    flex: 1;
}

.bp-box-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 600;
    white-space: nowrap;
}

    .bp-box-badge.auspicious {
        background: var(--bp-auspicious-bg);
        color: var(--bp-auspicious);
    }

    .bp-box-badge.highly-auspicious {
        background: var(--bp-highly-bg);
        color: var(--bp-highly);
    }

    .bp-box-badge.neutral {
        background: var(--bp-neutral-bg);
        color: var(--bp-neutral);
    }

    .bp-box-badge.inauspicious {
        background: var(--bp-inauspicious-bg);
        color: var(--bp-inauspicious);
    }

.bp-box-item-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bp-box-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--bp-text);
}

    .bp-box-time i {
        color: var(--bp-primary);
        font-size: 0.75rem;
    }

.bp-box-time-sep {
    color: var(--bp-text-light);
    font-weight: 300;
}

.bp-box-duration {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--bp-text-light);
}

    .bp-box-duration i {
        color: var(--bp-primary);
        font-size: 0.7rem;
    }

.bp-box-ad {
    grid-column: 1 / -1;
    padding: 0.3rem 0;
    text-align: center;
    max-height: 120px;
    overflow: hidden;
}


/* ============================================================
   📌 STATS GRID
   ============================================================ */

.bp-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bp-stat-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    padding: 0.8rem 0.5rem;
    text-align: center;
    transition: var(--bp-transition);
}

    .bp-stat-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--bp-shadow);
        border-color: var(--bp-gold);
    }

.bp-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bp-primary);
    line-height: 1.2;
}

.bp-stat-label {
    font-size: 0.7rem;
    color: var(--bp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


/* ============================================================
   📌 SPECIAL MUHURT SECTION
   ============================================================ */

.bp-special-section {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.bp-special-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: rgba(183, 65, 14, 0.03);
    border-bottom: 1px solid var(--bp-border);
}

    .bp-special-header i {
        font-size: 1.2rem;
        color: var(--bp-primary);
    }

    .bp-special-header h3 {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--bp-text);
        margin: 0;
    }

.bp-special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.bp-special-card {
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    padding: 0.8rem;
    transition: var(--bp-transition);
}

    .bp-special-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--bp-shadow);
        border-color: var(--bp-gold);
    }

    .bp-special-card.auspicious {
        border-left: 3px solid var(--bp-auspicious);
    }

    .bp-special-card.highly-auspicious {
        border-left: 3px solid var(--bp-highly);
    }

    .bp-special-card.neutral {
        border-left: 3px solid var(--bp-neutral);
    }

    .bp-special-card.inauspicious {
        border-left: 3px solid var(--bp-inauspicious);
    }

.bp-special-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.bp-special-icon {
    font-size: 1.2rem;
}

.bp-special-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bp-text);
    flex: 1;
}

.bp-special-seq {
    background: var(--bp-bg);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bp-primary);
}

.bp-special-times {
    margin-bottom: 0.6rem;
}

.bp-time-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    padding: 0.2rem 0;
    color: var(--bp-text);
}

.bp-special-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--bp-border);
}


/* ============================================================
   📌 CURRENT TIME CARD
   ============================================================ */

.bp-current-time-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    padding: 1rem;
    text-align: center;
}

.bp-current-time-label {
    font-size: 0.7rem;
    color: var(--bp-text-light);
    margin-bottom: 0.25rem;
}

.bp-current-time-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bp-text);
}


/* ============================================================
   📌 ECLIPSE CARDS
   ============================================================ */

.bp-eclipse-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: var(--bp-transition);
    box-shadow: var(--bp-shadow);
}

    .bp-eclipse-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--bp-shadow-hover);
    }

.bp-eclipse-total {
    border-left: 4px solid var(--bp-primary);
}

.bp-eclipse-partial {
    border-left: 4px solid var(--bp-gold);
}

.bp-eclipse-penumbral {
    border-left: 4px solid #d1ccc4;
}

.bp-eclipse-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background: rgba(183, 65, 14, 0.03);
    border-bottom: 1px solid var(--bp-border);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bp-eclipse-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(183, 65, 14, 0.1);
    color: var(--bp-primary);
}

.bp-eclipse-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--bp-text-light);
    background: var(--bp-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.bp-eclipse-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
}

.bp-eclipse-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bp-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--bp-border);
}

    .bp-detail-row:last-child {
        border-bottom: none;
    }

.bp-detail-label {
    font-size: 0.85rem;
    color: var(--bp-text-light);
}

.bp-detail-value {
    font-size: 0.85rem;
    color: var(--bp-text);
    font-weight: 600;
}

.bp-highlight-row .bp-detail-value {
    color: var(--bp-primary);
    font-weight: 700;
}

.bp-magnitude-row .bp-detail-value {
    color: var(--bp-gold-dark);
}

.bp-note-box {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f8f4ef;
    border-radius: 6px;
    margin-top: 0.25rem;
    border-left: 3px solid var(--bp-primary);
}

    .bp-note-box i {
        color: var(--bp-primary);
        font-size: 1rem;
        margin-top: 0.1rem;
    }

.bp-note-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bp-primary);
}

.bp-note-text {
    font-size: 0.8rem;
    color: var(--bp-text);
}

.bp-eclipse-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.bp-phase-card {
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    padding: 0.6rem;
    text-align: center;
    border: 1px solid var(--bp-border);
    transition: var(--bp-transition);
}

    .bp-phase-card:hover {
        transform: translateY(-2px);
        border-color: var(--bp-primary);
    }

.bp-phase-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bp-text-light);
    text-transform: uppercase;
}

.bp-phase-image {
    width: 100%;
    height: auto;
    max-height: 130px;
    object-fit: contain;
}


/* ============================================================
   📌 TRANSIT CARDS
   ============================================================ */

.bp-transit-box-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
    margin-bottom: 1.5rem;
}

.bp-transit-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.8rem;
}

.bp-transit-box-item {
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    padding: 0.7rem 0.9rem;
    transition: var(--bp-transition);
    position: relative;
    border-left: 4px solid var(--bp-primary);
}

    .bp-transit-box-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--bp-shadow);
    }

    .bp-transit-box-item.retrograde {
        border-left: 4px solid var(--bp-inauspicious);
        background: var(--bp-retrograde-bg);
    }

.bp-transit-box-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}

.bp-transit-box-seq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--bp-surface);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--bp-primary);
    border: 1px solid var(--bp-border);
}

.bp-transit-box-planet {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bp-text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

    .bp-transit-box-planet i {
        color: var(--bp-primary);
    }

.bp-transit-box-charan {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.7rem;
    color: var(--bp-text);
    margin-left: auto;
}

.bp-transit-box-charan-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(183, 65, 14, 0.1);
    color: var(--bp-primary);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0 4px;
}

.bp-status-direct {
    color: var(--bp-auspicious);
}

.bp-status-retrograde {
    color: var(--bp-inauspicious);
}

.bp-retrograde-summary {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    padding: 1.5rem;
    box-shadow: var(--bp-shadow);
    border: 1px solid var(--bp-inauspicious);
    margin-top: 1.5rem;
}

.bp-retrograde-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}


/* ============================================================
   📌 SUN & MOON
   ============================================================ */

.bp-sunmoon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-sunmoon-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bp-sunmoon-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .bp-sunmoon-title i {
        color: var(--bp-primary);
    }

.bp-sunmoon-subtitle {
    color: var(--bp-text-light);
    font-size: 0.9rem;
}

.bp-sunmoon-box-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
    margin-bottom: 1.5rem;
}

.bp-sunmoon-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: rgba(183, 65, 14, 0.03);
    border-bottom: 1px solid var(--bp-border);
}

.bp-sunmoon-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    padding: 0.8rem;
}

.bp-sunmoon-box-item {
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    padding: 0.7rem 0.9rem;
    transition: var(--bp-transition);
    position: relative;
    border-left: 4px solid var(--bp-primary);
}

    .bp-sunmoon-box-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--bp-shadow);
    }

.bp-sunmoon-box-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}

.bp-sunmoon-box-seq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--bp-surface);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--bp-primary);
    border: 1px solid var(--bp-border);
}

.bp-sunmoon-box-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.bp-sunmoon-box-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--bp-text);
    flex: 1;
}

.bp-sunmoon-box-item-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 0.3rem;
    border-top: 1px dashed var(--bp-border);
}

.bp-sunmoon-box-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--bp-primary);
    font-weight: 600;
}

    .bp-sunmoon-box-time i {
        color: var(--bp-primary);
        font-size: 0.7rem;
    }

.bp-sunmoon-box-utc {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    color: var(--bp-text-light);
}

    .bp-sunmoon-box-utc i {
        color: var(--bp-gold);
        font-size: 0.6rem;
    }


/* ============================================================
   📌 ASTUDAY
   ============================================================ */

.bp-astuday-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-astuday-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bp-astuday-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .bp-astuday-title i {
        color: var(--bp-primary);
    }

.bp-astuday-box-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
    margin-bottom: 1.5rem;
}

.bp-astuday-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.8rem;
}

.bp-astuday-box-item {
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    padding: 0.7rem 0.9rem;
    transition: var(--bp-transition);
    position: relative;
    border-left: 4px solid var(--bp-primary);
}

    .bp-astuday-box-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--bp-shadow);
    }

.bp-astuday-box-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}

.bp-astuday-box-seq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--bp-surface);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bp-primary);
    border: 1px solid var(--bp-border);
}

.bp-astuday-box-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.bp-astuday-box-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bp-text);
    flex: 1;
}

.bp-astuday-box-status {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

    .bp-astuday-box-status.active {
        background: #FEF3C7;
        color: var(--bp-warning);
    }

    .bp-astuday-box-status.inactive {
        background: #D1FAE5;
        color: #10B981;
    }

.bp-astuday-box-item-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 0.3rem;
    border-top: 1px dashed var(--bp-border);
}

.bp-astuday-box-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--bp-primary);
    font-weight: 600;
}

    .bp-astuday-box-time i {
        color: var(--bp-primary);
        font-size: 0.85rem;
    }


/* ============================================================
   📌 PANCHAK
   ============================================================ */

.bp-panchak-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-panchak-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .bp-panchak-title i {
        color: var(--bp-primary);
    }

.bp-panchak-box-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
    margin-bottom: 1.5rem;
    transition: var(--bp-transition);
}

    .bp-panchak-box-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
    }

.bp-panchak-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.bp-panchak-box-item {
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    padding: 0.7rem 0.9rem;
    transition: var(--bp-transition);
    position: relative;
    border-left: 4px solid var(--bp-primary);
}

    .bp-panchak-box-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--bp-shadow);
    }

.bp-panchak-box-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
    flex-wrap: wrap;
}

.bp-panchak-box-seq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--bp-surface);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--bp-primary);
    border: 1px solid var(--bp-border);
}

.bp-panchak-box-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--bp-text);
    flex: 1;
}

.bp-panchak-box-item-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 0.2rem;
    border-top: 1px dashed var(--bp-border);
}

.bp-panchak-box-value {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--bp-primary);
    font-weight: 600;
}

    .bp-panchak-box-value i {
        color: var(--bp-primary);
        font-size: 0.7rem;
    }

.bp-panchak-box-status {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

    .bp-panchak-box-status.active {
        background: #FEF3C7;
        color: var(--bp-warning);
    }

    .bp-panchak-box-status.inactive {
        background: #D1FAE5;
        color: var(--bp-success);
    }

.bp-panchak-box-warning {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #FEF3C7;
    color: var(--bp-warning);
    border-radius: var(--bp-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 4px solid var(--bp-warning);
    font-size: 0.8rem;
}

    .bp-panchak-box-warning i {
        font-size: 1.1rem;
        flex-shrink: 0;
    }


/* ============================================================
   📌 GANDMOOL
   ============================================================ */

.bp-gandmool-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
    text-align: center;
}

.gm-card {
    max-width: 900px;
    margin: 0 auto 18px auto;
    background: #FFF;
    border: 1px solid #E8E0D5;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    overflow: hidden;
}

.gm-card-header {
    padding: 14px 20px;
    border-bottom: 1px solid #E8E0D5;
    background: #faf6f2;
}

.gm-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(183,65,14,.1);
    color: #B7410E;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
}

.gm-section {
    padding: 22px;
    text-align: center;
}

.gm-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #A00000;
    margin-bottom: 10px;
}

.gm-date {
    font-size: 1rem;
    color: #2D2D2D;
    font-weight: 500;
}

.gm-divider {
    height: 1px;
    background: #E8E0D5;
    margin: 0 20px;
}

.gm-error {
    background: #FEE2E2;
    color: #DC2626;
}

.gm-loading {
    background: #FFF7ED;
    color: #B7410E;
}

.gm-empty {
    background: #F9FAFB;
    color: #6B7280;
}

.gm-error,
.gm-loading,
.gm-empty {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
}


/* ============================================================
   📌 ADHIK MASS & KSHAYA MAAS
   ============================================================ */

.bp-adhik-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-adhik-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bp-adhik-subtitle {
    color: var(--bp-text-light);
    font-size: 0.9rem;
}

.bp-adhik-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    transition: var(--bp-transition);
    margin-bottom: 1.5rem;
}

    .bp-adhik-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--bp-shadow);
        border-color: var(--bp-gold);
    }

.bp-alert {
    padding: 1rem;
    border-radius: var(--bp-radius-sm);
    display: flex;
    gap: 0.75rem;
    border-left: 4px solid;
}

.bp-alert-info {
    background: rgba(14, 165, 233, 0.1);
    border-left-color: #0EA5E9;
    color: #0EA5E9;
}

.bp-alert-secondary {
    background: rgba(107, 114, 128, 0.1);
    border-left-color: #6B7280;
    color: #6B7280;
}

.bp-alert-danger {
    background: rgba(220, 38, 38, 0.1);
    border-left-color: var(--bp-error);
}

.bp-alert-warning {
    background: rgba(217, 119, 6, 0.1);
    border-left-color: var(--bp-warning);
}

.bp-alert-content {
    flex: 1;
}

.bp-alert-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bp-content-text {
    color: var(--bp-text);
    line-height: 1.6;
    font-size: 0.9rem;
}

.bp-key-points {
    background: rgba(183, 65, 14, 0.05);
    border-left: 4px solid var(--bp-primary);
    border-radius: var(--bp-radius-sm);
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}

.bp-key-points-title {
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bp-key-points ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--bp-text);
    font-size: 0.85rem;
}

.bp-key-points li {
    margin-bottom: 0.4rem;
}

.bp-spiritual-accent {
    color: var(--bp-primary);
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--bp-border);
    font-size: 0.85rem;
}

.bp-kshaya-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bp-kshaya-main {
    width: 900px;
}

.bp-kshaya-ad-left,
.bp-kshaya-ad-right {
    width: 160px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.bp-kshaya-container {
    width: 100%;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-kshaya-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bp-kshaya-title {
    font-size: 1.75rem;
}

.bp-kshaya-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    margin-bottom: 1.5rem;
    transition: var(--bp-transition);
}

    .bp-kshaya-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--bp-shadow);
    }

.bp-month-box {
    background: rgba(183, 65, 14, 0.03);
    border: 1px solid var(--bp-border);
    border-left: 4px solid var(--bp-primary);
    border-radius: var(--bp-radius-sm);
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.bp-month-title {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.bp-field {
    font-size: 0.85rem;
}


/* ============================================================
   📌 LEGAL PAGES (Privacy, Terms, Sitemap, About)
   ============================================================ */

.bp-legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-legal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bp-legal-header-icon {
    font-size: 3rem;
    color: var(--bp-primary);
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.bp-legal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
}

.bp-legal-subtitle {
    color: var(--bp-text-light);
    font-size: 0.85rem;
}

.bp-legal-content {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    padding: 2rem;
    box-shadow: var(--bp-shadow);
}

.bp-legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bp-border);
}

    .bp-legal-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .bp-legal-section h2 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--bp-primary);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--bp-gold);
        display: inline-block;
    }

    .bp-legal-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--bp-text);
        margin-bottom: 1rem;
    }

    .bp-legal-section ul {
        margin: 0.75rem 0;
        padding-left: 1.5rem;
    }

    .bp-legal-section li {
        font-size: 0.85rem;
        line-height: 1.6;
        color: var(--bp-text);
        margin-bottom: 0.5rem;
    }

.bp-contact-list {
    list-style: none;
    padding-left: 0;
}

    .bp-contact-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .bp-contact-list i {
        color: var(--bp-primary);
        width: 24px;
        font-size: 1.1rem;
    }

    .bp-contact-list a {
        color: var(--bp-primary);
        text-decoration: none;
    }

        .bp-contact-list a:hover {
            text-decoration: underline;
        }

.bp-btn-back {
    background: linear-gradient(135deg, var(--bp-primary), var(--bp-primary-dark));
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--bp-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .bp-btn-back:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(183, 65, 14, 0.3);
    }


/* ============================================================
   📌 SETTINGS PAGE
   ============================================================ */

.bp-settings-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-settings-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bp-settings-header-icon {
    font-size: 3rem;
    color: var(--bp-primary);
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.bp-settings-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
}

.bp-settings-subtitle {
    color: var(--bp-text-light);
    font-size: 0.85rem;
}

.bp-settings-list {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
}

.bp-setting-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: var(--bp-transition);
    border-bottom: 1px solid var(--bp-border);
}

    .bp-setting-item:last-child {
        border-bottom: none;
    }

    .bp-setting-item:hover {
        background: rgba(183, 65, 14, 0.05);
    }

.bp-setting-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(183, 65, 14, 0.1) 0%, rgba(229, 192, 104, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-primary);
    font-size: 1.2rem;
}

.bp-setting-content {
    flex: 1;
}

.bp-setting-title {
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 0.25rem;
}

.bp-setting-caption {
    font-size: 0.7rem;
    color: var(--bp-text-light);
}

.bp-setting-arrow {
    color: var(--bp-text-light);
    transition: transform 0.2s ease;
}

.bp-setting-item:hover .bp-setting-arrow {
    transform: translateX(4px);
    color: var(--bp-primary);
}

/* Popup Modal */
.bp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}

.bp-popup-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--bp-shadow-hover);
    animation: modalSlideIn 0.3s ease;
}

.bp-popup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--bp-border);
    background: linear-gradient(135deg, rgba(183, 65, 14, 0.05) 0%, rgba(229, 192, 104, 0.05) 100%);
}

    .bp-popup-header i {
        font-size: 1.5rem;
        color: var(--bp-primary);
    }

.bp-popup-title {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bp-text);
}

.bp-popup-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--bp-text-light);
    font-size: 1rem;
    transition: var(--bp-transition);
}

    .bp-popup-close:hover {
        color: var(--bp-primary);
        transform: rotate(90deg);
    }

.bp-popup-body {
    padding: 1.5rem;
}

.bp-popup-section {
    margin-bottom: 1rem;
}

.bp-popup-label {
    display: block;
    font-weight: 500;
    color: var(--bp-text);
    margin-bottom: 0.75rem;
}

.bp-popup-hint {
    font-size: 0.7rem;
    color: var(--bp-text-light);
    margin-top: 0.5rem;
}

.bp-theme-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bp-theme-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    cursor: pointer;
    transition: var(--bp-transition);
    background: var(--bp-surface);
}

    .bp-theme-option i {
        font-size: 1.5rem;
        color: var(--bp-text-light);
    }

    .bp-theme-option span {
        font-size: 0.8rem;
        color: var(--bp-text-light);
    }

    .bp-theme-option.active {
        border-color: var(--bp-primary);
        background: rgba(183, 65, 14, 0.05);
    }

        .bp-theme-option.active i,
        .bp-theme-option.active span {
            color: var(--bp-primary);
        }

    .bp-theme-option:hover:not(.active) {
        border-color: var(--bp-gold);
    }

.bp-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    margin-right: 0.75rem;
    vertical-align: middle;
}

    .bp-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.bp-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bp-border);
    transition: 0.3s;
    border-radius: 34px;
}

    .bp-toggle-slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

.bp-toggle input:checked + .bp-toggle-slider {
    background-color: var(--bp-primary);
}

    .bp-toggle input:checked + .bp-toggle-slider:before {
        transform: translateX(24px);
    }

.bp-toggle-label {
    font-size: 0.9rem;
    color: var(--bp-text);
    vertical-align: middle;
}

.bp-popup-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--bp-border);
}

.about-section {
    text-align: center;
}

.bp-about-icon {
    font-size: 3rem;
    color: var(--bp-primary);
    margin-bottom: 1rem;
}

.about-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 0.25rem;
}

.bp-about-version {
    font-size: 0.75rem;
    color: var(--bp-text-light);
    margin-bottom: 1rem;
}

.bp-about-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--bp-primary), var(--bp-gold));
    margin: 1rem auto;
}

.bp-about-desc {
    font-size: 0.85rem;
    color: var(--bp-text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.bp-about-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

    .bp-about-links a {
        color: var(--bp-primary);
        text-decoration: none;
    }

        .bp-about-links a:hover {
            text-decoration: underline;
        }


/* ============================================================
   📌 ABOUT PAGE
   ============================================================ */

.bp-about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-about-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bp-about-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
}

.bp-about-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bp-about-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    transition: var(--bp-transition);
    box-shadow: var(--bp-shadow);
}

    .bp-about-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
    }

.bp-about-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(183, 65, 14, 0.05) 0%, rgba(229, 192, 104, 0.05) 100%);
    border-bottom: 1px solid var(--bp-border);
}

    .bp-about-card-header i {
        font-size: 1.5rem;
        color: var(--bp-primary);
    }

    .bp-about-card-header h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--bp-text);
        margin: 0;
    }

.bp-about-card-body {
    padding: 1.5rem;
}

.bp-about-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--bp-text);
    margin-bottom: 1rem;
    text-align: justify;
}

    .bp-about-text:last-child {
        margin-bottom: 0;
    }

    .bp-about-text strong {
        color: var(--bp-primary);
    }

.bp-contact-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(183, 65, 14, 0.05) 0%, rgba(229, 192, 104, 0.05) 100%);
    border-radius: var(--bp-radius-sm);
    padding: 1.25rem;
    border-left: 4px solid var(--bp-primary);
    margin-top: 1rem;
}

    .bp-contact-note i {
        font-size: 1.8rem;
        color: var(--bp-primary);
    }

    .bp-contact-note h4 {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--bp-text);
        margin: 0 0 0.25rem 0;
    }

    .bp-contact-note p {
        font-size: 0.8rem;
        color: var(--bp-text-light);
        margin: 0;
    }


/* ============================================================
   📌 CONTACT PAGE
   ============================================================ */

.bp-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bp-contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
}

.bp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bp-contact-form-card,
.bp-contact-info-card,
.bp-map-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
    transition: var(--bp-transition);
    box-shadow: var(--bp-shadow);
}

    .bp-contact-form-card:hover,
    .bp-contact-info-card:hover,
    .bp-map-card:hover {
        box-shadow: var(--bp-shadow-hover);
    }

.bp-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(183, 65, 14, 0.03) 0%, rgba(229, 192, 104, 0.03) 100%);
    border-bottom: 1px solid var(--bp-border);
}

    .bp-card-header i {
        font-size: 1.3rem;
        color: var(--bp-primary);
    }

    .bp-card-header h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--bp-text);
        margin: 0;
    }

.bp-card-body {
    padding: 1.5rem;
}

.bp-info-row {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bp-border);
}

    .bp-info-row:last-child {
        border-bottom: none;
    }

.bp-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(183, 65, 14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bp-info-content {
    flex: 1;
}

    .bp-info-content strong {
        display: block;
        font-size: 0.85rem;
        color: var(--bp-text);
        margin-bottom: 0.25rem;
    }

.bp-link {
    color: var(--bp-primary);
    text-decoration: none;
    font-size: 0.85rem;
}

    .bp-link:hover {
        text-decoration: underline;
    }

.bp-info-content span {
    font-size: 0.85rem;
    color: var(--bp-text-light);
}

.bp-info-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.bp-action-btn {
    background: linear-gradient(135deg, #B7410E, #8E2A07);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

    .bp-action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(183, 65, 14, 0.35);
    }

.bp-whatsapp-small {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

    .bp-whatsapp-small:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

.bp-map-frame {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: var(--bp-radius-sm);
}


/* ============================================================
   📌 AUTH PAGES (Login, Register)
   ============================================================ */

.login-container,
.register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bp-bg) 0%, #F5EDE0 100%);
    padding: 1.5rem;
}

.login-card,
.register-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    box-shadow: var(--bp-shadow);
    max-width: 450px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--bp-border);
}

    .login-card:hover,
    .register-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--bp-shadow-hover);
    }

.brand-logo {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    color: white;
}

    .brand-logo .logo-icon {
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
        animation: pulse 2s ease-in-out infinite;
    }

    .brand-logo h1 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .brand-logo p {
        font-size: 0.85rem;
        opacity: 0.9;
    }

.login-form,
.register-form {
    padding: 1.75rem 1.5rem 2rem;
}

.input-group {
    margin-bottom: 1.25rem;
}

    .input-group label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--bp-text);
        margin-bottom: 0.5rem;
    }

        .input-group label i {
            color: var(--bp-primary);
            font-size: 0.9rem;
        }

.input-field {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: var(--bp-surface);
    color: var(--bp-text);
}

    .input-field:focus {
        outline: none;
        border-color: var(--bp-primary);
        box-shadow: 0 0 0 3px rgba(183, 65, 14, 0.1);
    }

    .input-field.error-border {
        border-color: var(--bp-error);
    }

.success-border {
    border-color: var(--bp-success);
}

.field-error {
    display: block;
    font-size: 0.7rem;
    color: var(--bp-error);
    margin-top: 0.25rem;
}

.field-info {
    display: block;
    font-size: 0.7rem;
    color: var(--bp-text-light);
    margin-top: 0.25rem;
}

.field-success {
    display: block;
    font-size: 0.7rem;
    color: var(--bp-success);
    margin-top: 0.25rem;
}

.password-wrapper {
    position: relative;
}

    .password-wrapper .input-field {
        padding-right: 2.5rem;
    }

.toggle-password {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--bp-text-light);
    font-size: 1rem;
    transition: color 0.2s;
}

    .toggle-password:hover {
        color: var(--bp-primary);
    }

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
    margin-bottom: 0.25rem;
}

.strength-empty {
    width: 0%;
    background: var(--bp-border);
}

.strength-weak {
    width: 33%;
    background: var(--bp-error);
}

.strength-medium {
    width: 66%;
    background: var(--bp-warning);
}

.strength-strong {
    width: 100%;
    background: var(--bp-success);
}

.strength-text {
    font-size: 0.7rem;
    color: var(--bp-text-light);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--bp-text-light);
}

    .checkbox-label input {
        width: 16px;
        height: 16px;
        cursor: pointer;
        accent-color: var(--bp-primary);
    }

.terms-checkbox {
    margin-bottom: 1.25rem;
}

.btn-login,
.btn-register {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--bp-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .btn-login:hover:not(:disabled),
    .btn-register:hover:not(:disabled) {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(183, 65, 14, 0.3);
    }

    .btn-login:disabled,
    .btn-register:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.register-link,
.login-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bp-border);
}

    .register-link p,
    .login-link p {
        font-size: 0.85rem;
        color: var(--bp-text-light);
    }

    .register-link a,
    .login-link a {
        color: var(--bp-primary);
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.2s;
    }

        .register-link a:hover,
        .login-link a:hover {
            color: var(--bp-primary-dark);
            text-decoration: underline;
        }

/* Forgot Password Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    max-width: 450px;
    width: 90%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    box-shadow: var(--bp-shadow-hover);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    color: white;
}

    .modal-header h3 {
        font-size: 1rem;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
}

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.modal-body {
    padding: 1.5rem;
}

    .modal-body p {
        font-size: 0.85rem;
        color: var(--bp-text-light);
        margin-bottom: 1rem;
    }

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--bp-border);
}


/* ============================================================
   📌 SHOP & PRODUCT
   ============================================================ */

.bp-shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-shop-hero {
    background: linear-gradient(135deg, rgba(183, 65, 14, 0.05) 0%, rgba(229, 192, 104, 0.05) 100%);
    border-radius: var(--bp-radius);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border: 1px solid var(--bp-border);
}

.bp-shop-hero-icon {
    font-size: 2rem;
    color: var(--bp-primary);
    margin-bottom: 0.25rem;
}

.bp-shop-hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0.25rem 0;
}

.bp-shop-hero-subtitle {
    color: var(--bp-text-light);
    font-size: 0.85rem;
}

.bp-cart-indicator {
    background: var(--bp-surface);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--bp-transition);
    border: 1px solid var(--bp-border);
    box-shadow: var(--bp-shadow);
}

    .bp-cart-indicator:hover {
        transform: translateY(-2px);
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-primary);
        background: var(--bp-primary);
    }

    .bp-cart-indicator i {
        font-size: 1.1rem;
        color: var(--bp-primary);
        transition: var(--bp-transition);
    }

    .bp-cart-indicator:hover i,
    .bp-cart-indicator:hover .bp-cart-count {
        color: white;
    }

.bp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bp-product-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    overflow: hidden;
    transition: var(--bp-transition);
    border: 1px solid var(--bp-border);
    box-shadow: var(--bp-shadow);
}

    .bp-product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
    }

.bp-product-image-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    aspect-ratio: 1 / 1;
}

.bp-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bp-product-card:hover .bp-product-image {
    transform: scale(1.05);
}

.bp-product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bp-text-light);
    background: var(--bp-bg);
}

.bp-quick-view-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.7);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--bp-transition);
    cursor: pointer;
}

.bp-product-card:hover .bp-quick-view-badge {
    opacity: 1;
}

.bp-quick-view-badge:hover {
    background: var(--bp-primary);
    transform: scale(1.1);
}

.bp-product-info {
    padding: 1rem;
}

.bp-product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: var(--bp-transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

    .bp-product-title:hover {
        color: var(--bp-primary);
    }

.bp-product-desc {
    font-size: 0.7rem;
    color: var(--bp-text-light);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.bp-regular-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bp-primary);
    margin-bottom: 0.75rem;
}

.bp-product-context {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(183, 65, 14, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.65rem;
    color: var(--bp-primary);
    margin-bottom: 0.5rem;
    width: fit-content;
    border: 1px solid rgba(183, 65, 14, 0.1);
}

    .bp-product-context i {
        font-size: 0.6rem;
        color: var(--bp-primary);
    }

    .bp-product-context strong {
        font-weight: 600;
    }

.bp-product-actions {
    display: flex;
    gap: 0.6rem;
}

.bp-btn-view {
    flex: 1;
    padding: 0.5rem 0.25rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: none;
    background: transparent;
    border: 1px solid var(--bp-border);
    color: var(--bp-text);
}

    .bp-btn-view:hover {
        border-color: var(--bp-primary);
        color: var(--bp-primary);
    }

.bp-btn-cart {
    flex: 1;
    padding: 0.5rem 0.25rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: none;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    color: white;
}

    .bp-btn-cart:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(183, 65, 14, 0.3);
    }

    .bp-btn-cart:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.bp-shop-footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--bp-border);
    color: var(--bp-text-light);
    font-size: 0.8rem;
}


/* ============================================================
   📌 PRODUCT DETAILS
   ============================================================ */

.bp-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-product-detail {
    /* container for product details */
}

.bp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

    .bp-breadcrumb a {
        color: var(--bp-primary);
        cursor: pointer;
        text-decoration: none;
    }

        .bp-breadcrumb a:hover {
            text-decoration: underline;
        }

    .bp-breadcrumb i {
        color: var(--bp-text-light);
        font-size: 0.7rem;
    }

    .bp-breadcrumb span {
        color: var(--bp-text-light);
    }

.bp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    padding: 2rem;
    border: 1px solid var(--bp-border);
    box-shadow: var(--bp-shadow);
}

.bp-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bp-main-image {
    background: var(--bp-bg);
    border-radius: var(--bp-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bp-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--bp-text-light);
}

    .bp-image-placeholder i {
        font-size: 3rem;
    }

.bp-thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bp-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: var(--bp-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--bp-transition);
}

    .bp-thumbnail:hover {
        border-color: var(--bp-primary);
    }

    .bp-thumbnail.active {
        border-color: var(--bp-primary);
        box-shadow: 0 0 0 2px var(--bp-gold);
    }

    .bp-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.bp-product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bp-product-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0;
}

.bp-product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bp-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--bp-gold);
    font-size: 0.85rem;
}

.bp-review-count {
    font-size: 0.8rem;
    color: var(--bp-text-light);
}

.bp-product-price-section {
    padding: 0.5rem 0;
}

.bp-current-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-primary);
}

.bp-short-description {
    color: var(--bp-text);
    line-height: 1.5;
    font-size: 0.95rem;
}

.bp-description h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bp-text);
}

.bp-description-content {
    color: var(--bp-text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.bp-quantity-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.bp-quantity-label {
    font-weight: 500;
    color: var(--bp-text);
}

.bp-quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--bp-border);
    border-radius: 30px;
    overflow: hidden;
}

.bp-qty-btn {
    width: 36px;
    height: 36px;
    background: var(--bp-bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bp-transition);
}

    .bp-qty-btn:hover:not(:disabled) {
        background: var(--bp-primary);
        color: white;
    }

    .bp-qty-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.bp-qty-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--bp-border);
    border-right: 1px solid var(--bp-border);
    font-size: 0.9rem;
}

    .bp-qty-input:focus {
        outline: none;
    }

.bp-action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.bp-btn-cart,
.bp-btn-buy {
    flex: 1;
    padding: 0.9rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.bp-btn-cart {
    background: var(--bp-surface);
    border: 2px solid var(--bp-primary);
    color: var(--bp-primary);
}

    .bp-btn-cart:hover:not(:disabled) {
        background: var(--bp-primary);
        color: white;
        transform: translateY(-2px);
    }

.bp-btn-buy {
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    color: white;
}

    .bp-btn-buy:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(183, 65, 14, 0.3);
    }

    .bp-btn-cart:disabled,
    .bp-btn-buy:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

.bp-product-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bp-border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bp-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--bp-text-light);
}

    .bp-meta-item i {
        color: var(--bp-primary);
        font-size: 1rem;
    }


/* ============================================================
   📌 CART & CHECKOUT
   ============================================================ */

.bp-cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-cart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bp-cart-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .bp-cart-title i {
        color: var(--bp-primary);
    }

.bp-cart-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
}

.bp-cart-items {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
}

.bp-cart-table-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr 0.5fr;
    padding: 1rem 1.5rem;
    background: var(--bp-bg);
    border-bottom: 1px solid var(--bp-border);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bp-text);
}

.bp-cart-items-list {
    padding: 0;
}

.bp-cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr 0.5fr;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bp-border);
    transition: var(--bp-transition);
}

    .bp-cart-item:hover {
        background: var(--bp-bg);
    }

.bp-item-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bp-item-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.bp-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--bp-radius-sm);
}

.bp-image-placeholder {
    width: 70px;
    height: 70px;
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-text-light);
}

.bp-item-name h6 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    color: var(--bp-text);
}

.bp-item-price {
    /* default */
}

.bp-item-quantity {
    /* default */
}

.bp-item-total strong {
    color: var(--bp-primary);
    font-weight: 700;
}

.bp-item-action {
    text-align: right;
}

.bp-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--bp-text-light);
    font-size: 1.1rem;
    transition: var(--bp-transition);
}

    .bp-remove-btn:hover {
        color: var(--bp-error);
    }

.bp-cart-summary {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

    .bp-cart-summary h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--bp-border);
        color: var(--bp-text);
    }

.bp-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--bp-text);
}

.bp-summary-divider {
    height: 1px;
    background: var(--bp-border);
    margin: 1rem 0;
}

.bp-total-row {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

    .bp-total-row strong {
        color: var(--bp-primary);
    }

.bp-btn-checkout {
    width: 100%;
    padding: 0.85rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    color: white;
}

    .bp-btn-checkout:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(183, 65, 14, 0.3);
    }

.bp-btn-clear {
    width: 100%;
    padding: 0.85rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    background: transparent;
    border: 1px solid var(--bp-border);
    color: var(--bp-text-light);
}

    .bp-btn-clear:hover {
        border-color: var(--bp-error);
        color: var(--bp-error);
    }

.bp-btn-continue {
    background: transparent;
    color: var(--bp-primary);
    width: 100%;
    padding: 0.85rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

    .bp-btn-continue:hover {
        background: var(--bp-bg);
    }

.bp-context-error {
    border: 2px solid #dc2626;
    border-radius: var(--bp-radius);
    padding: 1rem;
    background: #fef2f2;
    animation: bp-shake 0.35s ease;
}

/* --- Checkout --- */
.bp-checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-checkout-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
}

.bp-checkout-form {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    padding: 1.5rem;
    box-shadow: var(--bp-shadow);
}

.bp-form-section {
    margin-bottom: 1.75rem;
}

    .bp-form-section:last-child {
        margin-bottom: 0;
    }

.bp-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bp-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .bp-section-title i {
        color: var(--bp-primary);
    }

.bp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bp-form-group {
    margin-bottom: 1rem;
}

.bp-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    font-size: 0.9rem;
    transition: var(--bp-transition);
    background: var(--bp-surface);
    color: var(--bp-text);
}

    .bp-input:focus {
        outline: none;
        border-color: var(--bp-primary);
        box-shadow: 0 0 0 3px rgba(183, 65, 14, 0.1);
    }

.bp-input-error {
    border-color: var(--bp-error) !important;
    background-color: var(--bp-error-bg) !important;
}

.bp-field-error {
    display: block;
    font-size: 0.7rem;
    color: var(--bp-error);
    margin-top: 0.25rem;
}

.bp-validation-summary {
    background: var(--bp-error-bg);
    border: 1px solid var(--bp-error);
    border-radius: var(--bp-radius-sm);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

    .bp-validation-summary i {
        color: var(--bp-error);
        font-size: 1.1rem;
        margin-top: 0.15rem;
    }

    .bp-validation-summary ul {
        margin: 0.25rem 0 0 1rem;
        padding: 0;
    }

    .bp-validation-summary li {
        font-size: 0.75rem;
        color: var(--bp-error);
        margin-bottom: 0.15rem;
    }

.bp-payment-option {
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    padding: 1rem;
    background: var(--bp-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bp-payment-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .bp-payment-radio input {
        width: 18px;
        height: 18px;
        accent-color: var(--bp-primary);
        cursor: pointer;
    }

    .bp-payment-radio span {
        font-weight: 500;
        color: var(--bp-text);
    }

.bp-payment-icons {
    display: flex;
    gap: 0.75rem;
    color: var(--bp-text-light);
    font-size: 1.1rem;
}

.bp-error-message {
    background: var(--bp-error-bg);
    color: var(--bp-error);
    padding: 0.75rem 1rem;
    border-radius: var(--bp-radius-sm);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 4px solid var(--bp-error);
}

.bp-place-order-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

    .bp-place-order-btn:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(183, 65, 14, 0.3);
    }

    .bp-place-order-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.bp-order-summary {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: var(--bp-shadow);
}

.bp-summary-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bp-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .bp-summary-title i {
        color: var(--bp-primary);
    }

.bp-summary-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.bp-summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bp-border);
}

    .bp-summary-item:last-child {
        border-bottom: none;
    }

.bp-summary-item-img {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

    .bp-summary-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--bp-radius-sm);
    }

.bp-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-text-light);
}

.bp-summary-item-details {
    flex: 1;
}

.bp-item-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bp-text);
    margin-bottom: 0.25rem;
}

.bp-item-qty {
    font-size: 0.7rem;
    color: var(--bp-text-light);
}

.bp-summary-item-price {
    font-weight: 600;
    color: var(--bp-primary);
}

.bp-security-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--bp-primary);
}


/* ============================================================
   📌 MAIN LAYOUT (Web + MAUI)
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.maui-shell,
.web-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bp-bg);
}

.maui-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    padding-top: 2.5rem;
    background: linear-gradient(135deg, var(--bp-primary-dark) 0%, var(--bp-primary) 100%);
    box-shadow: var(--bp-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.maui-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.maui-brand-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.maui-brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.maui-content {
    flex: 1;
    padding: 1rem;
    background: var(--bp-bg);
}

.web-content {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}


/* ============================================================
   📌 TOP HEADER
   ============================================================ */

.bp-main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #2a1208 0%, #4a2210 50%, #6B3E26 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 192, 104, 0.2);
    box-shadow: var(--bp-shadow-lg);
    overflow: visible !important;
}

.bp-header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    overflow: visible !important;
}

.bp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--bp-transition);
}

.bp-logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    animation: gentlePulse 3s ease-in-out infinite;
}

.bp-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bp-gold) 0%, var(--bp-gold-light) 50%, var(--bp-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.bp-logo:hover {
    transform: translateY(-1px);
}

.bp-desktop-nav {
    display: flex;
    align-items: center;
}

.bp-nav-items {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bp-nav-item {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--bp-transition);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

    .bp-nav-item::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--bp-gold), var(--bp-gold-light));
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    .bp-nav-item:hover::before,
    .bp-nav-item.active::before {
        width: 70%;
    }

    .bp-nav-item:hover,
    .bp-nav-item.active {
        color: var(--bp-gold);
        background: rgba(229, 192, 104, 0.1);
        transform: translateY(-1px);
    }

.bp-dropdown {
    position: relative;
}

.bp-dropdown-btn {
    color: rgba(255,255,255,0.85);
    padding: 10px 16px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--bp-transition);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .bp-dropdown-btn:hover {
        color: var(--bp-gold);
        background: rgba(229, 192, 104, 0.1);
        transform: translateY(-1px);
    }

    .bp-dropdown-btn i {
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

.bp-dropdown:hover .bp-dropdown-btn i {
    transform: rotate(180deg);
}

.bp-dropdown-content {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    display: none;
    background: rgba(30, 18, 10, 0.98);
    backdrop-filter: blur(12px);
    color: white;
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--bp-shadow-lg);
    min-width: 180px;
    z-index: 1200;
    border: 1px solid rgba(229, 192, 104, 0.2);
}

    .bp-dropdown-content.show {
        display: block !important;
    }

    .bp-dropdown-content::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 20px;
        width: 16px;
        height: 16px;
        background: rgba(30, 18, 10, 0.98);
        transform: rotate(45deg);
        border-top: 1px solid rgba(229, 192, 104, 0.2);
        border-left: 1px solid rgba(229, 192, 104, 0.2);
    }

.bp-dropdown:last-child .bp-dropdown-content {
    right: 0;
    left: auto;
}

    .bp-dropdown:last-child .bp-dropdown-content::before {
        left: auto;
        right: 20px;
    }

.bp-profile-btn {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 6px 14px !important;
    background: linear-gradient(135deg, rgba(69, 39, 20, 0.8) 0%, rgba(107, 62, 38, 0.8) 100%) !important;
    border: 1px solid var(--bp-gold) !important;
    border-radius: 40px !important;
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.9) !important;
}

.bp-profile-avatar {
    width: 28px !important;
    height: 28px !important;
    background: linear-gradient(135deg, var(--bp-gold), var(--bp-gold-dark)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

    .bp-profile-avatar i {
        font-size: 1rem !important;
        color: #3a1a0a !important;
    }

.bp-mobile-menu-btn {
    display: none;
    background: rgba(229, 192, 104, 0.15);
    border: 1px solid rgba(229, 192, 104, 0.3);
    color: var(--bp-gold);
    font-size: 1.4rem;
    padding: 10px;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--bp-transition);
}

    .bp-mobile-menu-btn:hover {
        background: rgba(229, 192, 104, 0.3);
        transform: scale(1.02);
    }

.bp-mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: linear-gradient(180deg, #2a1208 0%, #1a0e08 100%);
    color: white;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1250;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0,0,0,0.5);
    border-right: 1px solid rgba(229, 192, 104, 0.2);
}

    .bp-mobile-sidebar.open {
        left: 0;
    }

.bp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 1240;
}

    .bp-overlay.show {
        display: block;
    }


/* ============================================================
   📌 FOOTER
   ============================================================ */

.bp-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

    .bp-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--bp-gold), var(--bp-primary), var(--bp-gold), transparent);
        animation: bp-footer-shimmer 3s ease-in-out infinite;
    }

.bp-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
}

.bp-footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.bp-footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bp-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.bp-footer-logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.bp-footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

    .bp-footer-title::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--bp-primary), var(--bp-gold));
        border-radius: 2px;
    }

.bp-highlight {
    color: var(--bp-gold);
    font-weight: 700;
}

.bp-footer-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.bp-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.bp-social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #e0e0e0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

    .bp-social-icon:hover {
        transform: translateY(-3px);
        border-color: transparent;
    }

.bp-youtube:hover {
    background: #FF0000;
    color: white;
    box-shadow: 0 4px 12px rgba(255,0,0,0.3);
}

.bp-instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    color: white;
    box-shadow: 0 4px 12px rgba(214, 41, 118, 0.3);
}

.bp-facebook:hover {
    background: #1877F2;
    color: white;
    box-shadow: 0 4px 12px rgba(24,119,242,0.3);
}

.bp-twitter:hover {
    background: #000000;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.bp-help-button {
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    border: none;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(183, 65, 14, 0.3);
}

    .bp-help-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(183, 65, 14, 0.4);
    }

.bp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.bp-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: #888;
}

    .bp-footer-bottom-content p {
        margin: 0;
    }


/* ============================================================
   📌 DASHBOARD & PROFILE
   ============================================================ */

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.welcome-area h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 0.25rem;
}

.welcome-area p {
    color: var(--bp-text-light);
}

.wave {
    display: inline-block;
    animation: wave 0.5s ease;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--bp-radius-sm);
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    position: relative;
}

    .icon-btn:hover {
        background: var(--bp-primary);
        color: white;
        border-color: var(--bp-primary);
    }

.badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--bp-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 20px;
    min-width: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--bp-border);
    transition: all 0.2s ease;
}

    .stat-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
    }

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(183, 65, 14, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bp-primary);
}

.stat-info {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--bp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-section {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    overflow: hidden;
}

.section-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--bp-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .section-header h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
    }

        .section-header h3 i {
            color: var(--bp-primary);
            margin-right: 0.5rem;
        }

.order-count {
    font-size: 0.75rem;
    color: var(--bp-text-light);
    background: var(--bp-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.order-headers {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--bp-bg);
    border-bottom: 2px solid var(--bp-border);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bp-primary);
}

.header-order-id {
    width: 100px;
}

.header-status {
    width: 110px;
}

.header-date {
    width: 130px;
}

.header-amount {
    width: 100px;
}

.header-products {
    flex: 1;
}

.orders-list {
    display: flex;
    flex-direction: column;
}

.order-item {
    border-bottom: 1px solid var(--bp-border);
    transition: all 0.2s ease;
}

    .order-item:last-child {
        border-bottom: none;
    }

    .order-item.expanded {
        background: var(--bp-bg);
    }

.order-preview {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    .order-preview:hover {
        background: rgba(183, 65, 14, 0.03);
    }

.order-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    flex: 1;
}

.order-id-value {
    width: 100px;
    font-weight: 700;
    font-family: monospace;
}

.order-status-value {
    width: 110px;
}

.order-date-value {
    width: 130px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--bp-text-light);
}

    .order-date-value i {
        color: var(--bp-primary);
    }

.order-amount-value {
    width: 100px;
    font-weight: 700;
    color: var(--bp-primary);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-success {
    background: rgba(229, 192, 104, 0.15);
    color: var(--bp-gold-dark);
}

.status-warning {
    background: rgba(183, 65, 14, 0.1);
    color: var(--bp-primary);
}

.status-pending {
    background: rgba(212, 90, 30, 0.1);
    color: var(--bp-primary-light);
}

.order-preview-products {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-mini-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bp-bg);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

    .product-mini img {
        width: 24px;
        height: 24px;
        object-fit: cover;
        border-radius: 4px;
    }

.mini-placeholder {
    width: 24px;
    height: 24px;
    background: var(--bp-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.more-count {
    background: var(--bp-border);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bp-text-light);
}

.expand-icon {
    color: var(--bp-text-light);
    transition: transform 0.2s;
}

.order-detail-expanded {
    padding: 1.5rem;
    border-top: 1px solid var(--bp-border);
    animation: slideDown 0.3s ease;
}

.detail-two-columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
}

.vertical-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--bp-border), transparent);
}

.product-details-column h4,
.invoice-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bp-text);
}

    .product-details-column h4 i,
    .invoice-column h4 i {
        color: var(--bp-primary);
        margin-right: 0.5rem;
    }

.products-grid-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card-detail {
    display: flex;
    gap: 1rem;
    background: var(--bp-surface);
    padding: 1rem;
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    transition: all 0.2s ease;
}

    .product-card-detail:hover {
        box-shadow: var(--bp-shadow);
        border-color: var(--bp-gold);
    }

.product-img-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

    .product-img-large img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bp-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bp-text-light);
}

.product-info-detail {
    flex: 1;
}

    .product-info-detail h5 {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--bp-text);
    }

.product-meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

    .product-meta-row .qty {
        color: var(--bp-text-light);
    }

    .product-meta-row .price {
        font-weight: 600;
        color: var(--bp-primary);
    }

.unit-price {
    color: var(--bp-text-light);
    font-size: 0.7rem;
}

.btn-view-product {
    background: transparent;
    border: 1px solid var(--bp-primary);
    color: var(--bp-primary);
    padding: 0.1rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.3rem;
}

    .btn-view-product:hover {
        background: var(--bp-primary);
        color: white;
    }

.customer-notes-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bp-border);
}

    .customer-notes-section h4 {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--bp-text);
    }

        .customer-notes-section h4 i {
            color: var(--bp-primary);
            margin-right: 0.5rem;
        }

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 250px;
    overflow-y: auto;
}

.note-item {
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    padding: 0.75rem;
    border-left: 3px solid var(--bp-primary);
}

.note-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    color: var(--bp-text-light);
}

    .note-header i {
        color: var(--bp-primary);
    }

.note-content {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--bp-text);
}

    .note-content i {
        color: var(--bp-gold);
        font-size: 0.8rem;
        margin-top: 0.15rem;
    }

    .note-content p {
        margin: 0;
        flex: 1;
        line-height: 1.4;
    }

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.btn-invoice {
    background: transparent;
    border: 1px solid var(--bp-primary);
    color: var(--bp-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-invoice:hover {
        background: var(--bp-primary);
        color: white;
    }

.invoice-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-border);
    padding: 1rem;
}

.invoice-section {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--bp-border);
}

    .invoice-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .invoice-section h5 {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--bp-primary);
        margin-bottom: 0.75rem;
    }

.invoice-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

    .invoice-row .label {
        color: var(--bp-text-light);
    }

    .invoice-row .value {
        color: var(--bp-text);
        font-weight: 500;
    }

.total-row {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--bp-border);
    font-weight: 700;
}

    .total-row .label,
    .total-row .value {
        font-weight: 700;
        color: var(--bp-primary);
    }

.address-box {
    background: var(--bp-bg);
    padding: 0.75rem;
    border-radius: 10px;
}

    .address-box p {
        margin: 0.25rem 0;
        font-size: 0.8rem;
        color: var(--bp-text);
    }

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.auth-card,
.error-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    max-width: 450px;
    margin: 3rem auto;
    border: 1px solid var(--bp-border);
}

.auth-icon,
.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.bp-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
}

.bp-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}


/* ============================================================
   📌 LOADING CONTAINER (Dashboard)
   ============================================================ */

.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bp-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.loading-card {
    background: var(--bp-surface);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--bp-shadow-hover);
    border: 1px solid var(--bp-border);
    animation: fadeInUp 0.5s ease;
}

.loading-logo {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.logo-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s ease-in-out infinite;
}

.logo-inner {
    width: 80px;
    height: 80px;
    background: var(--bp-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 2.5rem;
    animation: rotateLogo 3s linear infinite;
}

.logo-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--bp-primary);
    border-radius: 50%;
    animation: rotateRing 2s linear infinite;
    opacity: 0.6;
}

.logo-ring-delayed {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--bp-gold);
    border-radius: 50%;
    animation: rotateRingReverse 3s linear infinite;
    opacity: 0.3;
}

.loading-text h3 {
    font-size: 1.35rem;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.loading-message {
    color: var(--bp-primary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

    .loading-message i {
        animation: spin 1s linear infinite;
        display: inline-block;
    }

.progress-wrapper {
    margin: 1.5rem 0;
}

.progress-bar-container {
    background: var(--bp-border);
    border-radius: 30px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    background: linear-gradient(90deg, var(--bp-primary) 0%, var(--bp-gold) 100%);
    height: 100%;
    border-radius: 30px;
    transition: width 0.1s linear;
    position: relative;
    overflow: hidden;
}

    .progress-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: shimmer 1s infinite;
    }

.progress-percentage {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bp-primary);
    text-align: right;
}

.countdown-timer {
    background: var(--bp-bg);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.8rem;
    color: var(--bp-text-light);
}

    .countdown-timer i {
        color: var(--bp-primary);
        animation: hourglass 2s ease-in-out infinite;
    }

    .countdown-timer strong {
        color: var(--bp-primary);
        font-weight: 700;
    }

.loading-tips {
    background: linear-gradient(135deg, rgba(183, 65, 14, 0.05) 0%, rgba(229, 192, 104, 0.05) 100%);
    padding: 1rem;
    border-radius: 16px;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    border-left: 3px solid var(--bp-primary);
}

    .loading-tips i {
        color: var(--bp-gold);
        font-size: 1.2rem;
        margin-top: 0.1rem;
    }

    .loading-tips p {
        margin: 0;
        font-size: 0.8rem;
        color: var(--bp-text);
        line-height: 1.4;
        flex: 1;
    }


/* ============================================================
   📌 INVOICE MODAL
   ============================================================ */

.invoice-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 1rem;
}

.invoice-modal {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

.invoice-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bp-border);
    background: var(--bp-primary);
    color: white;
    border-radius: 20px 20px 0 0;
}

    .invoice-modal-header h3 {
        margin: 0;
        font-size: 1.1rem;
    }

.close-modal {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

    .close-modal:hover {
        background: rgba(255,255,255,0.3);
    }

.invoice-modal-body {
    padding: 1.5rem;
    background: white;
}

.invoice-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--bp-border);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.full-invoice {
    background: white;
}

.invoice-brand {
    text-align: center;
    margin-bottom: 2rem;
}

    .invoice-brand h1 {
        color: var(--bp-primary);
        margin-bottom: 0.25rem;
    }

.invoice-title {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--bp-primary);
    padding-bottom: 0.5rem;
}

    .invoice-title h2 {
        color: var(--bp-primary);
        font-size: 1.25rem;
    }

.invoice-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-box {
    background: var(--bp-bg);
    padding: 0.75rem;
    border-radius: 8px;
}

.invoice-address-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

    .invoice-address-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: var(--bp-primary);
    }

.invoice-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

    .invoice-items-table th,
    .invoice-items-table td {
        border: 1px solid var(--bp-border);
        padding: 0.75rem;
        text-align: left;
    }

    .invoice-items-table th {
        background: var(--bp-bg);
        font-weight: 600;
    }

.text-right {
    text-align: right;
}

.invoice-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bp-border);
    font-size: 0.8rem;
    color: var(--bp-text-light);
}


/* ============================================================
   📌 PANCHANG CONTEXT EDITOR
   ============================================================ */

.bp-context-editor {
    background: #FFF9F0;
    border: 1px solid #E8E0D5;
    border-radius: 12px;
    padding: 1rem;
    margin: 0.5rem 0;
}

.bp-context-header {
    cursor: pointer;
    transition: all 0.3s ease;
}

    .bp-context-header:hover {
        background: rgba(183, 65, 14, 0.05);
        border-radius: 8px;
    }

.bp-context-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.bp-context-warning {
    background: #FFF7ED;
    color: #9A3412;
    padding: 8px 12px;
    border-radius: 10px;
    border-left: 4px solid #F97316;
    font-size: 0.85rem;
}

.bp-context-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2D2D2D;
    flex: 1;
}

.bp-edit-icon {
    color: #B7410E;
    font-size: 1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.bp-context-display:hover .bp-edit-icon {
    opacity: 1;
}

.bp-edit-panel {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E8E0D5;
    animation: slideDown 0.3s ease;
}

.bp-edit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.bp-edit-field-full {
    grid-column: 1 / -1;
}

.bp-edit-field label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6B6B6B;
    margin-bottom: 0.25rem;
}

    .bp-edit-field label i {
        color: #B7410E;
        font-size: 0.7rem;
    }

.bp-edit-field .bp-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #E8E0D5;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.3s;
    background: #FFFFFF;
    color: #2D2D2D;
}

    .bp-edit-field .bp-input:focus {
        outline: none;
        border-color: #B7410E;
        box-shadow: 0 0 0 2px rgba(183, 65, 14, 0.1);
    }

    .bp-edit-field .bp-input:read-only {
        background: #F5F0E8;
        cursor: not-allowed;
        color: #6B6B6B;
    }

.bp-field-hint {
    display: block;
    font-size: 0.55rem;
    color: #999;
    margin-top: 0.2rem;
    font-style: italic;
}

.bp-edit-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: flex-end;
    padding-top: 0.75rem;
    border-top: 1px solid #E8E0D5;
}

.validation-message {
    background: #FEF2F2;
    color: #991b1b;
    padding: 6px 10px;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .validation-message::before {
        content: "⚠";
        font-size: 0.8rem;
    }

.validation-summary-valid {
    display: none;
}

.validation-summary-errors {
    background: linear-gradient(135deg, #FEE2E2, #FEF2F2);
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .validation-summary-errors::before {
        content: "⚠️";
    }

    .validation-summary-errors ul {
        margin: 0;
        padding-left: 1rem;
        font-size: 0.75rem;
    }

    .validation-summary-errors li {
        margin-bottom: 2px;
    }

.input-validation-error {
    border: 1.5px solid #dc2626 !important;
    background: #FFF5F5;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}


/* ============================================================
   📌 DATE & LOCATION COMPONENTS
   ============================================================ */

.date-location-container {
    background: transparent;
    padding: 0.75rem 0rem;
    border-radius: 12px;
}

.date-location-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.location-search {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #8B4513;
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .search-wrapper:focus-within {
        border-color: #A0522D;
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
    }

.search-input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 0.9rem;
    color: #495057;
}

    .search-input::placeholder {
        color: #6c757d;
    }

.clear-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    color: #6c757d;
}

.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #8B4513;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 0.25rem;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

    .suggestion-item:last-child {
        border-bottom: none;
    }

    .suggestion-item:hover {
        background-color: #f8f9fa;
    }

.suggestion-text {
    flex: 1;
}

.city-name {
    font-weight: 600;
    color: #8B4513;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.city-details {
    font-size: 0.75rem;
    color: #6c757d;
}

.timezone {
    font-size: 0.75rem;
    color: #9ca3af;
}

.selected-city-display {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border: 2px solid #8B4513;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    font-size: 0.9rem;
    color: #495057;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .selected-city-display:hover {
        border-color: #A0522D;
        background: #f8f9fa;
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
        transform: translateY(-1px);
    }

.city-label {
    flex: 1 1 auto;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #8B4513;
}

.edit-icon {
    flex: 0 0 auto;
    color: #9ca3af;
    font-size: 0.95rem;
}

.selected-city-display:hover .edit-icon {
    color: #8B4513;
}

.navigation-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    flex: 1;
    justify-content: flex-end;
    max-width: 400px;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    background: #8B4513;
    border: 2px solid #8B4513;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 90px;
    white-space: nowrap;
}

    .nav-btn:hover {
        background: #A0522D;
        border-color: #A0522D;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
    }

.prev-btn {
    background: linear-gradient(135deg, #8B4513, #A0522D);
}

.next-btn {
    background: linear-gradient(135deg, #A0522D, #8B4513);
}

.date-picker {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 150px;
    min-width: 140px;
}

.date-input {
    border: 2px solid #8B4513;
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    background: #ffffff;
    color: #495057;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
}

    .date-input:focus {
        border-color: #A0522D;
        outline: none;
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
    }

.month-picker {
    max-width: 120px;
    min-width: 100px;
}

.year-picker {
    max-width: 110px;
    min-width: 90px;
}

.date-picker-divider {
    color: #D1CCC4;
    font-weight: 300;
    font-size: 1.2rem;
    padding: 0 0.2rem;
    user-select: none;
}

.date-cal-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
}

.btn-text {
    /* default */
}

.bp-location-info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    background: rgba(183, 65, 14, 0.05);
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #E8E0D5;
    min-height: 44px;
    overflow-x: auto;
}

.bp-location-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #2D2D2D;
    padding: 0.2rem 0;
    white-space: nowrap;
    flex-shrink: 0;
}

    .bp-location-info-item i {
        color: #B7410E;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

.bp-location-info-divider {
    color: #D1CCC4;
    font-weight: 300;
    font-size: 1rem;
    padding: 0 0.1rem;
    user-select: none;
    flex-shrink: 0;
}

.bp-info-label {
    font-weight: 500;
    color: #2D2D2D;
    opacity: 0.65;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.bp-info-value {
    font-weight: 600;
    color: #2D2D2D;
    font-size: 0.8rem;
    white-space: nowrap;
}

.bp-info-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #DC2626;
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
    background: #FEE2E2;
    border-radius: 8px;
    border-left: 3px solid #DC2626;
}

    .bp-info-error i {
        color: #DC2626;
    }


/* ============================================================
   📌 MONTH VIEW BASIC
   ============================================================ */

.month-view-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-container {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-header th {
    background: #8B4513;
    color: #fff;
    padding: 12px;
}

.calendar-body td {
    border: 1px solid #eee;
    height: 90px;
    text-align: center;
    vertical-align: top;
    position: relative;
}

.empty-day {
    background: #f5f5f5;
}

.day-number {
    font-weight: bold;
    display: block;
    margin-top: 4px;
}

.today {
    background: #8B4513 !important;
    color: #fff;
}

.weekend {
    background: #fff8ef;
}

.current-month-display {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B4513;
}

.tithi-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5a3e2b;
}

.paksha {
    font-size: 0.65rem;
    color: #777;
}

.festival {
    font-size: 0.65rem;
    color: #b00020;
    line-height: 1.1;
}

.shukla {
    background-color: #ffe5b4;
}

.krishna {
    background-color: #b2dfdb;
}


/* ============================================================
   📌 MONTH VIEW PRO
   ============================================================ */

.bg-gradient-primary {
    background: linear-gradient(135deg, #b44c16 0%, #8e3308 100%);
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.carousel-content {
    flex: 1;
    min-width: 0;
}

.carousel-nav-left,
.carousel-nav-right {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 5;
    background: white;
    border-color: #b44c16;
    color: white;
}

    .carousel-nav-left:hover:not(:disabled),
    .carousel-nav-right:hover:not(:disabled) {
        background: white;
        color: white;
        border-color: #b44c16;
        transform: scale(1.1);
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    }

    .carousel-nav-left:disabled,
    .carousel-nav-right:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        box-shadow: none;
    }

.transition-slide {
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.calendar-cell {
    cursor: pointer;
    transition: all 0.2s;
    background-color: white;
}

    .calendar-cell:hover {
        background-color: #f8f9fa;
        transform: scale(1.03);
        z-index: 2;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        position: relative;
    }

.today-cell {
    background: #fff3e8 !important;
    border: 2px solid #b44c16 !important;
    position: relative;
}

    .today-cell::after {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        border-radius: 4px;
        border: 2px solid #667eea;
        pointer-events: none;
    }

.day-content {
    padding: 4px 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sun-moon-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 6px;
    font-size: 0.55rem;
    color: #6c757d;
    padding: 2px 0;
    border-bottom: 1px dashed #e9ecef;
    min-height: 22px;
    align-items: center;
}

.sun-moon-item {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    white-space: nowrap;
    font-size: 0.5rem;
}

    .sun-moon-item i {
        font-size: 0.55rem;
        color: #667eea;
    }

.tithi-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    gap: 0px;
}

.tithi-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.tithi-name {
    font-size: 0.7rem;
    color: #b44c16;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: rgba(214, 51, 132, 0.08);
    padding: 0px 8px;
    border-radius: 10px;
    margin-top: 1px;
}

.astro-bottom {
    padding: 2px 0;
    border-top: 1px dashed #e9ecef;
    margin-top: auto;
}

.astro-row {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.55rem;
    line-height: 1.3;
    padding: 1px 0;
}

.astro-label {
    color: #6c757d;
    font-weight: 500;
    min-width: 42px;
    font-size: 0.5rem;
    letter-spacing: 0.2px;
}

.astro-value {
    color: #2c3e50;
    font-weight: 600;
    flex: 1;
    font-size: 0.55rem;
}

.astro-time {
    color: #b44c16;
    font-size: 0.45rem;
    font-family: monospace;
    background: #f8f9fa;
    padding: 0px 4px;
    border-radius: 3px;
}

.tithi-item {
    transition: all 0.2s;
    cursor: pointer;
}

    .tithi-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.indicator {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    padding: 0;
    line-height: 32px;
    transition: all 0.3s;
    border: 2px solid #dee2e6;
    background: white;
    font-weight: 600;
}

    .indicator.active {
        background: #b44c16;
        color: white;
        border-color: #b44c16;
        transform: scale(1.15);
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    }

    .indicator:hover:not(.active) {
        border-color: #b44c16;
        background: #b44c16;
        transform: scale(1.05);
    }

.year-btn {
    min-width: 50px;
    padding: 3px 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

    .year-btn:hover {
        transform: translateY(-2px);
    }

.calendar-footer-info {
    color: #b44c16;
    line-height: 1.4;
    margin-top: 20px !important;
    padding-top: 0 !important;
}

    .calendar-footer-info .title {
        font-size: 1rem;
        font-weight: 700;
        color: #8e3308;
    }

    .calendar-footer-info .source {
        color: #b44c16;
        font-size: 1.15rem;
        font-weight: 700;
    }

    .calendar-footer-info .subtitle {
        font-size: 0.85rem;
        color: #b44c16;
    }


/* ============================================================
   📌 LOADING SPINNER (Fire Animation)
   ============================================================ */

.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.havan {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #8b4513, #5a2d0c);
    border-radius: 0 0 12px 12px;
    position: relative;
    box-shadow: inset 0 -6px 10px rgba(0,0,0,0.4);
}

.fire {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
}

    .fire span {
        position: absolute;
        bottom: 0;
        width: 20px;
        height: 60px;
        background: radial-gradient(circle, #ffd700, #ff4500, transparent);
        border-radius: 50%;
        animation: flame 1.2s infinite ease-in-out;
    }

        .fire span:nth-child(1) {
            left: -20px;
            animation-delay: 0s;
        }

        .fire span:nth-child(2) {
            left: 0;
            height: 70px;
            animation-delay: 0.2s;
        }

        .fire span:nth-child(3) {
            left: 20px;
            animation-delay: 0.4s;
        }

@keyframes flame {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.2) translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
}

.loading-text {
    margin-top: 20px;
    font-weight: 600;
    color: #5a2d0c;
    font-size: 1.05rem;
}


/* ============================================================
   📌 MOBILE MENU
   ============================================================ */

.panchang-wrapper {
    background: #f6eee7;
    border-radius: 16px;
}

.panchang-title {
    color: #4a2f1b;
    letter-spacing: 0.5px;
}

.info-badge {
    font-size: 0.73rem;
    text-align-last: center;
}

.mini-title {
    font-weight: 700;
    font-size: 0.78rem;
}

.mini-date {
    font-weight: 700;
    font-size: 0.78rem;
}

.mini-grid--fixed {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 2px 15px;
}

    .mini-grid--fixed::before {
        content: "";
        position: absolute;
        top: 4px;
        bottom: 2px;
        left: 50%;
        width: 1px;
        background: #4a2f1b;
        transform: translateX(-0.5px);
        pointer-events: none;
    }

.mini-cell {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    border-bottom: 1px dashed rgba(166,124,82,0.22);
    min-width: 0;
}

    .mini-cell:nth-child(3),
    .mini-cell:nth-child(6) {
        border-bottom: 0;
    }

.mini-label {
    color: #6f4e37;
    font-weight: 700;
    font-size: 0.73rem;
    line-height: 1.1;
    white-space: nowrap;
}

.mini-value {
    color: #4a2f1b;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: right;
    max-width: 62%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-container-maui {
    background: #f6eee7;
    border-radius: 16px;
    padding: 0.9rem;
}

.page-card-maui {
    background: #fff;
    border: 1px solid #efdfcc;
    border-radius: 14px;
    padding: 10px 12px;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: .12s;
}

    .page-card-maui:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.12);
        cursor: pointer;
    }

.card-head-inline {
    display: flex;
    align-items: start;
    gap: 10px;
    min-height: 34px;
}

.page-card-icon-maui {
    font-size: 22px;
    color: #7A563E;
    flex: 0 0 auto;
}

.page-card-title-maui {
    font-weight: 700;
    font-size: 0.98rem;
    color: #6f4e37;
    line-height: 1.2;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-card-desc-maui {
    margin-top: 6px;
    font-size: 0.78rem;
    opacity: 0.85;
    line-height: 1.25;
    color: #5c4635;
    cursor: pointer;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .page-card-desc-maui.expanded {
        -webkit-line-clamp: unset;
        overflow: visible;
    }


/* ============================================================
   📌 LANGUAGE SELECTOR
   ============================================================ */

.lang-wrapper {
    width: 200px;
}

.bp-lang-dropdown {
    background: #f5ede5 !important;
    border: 2px solid #8B5E3C !important;
    color: #5A3E2B !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px;
    transition: 0.3s ease;
    box-shadow: 0 3px 6px rgba(90, 62, 43, 0.15);
}

    .bp-lang-dropdown:hover {
        border-color: #5A3E2B !important;
    }

    .bp-lang-dropdown:focus {
        background: #fff7ef !important;
        border-color: #5A3E2B !important;
        box-shadow: 0 0 6px rgba(90, 62, 43, 0.4) !important;
    }

    .bp-lang-dropdown option {
        color: #5A3E2B;
        font-weight: 500;
    }

.bp-lang-wrapper {
    position: relative;
    display: inline-block;
}

.bp-lang-btn {
    background: #f5ede5;
    border: 2px solid #8B5E3C;
    color: #5A3E2B;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 73px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 3px 6px rgba(90, 62, 43, 0.15);
}

    .bp-lang-btn:hover {
        border-color: #5A3E2B;
    }

    .bp-lang-btn:focus-visible {
        outline: none;
        background: #fff7ef;
        box-shadow: 0 0 6px rgba(90, 62, 43, 0.4);
    }

.bp-lang-arrow {
    margin-left: 6px;
    font-size: 0.8rem;
}

.bp-lang-menu {
    position: absolute;
    top: 110%;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: #f5ede5;
    border: 2px solid #8B5E3C;
    border-radius: 10px;
    min-width: 73px;
    padding: 6px;
    box-shadow: 0 6px 14px rgba(90, 62, 43, 0.18);
    animation: fadeIn 0.15s ease-out;
}

.bp-lang-item {
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    padding: 8px 10px;
    color: #5A3E2B;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .bp-lang-item + .bp-lang-item {
        margin-top: 2px;
    }

    .bp-lang-item:hover {
        background: #fff7ef;
    }

    .bp-lang-item:active {
        background: rgba(139, 94, 60, 0.15);
    }

    .bp-lang-item:focus-visible {
        outline: none;
        box-shadow: 0 0 0 2px rgba(90, 62, 43, 0.25);
    }


/* ============================================================
   📌 SETTINGS ICON
   ============================================================ */

.bp-settings-btn {
    background: transparent;
    border: 0;
    padding: 6px;
    border-radius: 10px;
    cursor: pointer;
    line-height: 0;
}

.bp-settings-ico {
    color: #fff;
    font-size: 22px;
    display: inline-block;
    transition: transform 120ms ease;
}

.bp-settings-btn:hover .bp-settings-ico {
    transform: rotate(10deg);
}

.bp-spin-once {
    animation: bp-gear-spin 260ms ease-out;
}

@keyframes bp-gear-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(35deg) scale(1.05);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}


/* ============================================================
   📌 PAYMENT & CHARGE
   ============================================================ */

.bp-payment-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    background: var(--bp-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bp-payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bp-payment-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .bp-payment-title i {
        color: var(--bp-primary);
    }

.bp-payment-subtitle {
    color: var(--bp-text-light);
    font-size: 0.9rem;
}

.bp-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    box-shadow: var(--bp-shadow);
}

.bp-empty-icon {
    font-size: 4rem;
    color: var(--bp-primary);
    margin-bottom: 1rem;
}

.bp-empty-state h3 {
    margin-bottom: 0.5rem;
    color: var(--bp-text);
}

.bp-empty-state p {
    color: var(--bp-text-light);
    margin-bottom: 1.5rem;
}

.bp-error-message {
    background: var(--bp-error-bg);
    color: var(--bp-error);
    padding: 0.75rem 1rem;
    border-radius: var(--bp-radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 4px solid var(--bp-error);
}

.bp-payment-card {
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    padding: 2rem;
    box-shadow: var(--bp-shadow);
    transition: var(--bp-transition);
}

    .bp-payment-card:hover {
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
    }

.bp-payment-amount {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bp-border);
}

.bp-amount-label {
    font-size: 0.85rem;
    color: var(--bp-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bp-amount-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bp-primary);
    margin: 0.5rem 0;
}

.bp-amount-note {
    font-size: 0.75rem;
    color: var(--bp-text-light);
    margin: 0;
}

.bp-payment-methods {
    margin-bottom: 1.5rem;
}

.bp-method-item {
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    transition: var(--bp-transition);
}

    .bp-method-item.active {
        border-color: var(--bp-primary);
        background: rgba(183, 65, 14, 0.05);
    }

.bp-method-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .bp-method-radio input {
        width: 18px;
        height: 18px;
        accent-color: var(--bp-primary);
        cursor: pointer;
    }

    .bp-method-radio span {
        font-weight: 500;
        color: var(--bp-text);
    }

.bp-method-icons {
    display: flex;
    gap: 0.75rem;
    color: var(--bp-text-light);
    font-size: 1.1rem;
}

.bp-loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.bp-btn-pay {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--bp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

    .bp-btn-pay:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(183, 65, 14, 0.3);
    }

.bp-security-note {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--bp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--bp-text-light);
}

    .bp-security-note i {
        color: var(--bp-success);
    }

.bp-charge-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bp-bg);
    padding: 2rem;
}

.bp-charge-card {
    max-width: 500px;
    width: 100%;
    background: var(--bp-surface);
    border-radius: var(--bp-radius);
    border: 1px solid var(--bp-border);
    padding: 2rem;
    box-shadow: var(--bp-shadow);
    transition: var(--bp-transition);
}

    .bp-charge-card:hover {
        box-shadow: var(--bp-shadow-hover);
        border-color: var(--bp-gold);
    }

.bp-processing-state {
    text-align: center;
}

.bp-processing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bp-processing-icon i {
        font-size: 2.5rem;
        color: white;
    }

.bp-processing-state h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--bp-text);
    margin-bottom: 0.5rem;
}

.bp-processing-state p {
    color: var(--bp-text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.bp-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--bp-border);
    border-radius: 3px;
    overflow: hidden;
}

.bp-progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bp-primary) 0%, var(--bp-gold) 100%);
    border-radius: 3px;
    animation: bp-progress 2s ease-in-out infinite;
}

@keyframes bp-progress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.bp-success-state {
    text-align: center;
}

.bp-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bp-success-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bp-success-icon i {
        font-size: 2.5rem;
        color: var(--bp-success);
    }

.bp-success-state h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--bp-success);
    margin-bottom: 0.5rem;
}

.bp-success-state p {
    color: var(--bp-text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.bp-failure-state {
    text-align: center;
}

.bp-failure-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bp-error-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bp-failure-icon i {
        font-size: 2.5rem;
        color: var(--bp-error);
    }

.bp-failure-state h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--bp-error);
    margin-bottom: 0.5rem;
}

.bp-failure-state p {
    color: var(--bp-text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.bp-details-box {
    background: var(--bp-bg);
    border-radius: var(--bp-radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
    border: 1px solid var(--bp-border);
}

.bp-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

    .bp-detail-row:last-child {
        margin-bottom: 0;
    }

.bp-detail-label {
    color: var(--bp-text-light);
    font-weight: 500;
}

.bp-detail-value {
    color: var(--bp-text);
    font-weight: 600;
    word-break: break-all;
    text-align: right;
    max-width: 60%;
}

.bp-button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bp-redirect-text {
    font-size: 0.8rem;
    color: #6B6B6B;
    margin-top: 10px;
}

.bp-circle-timer {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 10px auto;
}

    .bp-circle-timer svg {
        transform: rotate(-90deg);
    }

    .bp-circle-timer .bp-bg {
        fill: none;
        stroke: #E8E0D5;
        stroke-width: 6;
    }

    .bp-circle-timer .bp-progress {
        fill: none;
        stroke: #B7410E;
        stroke-width: 6;
        stroke-linecap: round;
        transition: stroke-dashoffset 1s linear;
    }

.bp-timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 600;
    color: #B7410E;
}


/* ============================================================
   📌 RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1200px) {
    .bp-grid-4,
    .bp-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bp-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bp-sunmoon-box-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .bp-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .bp-grid-3,
    .bp-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-grid-box,
    .bp-box-grid-2,
    .bp-box-grid-3,
    .bp-transit-box-grid,
    .bp-astuday-box-grid,
    .bp-panchak-box-grid {
        grid-template-columns: 1fr;
    }

    .bp-eclipse-card-body {
        grid-template-columns: 1fr;
    }

    .bp-eclipse-images {
        grid-template-columns: 1fr 1fr;
    }

    .bp-special-grid {
        grid-template-columns: 1fr;
    }

    .bp-tables-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bp-sunmoon-box-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-cart-content,
    .bp-checkout-content {
        grid-template-columns: 1fr;
    }

    .bp-cart-summary,
    .bp-order-summary {
        position: static;
    }

    .bp-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bp-two-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bp-page {
        padding: 1.5rem;
    }

    .bp-location-info-bar,
    .bp-year-info-bar,
    .bp-month-info-bar {
        gap: 0.6rem;
        padding: 0.5rem 1rem;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .bp-location-info-item,
    .bp-year-info-item,
    .bp-month-info-item {
        font-size: 0.75rem;
        gap: 0.3rem;
    }

        .bp-location-info-item i,
        .bp-year-info-item i,
        .bp-month-info-item i {
            font-size: 0.8rem;
        }

    .bp-info-label {
        font-size: 0.7rem;
    }

    .bp-info-value {
        font-size: 0.75rem;
    }

    .bp-year-value,
    .bp-month-value {
        font-size: 0.9rem;
    }

    .bp-box-grid {
        padding: 0.6rem;
        gap: 0.5rem;
    }

    .bp-box-item {
        padding: 0.6rem 0.8rem;
    }

    .bp-box-name {
        font-size: 0.8rem;
    }

    .bp-sunmoon-box-item {
        padding: 0.6rem 0.8rem;
    }

    .bp-sunmoon-box-name {
        font-size: 0.75rem;
    }

    .bp-astuday-box-item {
        padding: 0.6rem 0.8rem;
    }

    .bp-astuday-box-name {
        font-size: 0.9rem;
    }

    .bp-kshaya-ad-left,
    .bp-kshaya-ad-right {
        display: none;
    }

    .bp-kshaya-main {
        width: 100%;
    }

    .bp-desktop-nav {
        display: none;
    }

    .bp-mobile-menu-btn {
        display: block;
    }

    .bp-header-container {
        height: 64px;
    }

    .bp-logo-text {
        font-size: 1.2rem;
    }

    .web-content {
        padding: 1rem;
    }

    .web-shell .bp-main-header {
        display: none;
    }

    .web-mobile-header {
        display: flex;
    }

    .calendar-table td {
        height: 110px;
        min-width: 70px;
    }

    .tithi-number {
        font-size: 1.3rem;
    }

    .sun-moon-top {
        font-size: 0.45rem;
    }

    .astro-row {
        font-size: 0.45rem;
    }

    .astro-label {
        min-width: 32px;
        font-size: 0.4rem;
    }

    .astro-value {
        font-size: 0.45rem;
    }

    .astro-time {
        font-size: 0.4rem;
    }

    .carousel-nav-left,
    .carousel-nav-right {
        width: 40px;
        height: 40px;
    }

        .carousel-nav-left i,
        .carousel-nav-right i {
            font-size: 1.5rem !important;
        }

    .bp-sandhya-box-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0.8rem;
    }

    .bp-sandhya-box-item {
        padding: 0.7rem 0.8rem;
    }

    .bp-sandhya-box-name {
        font-size: 0.8rem;
    }

    .bp-edit-grid {
        grid-template-columns: 1fr;
    }

    .bp-edit-field-full {
        grid-column: 1;
    }

    .bp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bp-nakshatra-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.75rem;
    }

    .bp-nakshatra-name {
        font-size: 0.7rem;
    }

    .bp-nakshatra-icon-wrapper {
        width: 40px;
        height: 40px;
    }

        .bp-nakshatra-icon-wrapper i {
            font-size: 1.2rem;
        }

    .bp-rashi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .bp-rashi-icon-wrapper {
        width: 45px;
        height: 45px;
    }

        .bp-rashi-icon-wrapper i {
            font-size: 1.2rem;
        }

    .bp-rashi-hindi {
        font-size: 0.8rem;
    }

    .bp-legal-content {
        padding: 1rem;
    }

    .bp-legal-section h2 {
        font-size: 1rem;
    }

    .bp-legal-section p,
    .bp-legal-section li {
        font-size: 0.8rem;
    }

    .bp-footer-row {
        gap: 1.5rem;
    }

    .navigation-buttons {
        max-width: 350px;
    }

    .nav-btn {
        min-width: 80px;
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .date-picker {
        max-width: 140px;
        min-width: 130px;
    }

    .month-picker {
        max-width: 90px;
        min-width: 70px;
    }

    .year-picker {
        max-width: 80px;
        min-width: 60px;
    }

    .date-cal-container {
        padding: 0.6rem 0.75rem;
    }

    .navigation-buttons {
        gap: 0.5rem;
    }

    .nav-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .date-input {
        max-width: 140px;
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .bp-page {
        padding: 1rem;
    }

    .bp-page-title {
        font-size: 1.5rem;
    }

    .bp-grid-2,
    .bp-grid-3,
    .bp-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-card-inner {
        padding: 1rem 0.5rem;
    }

    .bp-card-icon {
        width: 50px;
        height: 50px;
    }

        .bp-card-icon i {
            font-size: 1.5rem;
        }

    .bp-card-title {
        font-size: 0.8rem;
    }

    .bp-planet-card-inner {
        padding: 1rem 0.5rem;
    }

    .bp-planet-icon {
        width: 55px;
        height: 55px;
    }

        .bp-planet-icon i {
            font-size: 1.5rem;
        }

    .bp-box-grid {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .bp-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-box-seq {
        min-width: 22px;
        height: 22px;
        font-size: 0.55rem;
    }

    .bp-box-name {
        font-size: 0.8rem;
        flex: 1;
    }

    .bp-box-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-box-time {
        font-size: 0.75rem;
        gap: 0.3rem;
    }

    .bp-box-duration {
        font-size: 0.7rem;
        padding-left: 1.2rem;
    }

    .bp-box-item-body {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.2rem;
        margin-top: 0.2rem;
    }

    .bp-box-item-header {
        gap: 0.3rem;
        margin-bottom: 0.1rem;
        flex-wrap: wrap;
    }

    .bp-transit-box-grid {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .bp-transit-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-transit-box-item-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .bp-astuday-box-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0.5rem;
    }

    .bp-astuday-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-astuday-box-seq {
        min-width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .bp-astuday-box-icon {
        font-size: 0.9rem;
    }

    .bp-astuday-box-name {
        font-size: 0.85rem;
    }

    .bp-astuday-box-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-astuday-box-time {
        font-size: 0.75rem;
    }

    .bp-astuday-box-status {
        font-size: 0.6rem;
    }

    .bp-sunmoon-box-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0.5rem;
    }

    .bp-sunmoon-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-sunmoon-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bp-sunmoon-box-icon {
        font-size: 0.9rem;
    }

    .bp-sunmoon-box-name {
        font-size: 0.75rem;
    }

    .bp-sunmoon-box-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.35rem;
    }

    .bp-sunmoon-box-time {
        font-size: 0.65rem;
    }

    .bp-sunmoon-box-utc {
        font-size: 0.55rem;
    }

    .bp-panchak-box-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .bp-panchak-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-panchak-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bp-panchak-box-icon {
        font-size: 0.9rem;
    }

    .bp-panchak-box-name {
        font-size: 0.75rem;
    }

    .bp-panchak-box-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.35rem;
    }

    .bp-panchak-box-value {
        font-size: 0.65rem;
    }

    .bp-panchak-box-status {
        font-size: 0.6rem;
    }

    .bp-eclipse-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .bp-eclipse-card-body {
        padding: 1rem;
    }

    .bp-eclipse-images {
        gap: 0.5rem;
    }

    .bp-phase-image {
        max-height: 100px;
    }

    .bp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bp-product-info {
        padding: 0.75rem;
    }

    .bp-product-title {
        font-size: 0.85rem;
    }

    .bp-btn-view,
    .bp-btn-cart {
        font-size: 0.65rem;
        padding: 0.4rem 0.2rem;
    }

    .bp-cart-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .bp-cart-table-header {
        display: none;
    }

    .bp-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .bp-product-title {
        font-size: 1.35rem;
    }

    .bp-current-price {
        font-size: 1.5rem;
    }

    .bp-action-buttons {
        flex-direction: column;
    }

    .bp-thumbnail {
        width: 55px;
        height: 55px;
    }

    .bp-toast-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
    }

    .bp-about-card-header {
        padding: 0.75rem 1rem;
    }

        .bp-about-card-header h3 {
            font-size: 1rem;
        }

    .bp-about-card-body {
        padding: 1rem;
    }

    .bp-about-text {
        font-size: 0.85rem;
    }

    .bp-contact-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bp-settings-wrapper {
        padding: 1rem;
    }

    .bp-settings-title {
        font-size: 1.5rem;
    }

    .bp-popup-card {
        max-width: 95%;
    }

    .bp-theme-options {
        flex-direction: column;
    }

    .bp-popup-footer {
        flex-direction: column;
    }

        .bp-popup-footer button {
            width: 100%;
            justify-content: center;
        }

    .bp-info-bar {
        gap: 0.75rem;
    }

    .bp-info-item {
        font-size: 0.7rem;
    }

    .bp-account-info {
        flex-direction: column;
        text-align: center;
    }

    .bp-account-actions {
        flex-direction: column;
        width: 100%;
    }

    .bp-save-all {
        flex-direction: column;
    }

        .bp-save-all button {
            width: 100%;
            justify-content: center;
        }

    .bp-toast-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
    }

    .bp-legal-container {
        padding: 1rem;
    }

    .bp-legal-title {
        font-size: 1.5rem;
    }

    .bp-sitemap-container {
        padding: 1rem;
    }

    .bp-sitemap-title {
        font-size: 1.5rem;
    }

    .bp-sitemap-content {
        padding: 1rem;
    }

    .bp-sitemap-section ul {
        grid-template-columns: 1fr;
    }

    .bp-sitemap-section h2 {
        font-size: 1rem;
    }

    .bp-sitemap-nakshatra-grid {
        grid-template-columns: 1fr;
    }

    .bp-rashi-container {
        padding: 1rem;
    }

    .bp-rashi-title {
        font-size: 1.5rem;
    }

    .bp-rashi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .bp-rashi-icon-wrapper {
        width: 45px;
        height: 45px;
    }

        .bp-rashi-icon-wrapper i {
            font-size: 1.2rem;
        }

    .bp-rashi-hindi {
        font-size: 0.8rem;
    }

    .bp-nakshatra-container {
        padding: 1rem;
    }

    .bp-nakshatra-title {
        font-size: 1.5rem;
    }

    .bp-nakshatra-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.75rem;
    }

    .bp-nakshatra-name {
        font-size: 0.7rem;
    }

    .bp-nakshatra-icon-wrapper {
        width: 40px;
        height: 40px;
    }

        .bp-nakshatra-icon-wrapper i {
            font-size: 1.2rem;
        }

    .bp-muhurt-container {
        padding: 1rem;
    }

    .bp-muhurt-title {
        font-size: 1.5rem;
    }

    .bp-muhurt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bp-muhurt-card-inner {
        padding: 1rem 0.5rem;
    }

    .bp-muhurt-icon-wrapper {
        width: 50px;
        height: 50px;
    }

        .bp-muhurt-icon-wrapper i {
            font-size: 1.5rem;
        }

    .bp-muhurt-card-title {
        font-size: 0.8rem;
    }

    .bp-planet-container {
        padding: 1rem;
    }

    .bp-planet-title {
        font-size: 1.4rem;
    }

    .bp-planet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bp-planet-card-inner {
        padding: 1rem 0.5rem;
    }

    .bp-planet-icon {
        width: 55px;
        height: 55px;
    }

        .bp-planet-icon i {
            font-size: 1.5rem;
        }

    .bp-planet-name {
        font-size: 0.85rem;
    }

    .bp-planet-header-icon {
        font-size: 2.5rem;
    }

    .bp-eclipse-container {
        padding: 1rem;
    }

    .bp-eclipse-title {
        font-size: 1.35rem;
    }

    .bp-transit-container {
        padding: 1rem;
    }

    .bp-transit-title {
        font-size: 1.35rem;
    }

    .bp-transit-box-grid {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .bp-transit-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-transit-box-item-header {
        gap: 0.3rem;
        margin-bottom: 0.2rem;
    }

    .bp-transit-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bp-transit-box-planet-name {
        font-size: 0.75rem;
    }

    .bp-transit-box-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-transit-box-charan {
        font-size: 0.65rem;
    }

    .bp-transit-box-charan-value {
        min-width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .bp-transit-box-datetime {
        font-size: 0.65rem;
    }

    .bp-transit-box-duration {
        font-size: 0.65rem;
    }

    .bp-retrograde-grid {
        grid-template-columns: 1fr;
    }

    .bp-kaal-container {
        padding: 1rem;
    }

    .bp-kaal-title {
        font-size: 1.35rem;
    }

    .bp-kaal-box-grid {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .bp-kaal-box-col {
        gap: 0.4rem;
    }

    .bp-kaal-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-kaal-box-item-header {
        gap: 0.3rem;
        margin-bottom: 0.2rem;
    }

    .bp-kaal-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bp-kaal-box-name {
        font-size: 0.75rem;
    }

    .bp-kaal-box-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-kaal-box-time {
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .bp-kaal-box-duration {
        font-size: 0.65rem;
    }

    .bp-kaal-info-note {
        font-size: 0.65rem;
        padding: 0.6rem 0.75rem;
    }

    .bp-hora-container {
        padding: 1rem;
    }

    .bp-hora-title {
        font-size: 1.35rem;
    }

    .bp-hora-box-grid {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .bp-hora-box-col {
        gap: 0.4rem;
    }

    .bp-hora-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-hora-box-item-header {
        gap: 0.3rem;
        margin-bottom: 0.2rem;
    }

    .bp-hora-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bp-hora-box-planet {
        font-size: 0.75rem;
    }

    .bp-hora-box-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-hora-box-time {
        font-size: 0.65rem;
    }

    .bp-hora-box-utc {
        font-size: 0.55rem;
    }

    .bp-chaughadiya-container {
        padding: 1rem;
    }

    .bp-chaughadiya-title {
        font-size: 1.35rem;
    }

    .bp-chaughadiya-box-grid {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .bp-chaughadiya-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-chaughadiya-box-item-header {
        gap: 0.3rem;
        margin-bottom: 0.2rem;
    }

    .bp-chaughadiya-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bp-chaughadiya-box-name {
        font-size: 0.75rem;
    }

    .bp-chaughadiya-box-class-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-chaughadiya-box-time {
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .bp-chaughadiya-box-duration {
        font-size: 0.65rem;
    }

    .bp-legend {
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
    }

    .bp-legend-item {
        font-size: 0.65rem;
    }

    .bp-legend-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.35rem;
    }

    .bp-sandhya-container {
        padding: 1rem;
    }

    .bp-sandhya-title {
        font-size: 1.35rem;
    }

    .bp-sandhya-box-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.6rem;
    }

    .bp-sandhya-box-item {
        padding: 0.6rem 0.7rem;
    }

    .bp-sandhya-box-item-header {
        gap: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .bp-sandhya-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bp-sandhya-box-name {
        font-size: 0.8rem;
    }

    .bp-sandhya-box-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-sandhya-box-time {
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .bp-sandhya-box-duration {
        font-size: 0.65rem;
    }

    .bp-lagna-container {
        padding: 1rem;
    }

    .bp-lagna-title {
        font-size: 1.35rem;
    }

    .bp-lagna-box-grid {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .bp-lagna-box-col {
        gap: 0.4rem;
    }

    .bp-lagna-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-lagna-box-item-header {
        gap: 0.3rem;
        margin-bottom: 0.2rem;
    }

    .bp-lagna-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bp-lagna-box-symbol {
        font-size: 1rem;
    }

    .bp-lagna-box-name {
        font-size: 0.75rem;
    }

    .bp-lagna-box-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-lagna-box-date {
        font-size: 0.6rem;
    }

    .bp-lagna-box-time {
        font-size: 0.65rem;
    }

    .bp-yuti-container {
        padding: 1rem;
    }

    .bp-yuti-title {
        font-size: 1.35rem;
    }

    .bp-yuti-box-grid {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .bp-yuti-box-col {
        gap: 0.4rem;
    }

    .bp-yuti-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-yuti-box-item-header {
        gap: 0.3rem;
        margin-bottom: 0.2rem;
    }

    .bp-yuti-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bp-yuti-box-name {
        font-size: 0.75rem;
    }

    .bp-yuti-box-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-yuti-box-planet {
        padding: 0.25rem 0.4rem;
    }

    .bp-yuti-box-planet-img {
        width: 24px;
        height: 24px;
    }

    .bp-yuti-box-planet-name {
        font-size: 0.7rem;
    }

    .bp-yuti-box-planet-sub {
        font-size: 0.55rem;
    }

    .bp-yuti-box-plus {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

        .bp-yuti-box-plus i {
            font-size: 0.6rem;
        }

    .bp-yuti-box-date {
        font-size: 0.65rem;
    }

    .bp-special-grid {
        grid-template-columns: 1fr;
    }

    .bp-tables-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bp-muhurt-table th,
    .bp-muhurt-table td {
        padding: 0.4rem 0.5rem;
        font-size: 0.7rem;
    }

    .bp-name-cell {
        min-width: 120px;
    }

    .bp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-adhik-container {
        padding: 1rem;
    }

    .bp-adhik-title {
        font-size: 1.35rem;
    }

    .bp-kshaya-container {
        padding: 1rem;
    }

    .bp-kshaya-title {
        font-size: 1.35rem;
    }

    .bp-about-container {
        padding: 1rem;
    }

    .bp-about-title {
        font-size: 1.5rem;
    }

    .bp-contact-container {
        padding: 1rem;
    }

    .bp-contact-title {
        font-size: 1.5rem;
    }

    .bp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bp-form-actions {
        flex-direction: column;
    }

    .bp-btn-primary,
    .bp-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .bp-map-frame {
        height: 250px;
    }

    .bp-footer-container {
        padding: 2rem 1.5rem 1rem;
    }

    .bp-footer-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bp-footer-col {
        text-align: center;
    }

    .bp-footer-brand {
        justify-content: center;
    }

    .bp-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .bp-social-links {
        justify-content: center;
    }

    .bp-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .bp-subscribe-form {
        flex-direction: column;
    }

    .bp-subscribe-btn {
        justify-content: center;
    }

    .bp-help-button {
        margin: 0 auto;
    }

    .bp-footer-link {
        margin: 0 auto;
    }

    .date-location-row {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .location-search {
        flex: 1 1 100%;
        order: 1;
        min-width: auto;
    }

    .navigation-buttons {
        order: 2;
        width: 100%;
        justify-content: center;
        max-width: none;
        gap: 1rem;
    }

    .nav-btn {
        flex: 1;
        max-width: 120px;
    }

    .date-picker {
        flex: 1;
        max-width: 150px;
    }

    .month-picker {
        max-width: 85px;
        min-width: 65px;
    }

    .year-picker {
        max-width: 75px;
        min-width: 55px;
    }

    .date-input {
        padding: 0.35rem 0.4rem;
        font-size: 0.7rem;
    }

    .date-picker-divider {
        font-size: 0.9rem;
        padding: 0 0.1rem;
    }

    .bp-location-info-bar {
        gap: 0.4rem;
        padding: 0.4rem 0.75rem;
        margin-bottom: 1rem;
        border-radius: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .bp-location-info-item {
        font-size: 0.7rem;
        gap: 0.25rem;
    }

        .bp-location-info-item i {
            font-size: 0.7rem;
        }

    .bp-info-label {
        font-size: 0.65rem;
    }

    .bp-info-value {
        font-size: 0.7rem;
    }

    .bp-location-info-divider {
        font-size: 0.8rem;
    }

    .bp-year-info-bar {
        gap: 0.4rem;
        padding: 0.4rem 0.75rem;
        margin-bottom: 1rem;
        border-radius: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .bp-year-info-item {
        font-size: 0.7rem;
        gap: 0.25rem;
    }

        .bp-year-info-item i {
            font-size: 0.7rem;
        }

    .bp-year-value {
        font-size: 0.8rem;
    }

    .bp-year-info-divider {
        font-size: 0.8rem;
    }

    .bp-month-info-bar {
        gap: 0.4rem;
        padding: 0.4rem 0.75rem;
        margin-bottom: 1rem;
        border-radius: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .bp-month-info-item {
        font-size: 0.7rem;
        gap: 0.25rem;
    }

        .bp-month-info-item i {
            font-size: 0.7rem;
        }

    .bp-month-value {
        font-size: 0.8rem;
    }

    .bp-month-info-divider {
        font-size: 0.8rem;
    }

    .bp-month-highlight {
        padding: 0.15rem 0.5rem;
    }

    .bp-year-highlight {
        padding: 0.15rem 0.5rem;
    }

    .bp-charge-container {
        padding: 1rem;
    }

    .bp-charge-card {
        padding: 1.5rem;
    }

    .bp-processing-icon,
    .bp-success-icon,
    .bp-failure-icon {
        width: 65px;
        height: 65px;
    }

        .bp-processing-icon i,
        .bp-success-icon i,
        .bp-failure-icon i {
            font-size: 2rem;
        }

    .bp-processing-state h3,
    .bp-success-state h3,
    .bp-failure-state h3 {
        font-size: 1.2rem;
    }

    .bp-detail-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .bp-detail-value {
        text-align: left;
        max-width: 100%;
    }

    .bp-payment-container {
        padding: 1rem;
    }

    .bp-payment-title {
        font-size: 1.35rem;
    }

    .bp-payment-card {
        padding: 1.5rem;
    }

    .bp-amount-value {
        font-size: 2.5rem;
    }

    .bp-method-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-container,
    .register-container {
        padding: 1rem;
    }

    .brand-logo {
        padding: 1.5rem 1rem 0.75rem;
    }

    .logo-icon {
        font-size: 2.5rem;
    }

    .brand-logo h1 {
        font-size: 1.25rem;
    }

    .login-form,
    .register-form {
        padding: 1.25rem 1rem 1.5rem;
    }

    .input-field {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }

    .btn-login,
    .btn-register {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .calendar-table td {
        height: 90px;
        min-width: 50px;
    }

    .tithi-number {
        font-size: 1.1rem;
    }

    .tithi-name {
        font-size: 0.55rem;
    }

    .sun-moon-top {
        display: none;
    }

    .astro-row {
        font-size: 0.4rem;
    }

    .astro-label {
        min-width: 25px;
        font-size: 0.35rem;
    }

    .astro-value {
        font-size: 0.4rem;
    }

    .astro-time {
        font-size: 0.35rem;
    }

    .carousel-nav-left,
    .carousel-nav-right {
        width: 35px;
        height: 35px;
    }

        .carousel-nav-left i,
        .carousel-nav-right i {
            font-size: 1.2rem !important;
        }

    .indicator {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .bp-page {
        padding: 0.75rem;
    }

    .bp-page-title {
        font-size: 1.35rem;
    }

    .bp-grid-2,
    .bp-grid-3,
    .bp-grid-4 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .bp-stats-grid {
        grid-template-columns: 1fr;
    }

    .bp-stat-value {
        font-size: 1.2rem;
    }

    .bp-box-grid {
        padding: 0.3rem;
        gap: 0.3rem;
    }

    .bp-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-box-item-header {
        flex-wrap: wrap;
    }

    .bp-box-name {
        font-size: 0.75rem;
        flex: 1 1 auto;
        order: 2;
    }

    .bp-box-seq {
        order: 1;
        min-width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .bp-box-badge {
        order: 3;
        font-size: 0.5rem;
        padding: 0.05rem 0.35rem;
    }

    .bp-box-item-body {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.15rem;
        margin-top: 0.15rem;
    }

    .bp-box-time {
        font-size: 0.7rem;
        gap: 0.2rem;
    }

    .bp-box-duration {
        font-size: 0.65rem;
        padding-left: 1.2rem;
    }

    .bp-planet-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .bp-planet-card-inner {
        padding: 0.75rem 0.4rem;
    }

    .bp-planet-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }

        .bp-planet-icon i {
            font-size: 1.2rem;
        }

    .bp-planet-name {
        font-size: 0.75rem;
    }

    .bp-planet-card-arrow {
        font-size: 0.7rem;
    }

    .bp-planet-header-icon {
        font-size: 2rem;
    }

    .bp-muhurt-grid {
        grid-template-columns: 1fr;
    }

    .bp-products-grid {
        grid-template-columns: 1fr;
    }

    .bp-product-title {
        font-size: 1.2rem;
    }

    .bp-current-price {
        font-size: 1.35rem;
    }

    .bp-quantity-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .bp-breadcrumb {
        font-size: 0.7rem;
    }

    .bp-toast-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
    }

    .bp-about-container {
        padding: 0.75rem;
    }

    .bp-about-title {
        font-size: 1.35rem;
    }

    .bp-contact-container {
        padding: 0.75rem;
    }

    .bp-contact-title {
        font-size: 1.35rem;
    }

    .bp-charge-card {
        padding: 1rem;
    }

    .bp-button-group {
        flex-direction: column;
    }

    .bp-btn-primary,
    .bp-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .bp-payment-container {
        padding: 0.75rem;
    }

    .bp-payment-card {
        padding: 1rem;
    }

    .bp-amount-value {
        font-size: 2rem;
    }

    .bp-btn-pay {
        padding: 0.85rem;
        font-size: 0.9rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .modal-footer {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .calendar-table td {
        height: 75px;
        min-width: 35px;
    }

    .tithi-number {
        font-size: 0.9rem;
    }

    .tithi-name {
        font-size: 0.45rem;
        padding: 0px 4px;
    }

    .astro-bottom {
        display: none;
    }

    .carousel-nav-left,
    .carousel-nav-right {
        width: 30px;
        height: 30px;
        gap: 5px;
    }

        .carousel-nav-left i,
        .carousel-nav-right i {
            font-size: 1rem !important;
        }

    .calendar-table th {
        font-size: 0.7rem;
        padding: 6px 2px;
    }

    .bp-eclipse-title {
        font-size: 1.1rem;
    }

    .bp-eclipse-subtitle {
        font-size: 0.8rem;
    }

    .bp-eclipse-images {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }

    .bp-phase-card {
        padding: 0.4rem;
    }

    .bp-phase-label {
        font-size: 0.6rem;
    }

    .bp-phase-image {
        max-height: 70px;
    }

    .bp-detail-row {
        flex-direction: row;
        padding: 0.25rem 0;
    }

    .bp-detail-label {
        font-size: 0.7rem;
    }

    .bp-detail-value {
        font-size: 0.7rem;
    }

    .bp-note-box {
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.4rem 0.6rem;
    }

    .bp-note-label {
        font-size: 0.7rem;
    }

    .bp-note-text {
        font-size: 0.7rem;
    }

    .bp-eclipse-type-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }

    .bp-eclipse-date-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .bp-transit-box-grid {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .bp-transit-box-col {
        gap: 0.3rem;
    }

    .bp-transit-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-transit-box-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .bp-transit-box-seq {
        min-width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .bp-transit-box-planet-name {
        font-size: 0.7rem;
    }

    .bp-transit-box-badge {
        font-size: 0.5rem;
        padding: 0.05rem 0.35rem;
    }

    .bp-transit-box-charan {
        font-size: 0.6rem;
        margin-left: auto;
    }

    .bp-transit-box-charan-value {
        min-width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }

    .bp-transit-box-item-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding-top: 0.3rem;
    }

    .bp-transit-box-datetime {
        font-size: 0.6rem;
    }

    .bp-transit-box-duration {
        font-size: 0.6rem;
    }

    .bp-transit-box-header {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .bp-transit-box-header-left h3 {
        font-size: 0.8rem;
    }

    .bp-transit-box-header-left i {
        font-size: 1rem;
    }

    .bp-transit-box-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .bp-empty-state {
        padding: 2rem 1rem;
    }

    .bp-empty-icon {
        font-size: 2.5rem;
    }

    .bp-empty-state h3 {
        font-size: 0.95rem;
    }

    .bp-empty-state p {
        font-size: 0.8rem;
    }

    .bp-retrograde-summary {
        padding: 1rem;
    }

    .bp-retrograde-card {
        padding: 0.75rem;
    }

    .bp-kaal-box-grid {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .bp-kaal-box-col {
        gap: 0.3rem;
    }

    .bp-kaal-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-kaal-box-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .bp-kaal-box-seq {
        min-width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .bp-kaal-box-name {
        font-size: 0.7rem;
        flex: 1 1 60%;
    }

    .bp-kaal-box-item-body {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.15rem;
        margin-top: 0.1rem;
        flex-wrap: wrap;
    }

    .bp-kaal-box-time {
        font-size: 0.65rem;
        gap: 0.2rem;
    }

    .bp-kaal-box-duration {
        font-size: 0.6rem;
        padding-left: 1.2rem;
    }

    .bp-kaal-box-header {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .bp-kaal-box-header-left h3 {
        font-size: 0.8rem;
    }

    .bp-kaal-box-header-left i {
        font-size: 1rem;
    }

    .bp-kaal-box-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .bp-kaal-info-note {
        font-size: 0.6rem;
        padding: 0.5rem 0.6rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .bp-hora-box-grid {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .bp-hora-box-col {
        gap: 0.3rem;
    }

    .bp-hora-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-hora-box-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .bp-hora-box-seq {
        min-width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .bp-hora-box-planet {
        font-size: 0.7rem;
    }

    .bp-hora-box-badge {
        font-size: 0.5rem;
        padding: 0.05rem 0.35rem;
    }

    .bp-hora-box-item-footer {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.15rem;
        margin-top: 0.1rem;
        flex-wrap: wrap;
        padding-top: 0.3rem;
    }

    .bp-hora-box-time {
        font-size: 0.6rem;
    }

    .bp-hora-box-utc {
        font-size: 0.5rem;
        padding-left: 0.5rem;
    }

    .bp-hora-box-header {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .bp-hora-box-header-left h3 {
        font-size: 0.8rem;
    }

    .bp-hora-box-header-left i {
        font-size: 1rem;
    }

    .bp-hora-box-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .bp-chaughadiya-box-grid {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .bp-chaughadiya-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-chaughadiya-box-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .bp-chaughadiya-box-seq {
        min-width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .bp-chaughadiya-box-icon {
        font-size: 0.7rem;
    }

    .bp-chaughadiya-box-name {
        font-size: 0.7rem;
        flex: 1 1 60%;
    }

    .bp-chaughadiya-box-class-badge {
        font-size: 0.5rem;
        padding: 0.05rem 0.35rem;
    }

    .bp-chaughadiya-box-item-body {
        display: flex;
        align-items: flex-start;
        gap: 0.15rem;
        margin-top: 0.1rem;
    }

    .bp-chaughadiya-box-time {
        font-size: 0.7rem;
        gap: 0.2rem;
    }

    .bp-chaughadiya-box-duration {
        font-size: 0.6rem;
        padding-left: 1.2rem;
    }

    .bp-chaughadiya-box-header {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .bp-chaughadiya-box-header-left h3 {
        font-size: 0.8rem;
    }

    .bp-chaughadiya-box-header-left i {
        font-size: 1rem;
    }

    .bp-chaughadiya-box-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .bp-sandhya-box-grid {
        padding: 0.4rem;
        gap: 0.4rem;
    }

    .bp-sandhya-box-item {
        padding: 0.5rem 0.6rem;
    }

    .bp-sandhya-box-item-header {
        flex-wrap: wrap;
    }

    .bp-sandhya-box-name {
        font-size: 0.75rem;
        flex: 1 1 100%;
        order: 2;
    }

    .bp-sandhya-box-seq {
        order: 1;
    }

    .bp-sandhya-box-badge {
        order: 3;
    }

    .bp-sandhya-box-item-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .bp-sandhya-box-time {
        font-size: 0.65rem;
    }

    .bp-sandhya-box-duration {
        font-size: 0.6rem;
    }

    .bp-lagna-box-grid {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .bp-lagna-box-col {
        gap: 0.3rem;
    }

    .bp-lagna-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-lagna-box-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .bp-lagna-box-seq {
        min-width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .bp-lagna-box-symbol {
        font-size: 0.9rem;
    }

    .bp-lagna-box-name {
        font-size: 0.7rem;
        flex: 1 1 60%;
    }

    .bp-lagna-box-badge {
        font-size: 0.5rem;
        padding: 0.05rem 0.35rem;
    }

    .bp-lagna-box-item-footer {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.15rem;
        margin-top: 0.1rem;
        flex-wrap: wrap;
        padding-top: 0.3rem;
    }

    .bp-lagna-box-date {
        font-size: 0.55rem;
    }

    .bp-lagna-box-time {
        font-size: 0.6rem;
        padding-left: 0.5rem;
    }

    .bp-lagna-box-header {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .bp-lagna-box-header-left h3 {
        font-size: 0.8rem;
    }

    .bp-lagna-box-header-left i {
        font-size: 1rem;
    }

    .bp-lagna-box-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .bp-yuti-box-grid {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .bp-yuti-box-col {
        gap: 0.3rem;
    }

    .bp-yuti-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-yuti-box-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .bp-yuti-box-seq {
        min-width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .bp-yuti-box-name {
        font-size: 0.7rem;
        flex: 1 1 60%;
    }

    .bp-yuti-box-badge {
        font-size: 0.5rem;
        padding: 0.05rem 0.35rem;
    }

    .bp-yuti-box-item-body {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .bp-yuti-box-planet {
        flex: 1 1 40%;
        padding: 0.2rem 0.35rem;
    }

    .bp-yuti-box-planet-img {
        width: 20px;
        height: 20px;
    }

    .bp-yuti-box-planet-name {
        font-size: 0.65rem;
    }

    .bp-yuti-box-planet-sub {
        font-size: 0.5rem;
    }

    .bp-yuti-box-plus {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
    }

        .bp-yuti-box-plus i {
            font-size: 0.5rem;
        }

    .bp-yuti-box-date {
        font-size: 0.6rem;
        gap: 0.2rem;
    }

        .bp-yuti-box-date i {
            font-size: 0.6rem;
        }

    .bp-yuti-box-header {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .bp-yuti-box-header-left h3 {
        font-size: 0.8rem;
    }

    .bp-yuti-box-header-left i {
        font-size: 1rem;
    }

    .bp-yuti-box-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .bp-astuday-box-grid {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .bp-astuday-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-astuday-box-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .bp-astuday-box-seq {
        min-width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .bp-astuday-box-icon {
        font-size: 0.8rem;
    }

    .bp-astuday-box-name {
        font-size: 0.8rem;
        flex: 1 1 60%;
    }

    .bp-astuday-box-badge {
        font-size: 0.55rem;
        padding: 0.05rem 0.3rem;
    }

    .bp-astuday-box-item-footer {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.15rem;
        margin-top: 0.1rem;
        flex-wrap: wrap;
        padding-top: 0.3rem;
    }

    .bp-astuday-box-time {
        font-size: 0.7rem;
    }

    .bp-astuday-box-status {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-astuday-box-header {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .bp-astuday-box-header-left h3 {
        font-size: 0.9rem;
    }

    .bp-astuday-box-header-left i {
        font-size: 1rem;
    }

    .bp-astuday-box-badge {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .bp-sunmoon-box-grid {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .bp-sunmoon-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-sunmoon-box-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .bp-sunmoon-box-seq {
        min-width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .bp-sunmoon-box-icon {
        font-size: 0.8rem;
    }

    .bp-sunmoon-box-name {
        font-size: 0.7rem;
        flex: 1 1 60%;
    }

    .bp-sunmoon-box-badge {
        font-size: 0.45rem;
        padding: 0.05rem 0.3rem;
    }

    .bp-sunmoon-box-item-footer {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.15rem;
        margin-top: 0.1rem;
        flex-wrap: wrap;
        padding-top: 0.3rem;
    }

    .bp-sunmoon-box-time {
        font-size: 0.6rem;
    }

    .bp-sunmoon-box-utc {
        font-size: 0.5rem;
        padding-left: 0.5rem;
    }

    .bp-sunmoon-box-header {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .bp-sunmoon-box-header-left h3 {
        font-size: 0.8rem;
    }

    .bp-sunmoon-box-header-left i {
        font-size: 1rem;
    }

    .bp-sunmoon-box-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .bp-panchak-box-grid {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .bp-panchak-box-item {
        padding: 0.4rem 0.5rem;
    }

    .bp-panchak-box-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .bp-panchak-box-seq {
        min-width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .bp-panchak-box-icon {
        font-size: 0.8rem;
    }

    .bp-panchak-box-name {
        font-size: 0.7rem;
        flex: 1 1 60%;
    }

    .bp-panchak-box-badge {
        font-size: 0.45rem;
        padding: 0.05rem 0.3rem;
    }

    .bp-panchak-box-item-footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
        margin-top: 0.1rem;
        flex-wrap: wrap;
        padding-top: 0.3rem;
    }

    .bp-panchak-box-value {
        font-size: 0.6rem;
    }

    .bp-panchak-box-status {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }

    .bp-panchak-box-header {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .bp-panchak-box-header-left h3 {
        font-size: 0.8rem;
    }

    .bp-panchak-box-header-left i {
        font-size: 1rem;
    }

    .bp-panchak-box-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .bp-panchak-box-warning {
        font-size: 0.7rem;
        padding: 0.6rem 0.75rem;
        flex-wrap: wrap;
    }

    .bp-legal-container {
        padding: 0.75rem;
    }

    .bp-legal-title {
        font-size: 1.35rem;
    }

    .bp-sitemap-container {
        padding: 0.75rem;
    }

    .bp-sitemap-title {
        font-size: 1.35rem;
    }

    .bp-settings-wrapper {
        padding: 0.75rem;
    }

    .bp-settings-title {
        font-size: 1.35rem;
    }

    .date-location-container {
        padding: 0.5rem;
    }

    .date-location-row {
        gap: 0.5rem;
    }

    .search-wrapper {
        padding: 0.4rem 0.6rem;
    }

    .selected-city-display {
        padding: 0.4rem 0.6rem;
    }

    .navigation-buttons {
        gap: 0.5rem;
    }

    .nav-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
        min-width: 70px;
    }

    .date-input {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }

    .month-picker {
        max-width: 70px;
        min-width: 55px;
    }

    .year-picker {
        max-width: 65px;
        min-width: 50px;
    }

    .date-input {
        padding: 0.25rem 0.3rem;
        font-size: 0.65rem;
    }

    .date-picker-divider {
        font-size: 0.7rem;
    }

    .suggestions-dropdown {
        max-height: 180px;
    }

    .suggestion-item {
        padding: 0.6rem 0.8rem;
    }

    .bp-location-info-bar {
        gap: 0.3rem;
        padding: 0.35rem 0.5rem;
        margin-bottom: 0.75rem;
        border-radius: 8px;
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        min-height: auto;
    }

    .bp-location-info-item {
        font-size: 0.65rem;
        gap: 0.2rem;
    }

        .bp-location-info-item i {
            font-size: 0.65rem;
            min-width: 14px;
        }

    .bp-info-label {
        font-size: 0.6rem;
        min-width: 32px;
    }

    .bp-info-value {
        font-size: 0.65rem;
    }

    .bp-location-info-divider {
        display: none;
    }

    .bp-year-info-bar {
        gap: 0.3rem;
        padding: 0.35rem 0.5rem;
        margin-bottom: 0.75rem;
        border-radius: 8px;
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        min-height: auto;
    }

    .bp-year-info-item {
        font-size: 0.65rem;
        gap: 0.2rem;
    }

        .bp-year-info-item i {
            font-size: 0.65rem;
            min-width: 14px;
        }

    .bp-year-value {
        font-size: 0.75rem;
    }

    .bp-year-info-divider {
        display: none;
    }

    .bp-year-highlight {
        padding: 0.15rem 0.5rem;
        width: auto;
    }

    .bp-month-info-bar {
        gap: 0.3rem;
        padding: 0.35rem 0.5rem;
        margin-bottom: 0.75rem;
        border-radius: 8px;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .bp-month-info-item {
        font-size: 0.65rem;
        gap: 0.2rem;
        width: 100%;
        white-space: normal;
    }

        .bp-month-info-item i {
            font-size: 0.65rem;
            min-width: 14px;
        }

    .bp-month-value {
        font-size: 0.75rem;
    }

    .bp-month-info-divider {
        display: none;
    }

    .bp-month-highlight {
        padding: 0.15rem 0.5rem;
        width: auto;
    }

    .bp-year-highlight {
        padding: 0.15rem 0.5rem;
        width: auto;
    }
}

@media (max-width: 380px) {
    .bp-box-grid {
        padding: 0.3rem;
        gap: 0.25rem;
    }

    .bp-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-box-name {
        font-size: 0.65rem;
    }

    .bp-box-time {
        font-size: 0.6rem;
    }

    .bp-box-duration {
        font-size: 0.55rem;
        padding-left: 1rem;
    }

    .bp-planet-grid {
        gap: 0.5rem;
    }

    .bp-planet-card-inner {
        padding: 0.5rem 0.3rem;
    }

    .bp-planet-icon {
        width: 38px;
        height: 38px;
    }

        .bp-planet-icon i {
            font-size: 1rem;
        }

    .bp-planet-name {
        font-size: 0.65rem;
    }

    .bp-planet-card-arrow {
        font-size: 0.7rem;
    }

    .bp-transit-box-grid {
        padding: 0.3rem;
        gap: 0.25rem;
    }

    .bp-transit-box-col {
        gap: 0.25rem;
    }

    .bp-transit-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-transit-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-transit-box-planet-name {
        font-size: 0.65rem;
    }

    .bp-transit-box-datetime {
        font-size: 0.55rem;
    }

    .bp-transit-box-duration {
        font-size: 0.55rem;
    }

    .bp-transit-box-charan {
        font-size: 0.55rem;
    }

    .bp-transit-box-charan-value {
        min-width: 16px;
        height: 16px;
        font-size: 0.55rem;
    }

    .bp-sunmoon-box-grid {
        padding: 0.3rem;
        gap: 0.25rem;
    }

    .bp-sunmoon-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-sunmoon-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-sunmoon-box-icon {
        font-size: 0.7rem;
    }

    .bp-sunmoon-box-name {
        font-size: 0.65rem;
    }

    .bp-sunmoon-box-time {
        font-size: 0.55rem;
    }

    .bp-sunmoon-box-utc {
        font-size: 0.45rem;
    }

    .bp-kaal-box-grid {
        padding: 0.3rem;
        gap: 0.25rem;
    }

    .bp-kaal-box-col {
        gap: 0.25rem;
    }

    .bp-kaal-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-kaal-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-kaal-box-name {
        font-size: 0.65rem;
    }

    .bp-kaal-box-time {
        font-size: 0.6rem;
    }

    .bp-kaal-box-duration {
        font-size: 0.55rem;
        padding-left: 1rem;
    }

    .bp-hora-box-grid {
        padding: 0.3rem;
        gap: 0.25rem;
    }

    .bp-hora-box-col {
        gap: 0.25rem;
    }

    .bp-hora-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-hora-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-hora-box-planet {
        font-size: 0.65rem;
    }

    .bp-hora-box-time {
        font-size: 0.55rem;
    }

    .bp-hora-box-utc {
        font-size: 0.45rem;
    }

    .bp-chaughadiya-box-grid {
        padding: 0.3rem;
        gap: 0.25rem;
    }

    .bp-chaughadiya-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-chaughadiya-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-chaughadiya-box-name {
        font-size: 0.65rem;
    }

    .bp-chaughadiya-box-class-badge {
        font-size: 0.45rem;
        padding: 0.05rem 0.25rem;
    }

    .bp-chaughadiya-box-time {
        font-size: 0.6rem;
    }

    .bp-chaughadiya-box-duration {
        font-size: 0.55rem;
        padding-left: 1rem;
    }

    .bp-panchak-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-panchak-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-panchak-box-icon {
        font-size: 0.7rem;
    }

    .bp-panchak-box-name {
        font-size: 0.65rem;
    }

    .bp-panchak-box-value {
        font-size: 0.55rem;
    }

    .bp-panchak-box-status {
        font-size: 0.5rem;
    }

    .bp-astuday-box-grid {
        padding: 0.3rem;
        gap: 0.25rem;
    }

    .bp-astuday-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-astuday-box-seq {
        min-width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }

    .bp-astuday-box-icon {
        font-size: 0.7rem;
    }

    .bp-astuday-box-name {
        font-size: 0.75rem;
    }

    .bp-astuday-box-time {
        font-size: 0.65rem;
    }

    .bp-astuday-box-status {
        font-size: 0.5rem;
    }

    .bp-yuti-box-grid {
        padding: 0.3rem;
        gap: 0.25rem;
    }

    .bp-yuti-box-col {
        gap: 0.25rem;
    }

    .bp-yuti-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-yuti-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-yuti-box-name {
        font-size: 0.65rem;
    }

    .bp-yuti-box-planet {
        padding: 0.15rem 0.25rem;
    }

    .bp-yuti-box-planet-img {
        width: 18px;
        height: 18px;
    }

    .bp-yuti-box-planet-name {
        font-size: 0.6rem;
    }

    .bp-yuti-box-date {
        font-size: 0.55rem;
    }

    .bp-lagna-box-grid {
        padding: 0.3rem;
        gap: 0.25rem;
    }

    .bp-lagna-box-col {
        gap: 0.25rem;
    }

    .bp-lagna-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-lagna-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-lagna-box-symbol {
        font-size: 0.8rem;
    }

    .bp-lagna-box-name {
        font-size: 0.65rem;
    }

    .bp-lagna-box-date {
        font-size: 0.5rem;
    }

    .bp-lagna-box-time {
        font-size: 0.55rem;
    }

    .bp-sandhya-box-grid {
        padding: 0.3rem;
        gap: 0.3rem;
    }

    .bp-sandhya-box-item {
        padding: 0.3rem 0.4rem;
    }

    .bp-sandhya-box-seq {
        min-width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .bp-sandhya-box-name {
        font-size: 0.65rem;
    }

    .bp-sandhya-box-time {
        font-size: 0.55rem;
    }

    .bp-sandhya-box-duration {
        font-size: 0.5rem;
    }

    .bp-month-info-bar {
        padding: 0.25rem 0.4rem;
        gap: 0.2rem;
    }

    .bp-month-info-item {
        font-size: 0.55rem;
        gap: 0.15rem;
    }

        .bp-month-info-item i {
            font-size: 0.55rem;
            min-width: 12px;
        }

    .bp-info-label {
        font-size: 0.5rem;
        min-width: 28px;
    }

    .bp-info-value {
        font-size: 0.55rem;
    }

    .bp-month-value {
        font-size: 0.65rem;
    }

    .bp-year-value {
        font-size: 0.65rem;
    }

    .bp-month-highlight {
        padding: 0.1rem 0.4rem;
    }

    .bp-year-highlight {
        padding: 0.1rem 0.4rem;
    }

    .bp-year-info-bar {
        padding: 0.25rem 0.4rem;
        gap: 0.2rem;
        flex-wrap: wrap;
    }

    .bp-year-info-item {
        font-size: 0.55rem;
        gap: 0.15rem;
    }

        .bp-year-info-item i {
            font-size: 0.55rem;
            min-width: 12px;
        }

    .bp-info-label {
        font-size: 0.5rem;
        min-width: 28px;
    }

    .bp-info-value {
        font-size: 0.55rem;
    }

    .bp-year-value {
        font-size: 0.65rem;
    }

    .bp-year-highlight {
        padding: 0.1rem 0.4rem;
    }

    .bp-location-info-bar {
        padding: 0.25rem 0.4rem;
        gap: 0.2rem;
        flex-wrap: wrap;
    }

    .bp-location-info-item {
        font-size: 0.55rem;
        gap: 0.15rem;
    }

        .bp-location-info-item i {
            font-size: 0.55rem;
            min-width: 12px;
        }

    .bp-info-label {
        font-size: 0.5rem;
        min-width: 28px;
    }

    .bp-info-value {
        font-size: 0.55rem;
    }

    .date-location-container {
        padding: 0.25rem;
    }

    .date-location-row {
        gap: 0.25rem;
    }

    .search-wrapper {
        padding: 0.25rem 0.4rem;
    }

    .selected-city-display {
        padding: 0.25rem 0.4rem;
    }

    .nav-btn {
        padding: 0.2rem 0.3rem;
        font-size: 0.55rem;
        min-width: 35px;
    }

    .date-input {
        padding: 0.2rem 0.25rem;
        font-size: 0.6rem;
    }

    .month-picker {
        max-width: 60px;
        min-width: 50px;
    }

    .year-picker {
        max-width: 55px;
        min-width: 45px;
    }

    .date-picker-divider {
        font-size: 0.6rem;
    }

    .navigation-buttons {
        gap: 0.2rem;
    }
}

@media print {
    .bp-location-card,
    .bp-main-header,
    .bp-footer,
    .bp-mobile-menu-btn,
    .bp-settings-btn,
    .bp-btn,
    .nav-btn,
    .bp-info-bar,
    .bp-box-ad,
    .bp-current-time-card,
    .bp-edit-actions,
    .bp-btn-back,
    .DisplayAds {
        display: none !important;
    }

    .bp-page,
    .bp-container,
    .bp-eclipse-container,
    .bp-transit-container,
    .bp-muhurt-container,
    .bp-planet-container,
    .bp-namakshar-container,
    .bp-about-container,
    .bp-contact-container,
    .bp-settings-wrapper,
    .bp-legal-container,
    .bp-sitemap-container,
    .bp-kaal-container,
    .bp-kshaya-container,
    .bp-adhik-container,
    .bp-chaughadiya-container,
    .bp-hora-container,
    .bp-ishtakaal-container,
    .bp-lagna-container,
    .bp-sandhya-container,
    .bp-sunmoon-container,
    .bp-astuday-container,
    .bp-panchak-container,
    .bp-yuti-container,
    .bp-gandmool-container,
    .bp-rashi-container,
    .bp-nakshatra-container {
        background: white !important;
        padding: 1rem !important;
    }

    .bp-card,
    .bp-box-card,
    .bp-eclipse-card,
    .bp-transit-box-card,
    .bp-planet-card,
    .bp-muhurt-card,
    .bp-rashi-card,
    .bp-nakshatra-card,
    .bp-about-card,
    .bp-legal-content,
    .bp-sitemap-content,
    .bp-payment-card,
    .bp-charge-card,
    .bp-contact-form-card,
    .bp-contact-info-card,
    .bp-map-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .bp-box-item,
    .bp-transit-box-item,
    .bp-eclipse-card,
    .bp-planet-card,
    .bp-muhurt-card,
    .bp-rashi-card,
    .bp-nakshatra-card,
    .bp-sunmoon-box-item,
    .bp-astuday-box-item,
    .bp-panchak-box-item,
    .bp-yuti-box-item {
        border-left: 4px solid #333 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .bp-info-bar {
        background: #f5f5f5 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .bp-stat-card,
    .bp-special-card,
    .bp-stat-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .bp-planet-card:hover,
    .bp-muhurt-card:hover,
    .bp-box-item:hover,
    .bp-transit-box-item:hover {
        transform: none !important;
    }

    .bp-stats-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }

    .bp-products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .dashboard-container {
        padding: 0.5rem !important;
    }

    .invoice-modal-overlay {
        position: static !important;
        background: white !important;
        padding: 0 !important;
    }

    .invoice-modal {
        max-height: none !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .invoice-modal-header {
        background: #8B4513 !important;
        border-radius: 0 !important;
    }

    .gm-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }

    .calendar-table {
        border: 1px solid #ddd !important;
    }

        .calendar-table th {
            background: #8B4513 !important;
            color: white !important;
            -webkit-print-color-adjust: exact !important;
            print-color-adjust: exact !important;
        }

    .bp-anga-panel {
        background: #8B4513 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .bp-anga {
        background: rgba(255,255,255,0.1) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}




/* ! row and 2 Boxes UI */
.bp-grid-auto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.bp-planet-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .bp-planet-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.bp-planet-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.bp-planet-icon {
    font-size: 2rem;
}

.bp-planet-name {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.bp-card-arrow {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.bp-planet-card:hover .bp-card-arrow {
    opacity: 1;
}

/* ===== Mobile Menu - Force 2 Cards Per Row ===== */

.page-container-maui .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

    .page-container-maui .row > [class*="col-"] {
        width: auto;
        max-width: none;
        padding: 0;
    }