body.min-h-screen.flex.items-center.justify-center.bg-\[var\(--dbc-bg\)\] {
    background: #333333;
}

div#dbc-card-views {
    width: 3.57rem;
    height: 3.57rem;
    color: white;
    margin-top: 6rem;
}

div#dbc-section-name {
    font-size: 2rem;
    margin: 1rem 0 2rem;
}

div#wpadminbar {
    display: none;
}

html {
    margin-top: 0 !important;
}

div#dbc-section-share>a {
    background: black;
}

div#dbc-section-share {
    margin-bottom: 2rem;
}

section#dbc-section-contact i {
    font-size: 1.25rem;
    width: 1.86rem;
    height: 1.5rem;
    text-align: center;
    padding: 0.5rem 0.25rem 0.25rem 0.25rem;
    box-sizing: content-box;
    border-radius: 50%;
}

section#dbc-section-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#dbc-section-qr>img {
    width: 50%;
}

img#dbc-qr-code {
    margin-bottom: 2rem;
}

a#dbc-btn-qr {
    width: 100%;
    font-weight: 500;
    color: white;
    background: black;
    border-radius: 8px;
    margin-bottom: 2rem;
    padding: 1rem;
    font-size: 1rem;
}

a#dbc-btn-qr>i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.dbc-card-section {
    background: #fbfbfb;
    padding: 1rem;
    line-height: 2;
    border: 1px solid lightgrey;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.dbc-card-section-title {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    font-weight: 600;
    background: black;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* ============================================================================
   Sticky Bottom Navigation Menu
   ============================================================================
   Fixed bottom navigation with horizontal scrolling for overflow items.
   Responsive centering and proper alignment across all screen sizes.
   ========================================================================== */

nav#dbc-card-sticky-menu {
    /* Layout */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;

    /* Positioning - Fixed bottom with responsive centering */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    /* Sizing - Responsive width with max-width constraint */
    width: 100%;

    /* Overflow handling - Enable horizontal scrolling */
    overflow-x: auto;
    overflow-y: hidden;

    /* Scrollbar styling for webkit browsers */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;

    /* Visual styling */
    background: #000000;
    padding: 0.75rem 1rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* Shadow for depth */
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1), 0 -2px 4px -2px rgb(0 0 0 / 0.1);

    /* Smooth scrolling behavior */
    scroll-behavior: smooth;

    /* Ensure content doesn't wrap */
    white-space: nowrap;

    /* Z-index to stay above content */
    z-index: 1000;
}

/* Webkit scrollbar styling */
nav#dbc-card-sticky-menu::-webkit-scrollbar {
    height: 4px;
}

nav#dbc-card-sticky-menu::-webkit-scrollbar-track {
    background: transparent;
}

nav#dbc-card-sticky-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

nav#dbc-card-sticky-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.wp-block-woocommerce-checkout {
    padding: 2em;
}

/* Menu item styling */
nav#dbc-card-sticky-menu a.dbc-menu-item {
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 2.1rem;
    vertical-align: middle;

    /* Spacing */
    padding: 0.5rem 0.75rem;

    /* Typography */
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1;
    white-space: nowrap;

    /* Visual */
    background: transparent;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;

    /* Prevent text selection during navigation */
    user-select: none;
    -webkit-user-select: none;
}

/* Menu item hover state */
nav#dbc-card-sticky-menu a.dbc-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Menu item focus state (keyboard navigation) */
nav#dbc-card-sticky-menu a.dbc-menu-item:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.15);
}

/* Menu item active state (current section) */
nav#dbc-card-sticky-menu a.dbc-menu-item.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 540px) {
    nav#dbc-card-sticky-menu {
        max-width: 100%;
        padding: 0.5rem 0.75rem;
        gap: 0.25rem;
    }

    nav#dbc-card-sticky-menu a.dbc-menu-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}

@media (min-width: 541px) and (max-width: 768px) {
    nav#dbc-card-sticky-menu {
        gap: 0.75rem;
        padding: 1rem 1.25rem;
        max-width: 448px;
    }

    nav#dbc-card-sticky-menu a.dbc-menu-item {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

@media (min-width: 769px) {
    nav#dbc-card-sticky-menu {
        gap: 0.75rem;
        padding: 1rem 1.25rem;
        max-width: 448px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    nav#dbc-card-sticky-menu a.dbc-menu-item {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}