:root {
    --primary: #B68D40;
    /* Rich Gold */
    --primary-light: #d4af37;
    --bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.6);
    --text: #ffffff;
    --text-dim: #b0b0b0;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.loader-content .logo {
    font-size: 3rem;
    letter-spacing: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 8px;
    color: var(--primary);
    cursor: pointer;
    font-weight: 900;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 35px;
}

.lang-toggle {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 8px 16px;
    font-family: 'Outfit';
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: var(--primary);
    background: rgba(182, 141, 64, 0.1);
}

.cart-trigger {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-trigger:hover {
    color: var(--primary);
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--primary);
    color: #000;
    font-size: 0.65rem;
    padding: 3px 7px;
    border-radius: 50%;
    font-weight: 900;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(5, 5, 5, 1) 90%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
}

.slogan {
    font-size: 5rem;
    letter-spacing: 12px;
    margin-bottom: 50px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #B68D40 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

/* Menu */
.menu-section {
    padding: 150px 0;
    background: var(--bg);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    letter-spacing: 20px;
    margin-bottom: 80px;
    color: var(--primary);
    opacity: 0.9;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 100px;
}

.cat-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    padding: 15px 40px;
    cursor: pointer;
    letter-spacing: 3px;
    font-weight: 700;
    transition: var(--transition);
    font-family: 'Outfit';
}

.cat-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(182, 141, 64, 0.3);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

