.render-text {
            line-height: 1.7;
            word-break: break-word;
            white-space: pre-wrap;
        }
        .render-text mjx-container {
            vertical-align: middle !important;
            margin: 0 2px;
        }
        .render-text mjx-container[display="true"] {
            display: block;
            text-align: center;
            margin: 12px 0;
        }
        :root {
            --luxury-gradient: linear-gradient(135deg, #14b8a6 0%, #0d9488 50%, #0f766e 100%);
            --primary-gradient: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
            --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            --secondary-gradient: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
            --dark-luxury: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #0a0a0a 100%);
            --dark-bg: #1a1a1a;
            --charcoal: #2d2d2d;
            --accent-color: #14b8a6;
            --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            overflow-x: hidden;
            /* Fix horizontal scroll globally */
            width: 100%;
            margin: 0;
            padding: 0;
            -webkit-overflow-scrolling: touch;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            color: #1e293b;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .main-content {
            flex: 1;
            width: 100%;
            max-width: 100vw;
            padding-bottom: 2rem;
        }

        .offline-toast {
            position: fixed;
            left: 50%;
            bottom: 1rem;
            transform: translateX(-50%) translateY(16px);
            background: #0f172a;
            color: #ffffff;
            border-radius: 999px;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .offline-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .update-banner {
            position: fixed;
            left: 50%;
            bottom: 4.2rem;
            transform: translateX(-50%) translateY(16px);
            width: min(560px, calc(100% - 1.5rem));
            background: #ffffff;
            color: #0f172a;
            border-radius: 14px;
            box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
            border: 1px solid rgba(15, 23, 42, 0.08);
            z-index: 2050;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            padding: 0.8rem 0.9rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .update-banner.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .update-message {
            margin: 0;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .update-actions {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .update-btn {
            border: 0;
            border-radius: 999px;
            padding: 0.42rem 0.88rem;
            font-size: 0.84rem;
            font-weight: 600;
            cursor: pointer;
        }

        .update-btn-primary {
            background: var(--primary-gradient);
            color: #ffffff;
        }

        .update-btn-secondary {
            background: #e2e8f0;
            color: #0f172a;
        }

        .cookie-banner {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2100;
            background: var(--dark-luxury);
            color: #ffffff;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding: 0.9rem 1rem;
            display: none;
        }

        .cookie-banner.show {
            display: block;
        }

        .cookie-banner-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            gap: 0.85rem;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .cookie-text {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.9);
        }

        .cookie-text a {
            color: #ffffff;
            text-decoration: underline;
            font-weight: 600;
        }

        .cookie-actions {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .cookie-btn {
            border: 0;
            border-radius: 999px;
            padding: 0.45rem 0.9rem;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
        }

        .cookie-btn-accept {
            background: var(--gold-gradient);
            color: #1e3c72;
        }

        .cookie-btn-necessary {
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        /* Redesigned Navbar */
        .header-wrapper {
            position: sticky;
            top: 0;
            z-index: 1030;
            width: 100%;
            padding: 0.85rem 0 0.65rem;
            background: transparent;
            transition: padding 0.3s ease;
            pointer-events: none;
        }

        .header-wrapper > * {
            pointer-events: auto;
        }

        .header-wrapper.is-scrolled {
            padding: 0.45rem 0 0.35rem;
        }

        .header-shell {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.1rem;
            min-height: 86px;
            padding: 0.9rem 1.25rem;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(8, 19, 26, 0.94), rgba(12, 31, 40, 0.88));
            border: 1px solid rgba(148, 163, 184, 0.16);
            box-shadow: 0 18px 38px rgba(2, 8, 23, 0.28);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .header-shell::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top left, rgba(20, 184, 166, 0.22), transparent 32%),
                radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.16), transparent 28%),
                linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 20%);
            pointer-events: none;
        }

        .header-wrapper.is-scrolled .header-shell {
            transform: translateY(-1px);
            border-color: rgba(20, 184, 166, 0.26);
            box-shadow: 0 22px 42px rgba(2, 8, 23, 0.32);
        }

        .header-shell>* {
            position: relative;
            z-index: 1;
        }

        .header-start {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            min-width: 0;
            flex-shrink: 0;
        }

        .header-menu-btn {
            width: 50px;
            height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
            font-size: 1.05rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
        }

        .header-menu-btn:hover {
            background: rgba(20, 184, 166, 0.16);
            border-color: rgba(20, 184, 166, 0.24);
            transform: translateY(-1px);
        }

        .header-brand.navbar-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
            margin: 0;
            text-decoration: none;
            white-space: nowrap;
            background: none;
            -webkit-text-fill-color: initial;
            text-shadow: none;
            letter-spacing: normal;
        }

        .header-brand-mark {
            width: 3.2rem;
            height: 3.2rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 158, 11, 0.92));
            box-shadow: 0 12px 28px rgba(245, 158, 11, 0.22);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .header-brand:hover .header-brand-mark {
            transform: translateY(-1px) rotate(-4deg);
            box-shadow: 0 18px 34px rgba(245, 158, 11, 0.28);
        }

        .header-brand-mark img {
            width: 2.3rem;
            height: 2.3rem;
            object-fit: contain;
        }

        .header-brand-copy {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
            min-width: 0;
        }

        .header-brand-sub {
            color: rgba(142, 245, 235, 0.88);
            font-size: 0.66rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .header-brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.38rem;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: 0.02em;
            color: #ffffff;
        }

        .header-nav {
            flex: 1;
            min-width: 0;
            justify-content: center;
        }

        .header-nav-track {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            max-width: 100%;
            padding: 0.35rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
            overflow-x: auto;
            scrollbar-width: none;
        }

        .header-nav-track::-webkit-scrollbar {
            display: none;
        }

        .header-nav-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.65rem 0.85rem !important;
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.72) !important;
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 600;
            line-height: 1;
            white-space: nowrap;
            transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }

        .header-nav-link:hover {
            color: #ffffff !important;
            background: rgba(20, 184, 166, 0.12);
            box-shadow: inset 0 0 0 1px rgba(20, 184, 166, 0.14);
            transform: translateY(-1px);
        }

        .header-nav-link.active {
            color: #082f49 !important;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            box-shadow: 0 10px 22px rgba(245, 158, 11, 0.22);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            flex-shrink: 0;
        }

        .header-search-chip,
        .header-login-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            min-height: 46px;
            padding: 0.75rem 1rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.82);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 600;
            transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
        }

        .header-search-chip i {
            color: #8ef5eb;
        }

        .header-login-btn i {
            color: #fbbf24;
        }

        .header-search-chip:hover,
        .header-login-btn:hover {
            color: #ffffff;
            background: rgba(20, 184, 166, 0.14);
            border-color: rgba(20, 184, 166, 0.22);
            transform: translateY(-1px);
        }

        .header-icon-btn {
            width: 50px;
            height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.07);
            color: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(255, 255, 255, 0.12);
            position: relative;
            transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .header-icon-btn:hover {
            background: rgba(20, 184, 166, 0.14);
            color: #ffffff;
            border-color: rgba(20, 184, 166, 0.22);
            transform: translateY(-1px);
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
        }

        .header-icon-btn.cart-btn {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
            color: #082f49 !important;
            border-color: transparent;
            box-shadow: 0 12px 24px rgba(245, 158, 11, 0.22);
        }

        .header-icon-btn.cart-btn:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
        }

        .header-profile-btn {
            border-color: rgba(20, 184, 166, 0.3);
            box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
        }

        .header-profile-btn img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            padding: 0.2rem 0.4rem;
            font-size: 0.6rem;
            font-weight: 700;
            border: 2px solid #0b1620;
        }

        /* Premium Floating Cart */
        .floating-cart {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gold-gradient);
            color: #1e3c72;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);
            z-index: 1050;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .floating-cart::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
            border-radius: 20px;
            top: 0;
            left: 0;
        }

        .floating-cart:hover {
            transform: scale(1.15) translateY(-5px) rotate(5deg);
            box-shadow: 0 15px 50px rgba(251, 191, 36, 0.5);
            color: #1e3c72;
        }

        /* Mobile Drawer */
        .site-drawer {
            background: linear-gradient(180deg, #08131a 0%, #0c1f28 100%);
            border-right: 1px solid rgba(20, 184, 166, 0.24);
        }

        .site-drawer::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top left, rgba(20, 184, 166, 0.18), transparent 34%),
                radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.12), transparent 26%);
            pointer-events: none;
        }

        .site-drawer .offcanvas-header,
        .site-drawer .offcanvas-body {
            position: relative;
            z-index: 1;
        }

        .site-drawer .offcanvas-header {
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .drawer-brand {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            min-width: 0;
        }

        .drawer-brand-mark {
            width: 2.8rem;
            height: 2.8rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 158, 11, 0.9));
            box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
        }

        .drawer-brand-mark img {
            width: 1.55rem;
            height: 1.55rem;
            object-fit: contain;
        }

        .drawer-brand-copy {
            display: flex;
            flex-direction: column;
            gap: 0.12rem;
            min-width: 0;
        }

        .drawer-brand-label,
        .drawer-section-label {
            color: rgba(142, 245, 235, 0.82);
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .drawer-brand-title {
            margin: 0;
            color: #ffffff;
            font-size: 1.15rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .drawer-copy {
            margin: 0 0 1.25rem;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.92rem;
            line-height: 1.7;
        }

        .site-drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .site-drawer-link {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            padding: 0.9rem 1rem !important;
            margin: 0;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid transparent;
            color: rgba(255, 255, 255, 0.76) !important;
            text-decoration: none;
            font-size: 0.96rem;
            font-weight: 500;
            transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
        }

        .site-drawer-link i {
            width: 1rem;
            text-align: center;
            color: #8ef5eb;
        }

        .site-drawer-link:hover {
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(20, 184, 166, 0.18);
            transform: translateX(2px);
        }

        .site-drawer-link.active {
            color: #ffffff !important;
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(20, 184, 166, 0.06));
            border-color: rgba(20, 184, 166, 0.24);
        }

        .site-drawer-link.text-danger {
            color: #fca5a5 !important;
        }

        .site-drawer-link.text-danger i {
            color: #f87171;
        }

        .site-drawer-link.text-danger:hover {
            background: rgba(239, 68, 68, 0.12);
            border-color: rgba(239, 68, 68, 0.18);
        }

        .drawer-divider {
            height: 1px;
            margin: 1rem 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
        }

        .drawer-account-card {
            padding: 1rem;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .drawer-user-chip {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin: 0.8rem 0 1rem;
            padding: 0.85rem 0.9rem;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .drawer-user-avatar {
            width: 2.9rem;
            height: 2.9rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 16px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .drawer-user-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .drawer-user-copy {
            min-width: 0;
        }

        .drawer-user-copy strong {
            display: block;
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .drawer-user-copy small {
            display: block;
            color: rgba(255, 255, 255, 0.56);
            font-size: 0.78rem;
            line-height: 1.45;
        }

        .drawer-login-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            width: 100%;
            min-height: 3.2rem;
            padding: 0.85rem 1rem;
            border-radius: 18px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #082f49;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 700;
            box-shadow: 0 14px 28px rgba(245, 158, 11, 0.2);
        }

        .drawer-login-btn:hover {
            color: #082f49;
            transform: translateY(-1px);
            box-shadow: 0 18px 32px rgba(245, 158, 11, 0.24);
        }

        /* Premium Dropdown */
        .dropdown-menu {
            min-width: 16rem;
            background: rgba(8, 19, 26, 0.94) !important;
            border: 1px solid rgba(148, 163, 184, 0.16) !important;
            border-radius: 20px !important;
            padding: 0.65rem !important;
            box-shadow: 0 22px 44px rgba(2, 8, 23, 0.32) !important;
            backdrop-filter: blur(18px);
        }

        .dropdown-profile-head {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.35rem;
            padding: 0.15rem 0.15rem 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .dropdown-profile-avatar {
            width: 2.85rem;
            height: 2.85rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 16px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .dropdown-profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dropdown-profile-copy {
            min-width: 0;
        }

        .dropdown-profile-name {
            display: block;
            max-width: 11rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.35;
        }

        .dropdown-profile-email {
            display: block;
            margin-top: 0.15rem;
            max-width: 11rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: rgba(255, 255, 255, 0.56);
            font-size: 0.8rem;
            line-height: 1.45;
        }

        .dropdown-item {
            display: flex !important;
            align-items: center;
            gap: 0.7rem;
            min-height: 2.85rem;
            padding: 0.75rem 0.9rem !important;
            border-radius: 14px !important;
            transition: background 0.3s ease, color 0.3s ease !important;
            color: rgba(255, 255, 255, 0.8) !important;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .dropdown-item i {
            width: 1rem;
            text-align: center;
            color: #8ef5eb;
        }

        .dropdown-item:hover {
            background: rgba(20, 184, 166, 0.12) !important;
            color: white !important;
        }

        .dropdown-item.text-danger {
            color: #fca5a5 !important;
        }

        .dropdown-item.text-danger i {
            color: #f87171 !important;
        }

        .dropdown-item.text-danger:hover {
            background: rgba(239, 68, 68, 0.14) !important;
        }

        .dropdown-divider {
            border-color: rgba(255, 255, 255, 0.1) !important;
        }

        /* Redesigned Footer */
        .footer {
            background:
                radial-gradient(circle at top left, rgba(20, 184, 166, 0.24) 0%, transparent 34%),
                radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.16) 0%, transparent 28%),
                linear-gradient(180deg, #08131a 0%, #0c1f28 55%, #0f172a 100%);
            color: rgba(255, 255, 255, 0.76);
            margin-top: auto;
            width: 100%;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(20, 184, 166, 0.28);
        }

        .footer::before,
        .footer::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .footer::before {
            background:
                linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, transparent 18%),
                linear-gradient(90deg, rgba(20, 184, 166, 0.12), transparent 45%, rgba(251, 191, 36, 0.08));
            opacity: 0.45;
        }

        .footer::after {
            inset: auto 0 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
        }

        .footer-shell {
            position: relative;
            z-index: 1;
            padding: 3.25rem 0 1.5rem;
        }

        .footer-top {
            margin-bottom: 1.5rem;
        }

        .footer-hero {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
            backdrop-filter: blur(14px);
        }

        .footer-hero {
            padding: 1.85rem;
        }

        .footer-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            margin-bottom: 1rem;
            background: rgba(20, 184, 166, 0.14);
            border: 1px solid rgba(20, 184, 166, 0.24);
            color: #8ef5eb;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-family: 'Playfair Display', serif;
            font-weight: 800;
        }

        .footer-brand-text {
            font-size: clamp(1.9rem, 2vw, 2.4rem);
            color: #ffffff;
            letter-spacing: 0.02em;
        }

        .footer-brand-mark {
            width: 2.8rem;
            height: 2.8rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            font-size: 1.1rem;
            color: #082f49;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
            -webkit-text-fill-color: initial;
        }

        .footer-copy {
            max-width: 42rem;
            margin: 1rem 0 0;
            font-size: 0.98rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.74);
        }

        .footer-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-top: 1.6rem;
        }

        .footer-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            min-height: 3rem;
            padding: 0.8rem 1.2rem;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
        }

        .footer-cta-primary {
            color: #082f49;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            box-shadow: 0 14px 30px rgba(245, 158, 11, 0.22);
        }

        .footer-cta-secondary {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .footer-cta:hover {
            transform: translateY(-2px);
        }

        .footer-cta-primary:hover {
            color: #082f49;
            box-shadow: 0 18px 36px rgba(245, 158, 11, 0.28);
        }

        .footer-cta-secondary:hover {
            color: #ffffff;
            background: rgba(20, 184, 166, 0.16);
            box-shadow: 0 14px 30px rgba(20, 184, 166, 0.16);
        }

        .footer-socials {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .social-btn {
            width: 2.9rem;
            height: 2.9rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.07);
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        }

        .social-btn:hover {
            color: #ffffff;
            background: rgba(20, 184, 166, 0.2);
            border-color: rgba(20, 184, 166, 0.34);
            transform: translateY(-3px);
            box-shadow: 0 14px 28px rgba(20, 184, 166, 0.2);
        }

        .footer-contact-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .footer-contact-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            min-height: 3.1rem;
            padding: 0.7rem 1rem;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.74);
            text-decoration: none;
            transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
        }

        .footer-contact-chip:hover {
            color: #ffffff;
            background: rgba(20, 184, 166, 0.12);
            border-color: rgba(20, 184, 166, 0.24);
            transform: translateY(-2px);
        }

        .footer-contact-chip.is-static:hover {
            transform: none;
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.74);
        }

        .footer-contact-icon {
            width: 2.35rem;
            height: 2.35rem;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.09);
            color: #fbbf24;
            font-size: 0.9rem;
        }

        .footer-contact-copy {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }

        .footer-contact-label {
            color: rgba(255, 255, 255, 0.48);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .footer-contact-value {
            color: inherit;
            font-size: 0.92rem;
            font-weight: 500;
            line-height: 1.4;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            padding-top: 1.35rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-note {
            margin: 0;
            color: rgba(255, 255, 255, 0.56);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        .footer-note strong {
            color: #ffffff;
            font-weight: 700;
        }

        .footer-legal {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.7rem;
        }

        .footer-legal a {
            display: inline-flex;
            align-items: center;
            min-height: 2.4rem;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.68);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #ffffff;
            background: rgba(20, 184, 166, 0.12);
            border-color: rgba(20, 184, 166, 0.22);
        }

        @media (max-width: 1199.98px) {
            .header-nav-link {
                padding: 0.75rem 0.92rem !important;
            }
        }

        @media (max-width: 991.98px) {
            .header-wrapper {
                padding: 0.75rem 0 0.45rem;
            }

            .header-shell {
                min-height: 70px;
                padding: 0.75rem 0.85rem;
                border-radius: 24px;
                gap: 0.75rem;
            }

            .header-brand-name {
                font-size: 1.12rem;
            }

            .header-brand-sub {
                font-size: 0.62rem;
            }

            .header-search-chip {
                display: none !important;
            }
        }

        @media (max-width: 767.98px) {
            .header-wrapper {
                padding: 0.5rem 0 0.25rem;
            }

            .header-shell {
                min-height: 60px;
                padding: 0.55rem 0.6rem;
                border-radius: 20px;
                gap: 0.5rem;
            }

            .header-start {
                gap: 0.5rem;
            }

            .header-menu-btn,
            .header-icon-btn {
                width: 38px;
                height: 38px;
                border-radius: 12px;
                font-size: 0.88rem;
            }

            .header-login-btn {
                min-height: 38px;
                padding: 0.6rem 0.75rem;
                border-radius: 12px;
                font-size: 0.82rem;
            }

            .header-brand-mark {
                width: 2.4rem;
                height: 2.4rem;
                border-radius: 14px;
            }

            .header-brand-mark img {
                width: 1.8rem;
                height: 1.8rem;
            }

            .header-brand-sub {
                display: none;
            }

            .header-brand-name {
                font-size: 1rem;
            }

            .header-actions {
                gap: 0.35rem;
            }

            .dropdown-menu {
                width: min(18rem, calc(100vw - 1.5rem));
            }

            .site-drawer {
                width: min(22rem, calc(100vw - 1.25rem));
            }

            .footer-shell {
                padding-top: 2.5rem;
            }

            .footer-hero {
                border-radius: 24px;
                padding: 1.35rem;
            }

            .footer-actions {
                flex-direction: column;
            }

            .footer-cta {
                width: 100%;
            }

            .footer-bottom {
                align-items: flex-start;
            }

            .footer-contact-bar {
                flex-direction: column;
            }

            .footer-contact-chip {
                width: 100%;
            }

            .footer-legal {
                gap: 0.75rem 1rem;
            }
        }

        /* Premium Alert Messages */
        .alert {
            border-radius: 16px !important;
            border: none !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            font-size: 0.95rem;
        }

        .alert-success {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95)) !important;
            color: white !important;
        }

        .alert-danger {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.95)) !important;
            color: white !important;
        }

        .alert-warning {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.95), rgba(245, 158, 11, 0.95)) !important;
            color: #1e3c72 !important;
        }

        .alert-info {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.95)) !important;
            color: white !important;
        }

        .btn-close {
            filter: brightness(0) invert(1);
        }
    
        /* Make Account Icon Circular */
        .header-profile-btn,
        .dropdown-profile-avatar,
        .drawer-user-avatar {
            border-radius: 50% !important;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .header-profile-btn img,
        .dropdown-profile-avatar img,
        .drawer-user-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50% !important;
            object-fit: cover;
            display: block;
        }