/* Visit Section */
.visit-section {
    padding: 120px 0;
    background: var(--bg);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-dim);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25d366;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    width: fit-content;
    font-family: 'Outfit';
    letter-spacing: 2px;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.visit-map {
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

/* Footer Socials */
.social-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.instagram-link {
    color: var(--text);
    text-decoration: none;
    font-family: 'Outfit';
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.instagram-link i {
    font-size: 1.5rem;
    color: var(--primary);
}

.instagram-link:hover {
    color: var(--primary);
}

.footer {
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.menu-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
}

.item-header h3 {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.item-price {
    color: var(--primary);
    font-weight: 900;
    font-family: 'Outfit';
    font-size: 1.1rem;
}

.add-btn {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Outfit';
    transition: var(--transition);
}

.add-btn:hover {
    background: var(--primary);
    color: #000;
}

.add-btn.success {
    border-color: #2ecc71;
    color: #2ecc71;
}

.cart-item h4 {
    color: var(--primary);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(182, 141, 64, 0.3);
}

.qty-controls button {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 900;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-controls button:hover {
    transform: scale(1.3);
}

.qty-controls span {
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
    color: #fff;
}

/* Toast Notification */
.toast-notif {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(182, 141, 64, 0.95);
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Outfit';
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.toast-notif.active {
    transform: translateX(-50%) translateY(0);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -500px;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    z-index: 2000;
    padding: 30px 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--glass-border);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.cart-header h3 {
    letter-spacing: 5px;
    font-size: 1.5rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 30px;
}

.cart-item {
    border-bottom: 1px solid var(--glass-border);
}

.cart-item h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0;
    color: var(--primary);
}

.cart-item span {
    color: #fff;
    font-weight: 700;
}

.table-input {
    margin-bottom: 30px;
}

.table-input label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.table-input input {
    width: 100%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 15px;
    font-family: 'Outfit';
    font-size: 1.2rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--glass-border);
    font-family: 'Outfit';
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 25px;
    width: 100%;
    font-weight: 900;
    border: none;
    cursor: pointer;
    font-family: 'Outfit';
    letter-spacing: 4px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .slogan {
        font-size: 2.5rem;
        letter-spacing: 5px;
        margin-bottom: 30px;
    }

    .hero {
        height: 100dvh;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 10px;
        margin-bottom: 50px;
    }

    .categories {
        margin-bottom: 60px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cat-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-item {
        padding: 25px;
    }

    .cart-drawer {
        padding: 20px;
        max-width: 100%;
        right: -100%;
    }

    .cart-drawer.active {
        right: 0;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit-map iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .nav-actions {
        gap: 20px;
    }

    .slogan {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: 8px;
    }

    .cart-total {
        font-size: 1.4rem;
    }
}

/* Final Polish: Success Modal & Branding */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
}

.success-content {
    text-align: center;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    animation: successIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.success-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.success-text {
    color: var(--text-dim);
    font-size: 1rem;
    letter-spacing: 1px;
}

.network-status {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-family: 'Outfit';
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 4000;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.4);
    display: none;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
    }

    to {
        transform: translateX(-50%) translateY(0);
    }
}

/* Customization Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #0a0a0a;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--glass-border);
    padding: 40px;
    animation: successIn 0.5s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.option-group {
    margin-bottom: 30px;
}

.option-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 15px;
    font-weight: 700;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    padding: 10px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.chip.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.sugar-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: var(--glass);
    height: 4px;
    border-radius: 5px;
    outline: none;
    margin-top: 10px;
}

.sugar-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(182, 141, 64, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.modal-footer {
    margin-top: 40px;
}

/* Tracking UI */
.tracking-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    display: none;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit';
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(182, 141, 64, 0.4);
    z-index: 2500;
    animation: slideInRight 0.5s ease;
}

.tracking-bubble.active {
    display: flex;
}

.tracking-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    padding: 30px;
    display: none;
    z-index: 2500;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.tracking-modal.active {
    display: block;
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.status-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.status-steps::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--glass-border);
    z-index: -1;
}

.step {
    text-align: center;
    opacity: 0.3;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
    color: var(--primary);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #111;
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.step.active .step-icon {
    border-color: var(--primary);
    background: var(--primary);
    color: #000;
}

.step-label {
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.tracking-info {
    text-align: center;
}

.tracking-info p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.order-id-display {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.5;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.brand-footer {
    font-size: 0.6rem;
    opacity: 0.3;
    margin-top: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 900;
}

/* CHATBOT ASSISTANT - PREMIUM DESIGN */
.chatbot-widget {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 2500;
}

.chatbot-toggle {
    background: var(--bg);
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.chatbot-toggle:hover {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.chatbot-toggle i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.chatbot-toggle span {
    font-size: 0.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.chatbot-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 580px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-panel.active {
    display: flex;
}

.chatbot-header {
    background: var(--glass);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.chatbot-header h3 {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--primary);
    margin: 0;
    font-weight: 900;
}

.close-chat {
    cursor: pointer;
    color: var(--text-dim);
    transition: 0.3s;
    font-size: 1.2rem;
}

.close-chat:hover {
    color: #fff;
    transform: rotate(90deg);
}

.chatbot-history {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.chat-msg {
    max-width: 85%;
    padding: 15px 20px;
    border-radius: 18px;
    font-size: 0.85rem;
    line-height: 1.6;
    font-family: "Inter";
}

.ai-msg {
    background: var(--glass);
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid var(--glass-border);
}

.user-msg {
    background: var(--primary);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    font-weight: 700;
}

.chatbot-input-area {
    padding: 20px;
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--glass-border);
}

.chatbot-input-area input {
    flex: 1;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 20px;
    color: #fff;
    font-size: 0.9rem;
}

.chatbot-input-area input:focus {
    outline: none;
    border-color: var(--primary);
}

.chatbot-send-btn {
    background: var(--primary);
    color: #000;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.chatbot-send-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .chatbot-panel {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 75%;
        border-radius: 30px 30px 0 0;
    }
}

/* LOYALTY SYSTEM STYLES */
.loyalty-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
    gap: 2px;
}

.loyalty-trigger i {
    font-size: 1.2rem;
}

.loyalty-trigger .nav-label {
    font-size: 0.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.loyalty-trigger:hover {
    transform: translateY(-2px);
    color: #fff;
    text-shadow: 0 0 10px rgba(182, 141, 64, 0.5);
}

@media (max-width: 480px) {
    .loyalty-trigger .nav-label {
        display: none;
    }

    .loyalty-trigger i {
        font-size: 1.4rem;
    }
}