/* ChaiKaapi Digital Menu - Liquid Glass Design */
:root {
    --primary-color: #ff7500;
    --primary-dark: #e66800;
    --primary-light: #ffb74d;
    --secondary-color: #4CAF50;
    --accent-color: #2196F3;
    --text-primary: #212121;
    --text-secondary: #ffffff;
    --divider-color: #BDBDBD;

    /* Font Variables for Better Mobile Support */
    --font-family-primary: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --line-height-base: 1.5;
}

* {
    box-sizing: border-box;
    touch-action: manipulation;
}

html,
body,
#app {
    /* height: 100%; */
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin: 0;
    padding: 0;
    touch-action: manipulation;
    /* https://grabient.com/HQNgTAHANMAsEFYZjLKBaADMAzARmi2DAE4QZYTDtY8wNswQSY8B2cvY2JIhEXl0x4cDYnShC20IWFHBhsIA?style=linearSwatches&steps=21&angle=210 */
    background: linear-gradient(210deg, rgba(111, 147, 140, 1.000) 0.000%, rgba(111, 147, 140, 1.000) 4.762%, rgba(99, 144, 140, 1.000) 4.762%, rgba(99, 144, 140, 1.000) 9.524%, rgba(88, 141, 139, 1.000) 9.524%, rgba(88, 141, 139, 1.000) 14.286%, rgba(77, 138, 138, 1.000) 14.286%, rgba(77, 138, 138, 1.000) 19.048%, rgba(66, 134, 136, 1.000) 19.048%, rgba(66, 134, 136, 1.000) 23.810%, rgba(56, 129, 134, 1.000) 23.810%, rgba(56, 129, 134, 1.000) 28.571%, rgba(47, 124, 132, 1.000) 28.571%, rgba(47, 124, 132, 1.000) 33.333%, rgba(39, 119, 129, 1.000) 33.333%, rgba(39, 119, 129, 1.000) 38.095%, rgba(32, 113, 126, 1.000) 38.095%, rgba(32, 113, 126, 1.000) 42.857%, rgba(27, 107, 122, 1.000) 42.857%, rgba(27, 107, 122, 1.000) 47.619%, rgba(23, 100, 118, 1.000) 47.619%, rgba(23, 100, 118, 1.000) 52.381%, rgba(20, 94, 114, 1.000) 52.381%, rgba(20, 94, 114, 1.000) 57.143%, rgba(19, 87, 109, 1.000) 57.143%, rgba(19, 87, 109, 1.000) 61.905%, rgba(19, 80, 104, 1.000) 61.905%, rgba(19, 80, 104, 1.000) 66.667%, rgba(21, 73, 99, 1.000) 66.667%, rgba(21, 73, 99, 1.000) 71.429%, rgba(24, 66, 93, 1.000) 71.429%, rgba(24, 66, 93, 1.000) 76.190%, rgba(29, 59, 87, 1.000) 76.190%, rgba(29, 59, 87, 1.000) 80.952%, rgba(35, 52, 81, 1.000) 80.952%, rgba(35, 52, 81, 1.000) 85.714%, rgba(42, 45, 74, 1.000) 85.714%, rgba(42, 45, 74, 1.000) 90.476%, rgba(51, 39, 67, 1.000) 90.476%, rgba(51, 39, 67, 1.000) 95.238%, rgba(60, 32, 61, 1.000) 95.238% 100.000%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* Improve text rendering on mobile */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Loading Screen */
.loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff7500 0%, #e66800 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-text {
    color: white;
    font-size: 1.2rem;
    margin-top: 2rem;
    font-weight: 300;
}

/* App Layout */
.app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.desktop-mobile-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    padding-top: 68px;
    padding-bottom: 80px;
    overflow-y: auto;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 1rem 0;
}

@media (min-width: 993px) {
    .main-content {
        margin-bottom: 0;
    }

    .modern-bottom-nav {
        display: none;
    }

    .desktop-mobile-container {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* ===== COMMON GLASS CARD CLASS ===== */
.glass-card {
    background: rgb(80 97 121 / 24%);
    backdrop-filter: blur(21px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgb(232 239 239 / 55%);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Card Styles */
.staff-card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.staff-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== MODERN HEADER ===== */

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    min-height: 56px;
}

.modern-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.modern-brand:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 117, 0, 1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 117, 0, 0.3);
}

.brand-icon .material-icons {
    font-size: 18px;
    color: white;
}

.brand-text {
    font-family: var(--font-family-primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-info-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-right: 12px;
}

.user-name {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.user-points {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    background: rgba(255, 117, 0, 0.3);
    padding: 2px 8px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.modern-menu-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.modern-menu-btn:active {
    transform: scale(0.95);
}

.modern-menu-btn .material-icons {
    font-size: 20px;
}

/* ===== MODERN SIDE NAVIGATION ===== */
.sidenav {
    width: 300px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.sidenav li>a {
    color: #64748b !important;
    padding: 12px 24px !important;
    margin: 4px 12px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: transparent !important;
}

.sidenav li>a:hover {
    background: rgba(100, 116, 139, 0.1) !important;
    color: #475569 !important;
    transform: translateX(4px);
}

.sidenav li>a.router-link-active {
    background: rgba(255, 117, 0, 0.15) !important;
    color: #ff7500 !important;
}

.sidenav li>a i.material-icons {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 0 !important;
}

.sidenav li>a:hover i.material-icons {
    background: rgba(100, 116, 139, 0.15);
}

.sidenav li>a.router-link-active i.material-icons {
    background: #ff7500;
    color: white;
}

.user-view {
    padding: 1.5rem 1rem 1rem 1rem;
    background: rgba(255, 117, 0, 0.1) !important;
    backdrop-filter: blur(10px);
    margin: 0;
}

.user-view .background {
    display: none;
}

.user-view a {
    color: #1e293b !important;
}

.user-view .name {
    font-weight: 600 !important;
    font-size: 1.1rem !important;
}

.user-view .email {
    opacity: 0.7 !important;
    font-size: 0.9rem !important;
}

.user-view i.material-icons {
    background: #ff7500 !important;
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    font-size: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
}

.sidenav .divider {
    background: rgba(0, 0, 0, 0.1) !important;
    margin: 8px 12px !important;
}

.sidenav-overlay {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(4px);
}

/* ===== MODERN BOTTOM NAVIGATION ===== */

.modern-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 16px 8px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    border-radius: 16px;
    text-decoration: none;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 64px;
    position: relative;
    background: transparent;
}

.nav-item:hover {
    color: #64748b;
    text-decoration: none;
}

.nav-item.active {
    background: rgba(255, 117, 0, 0.15);
    color: #ff7500;
}

.nav-item.active .nav-icon {
    background: #ff7500;
    color: white;
    transform: translateY(-2px);
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.nav-icon .material-icons {
    font-size: 20px;
    transition: all 0.3s ease;
}

.nav-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    font-family: var(--font-family-primary);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.nav-item.active .nav-label {
    font-weight: 600;
    color: #ff7500;
}

.nav-item:not(.active):hover .nav-icon {
    background: rgba(100, 116, 139, 0.1);
    transform: translateY(-1px);
}

.nav-item:not(.active):hover .nav-label {
    color: #475569;
}

/* Material Icons Optimization */
.input-field .material-icons {
    color: var(--text-secondary);
    font-display: swap;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -moz-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch Action Rules for Better Performance */
button,
.btn,
.btn-floating,
.sidenav-trigger,
a[role="button"],
input[type="button"],
input[type="submit"],
.card,
.collection-item {
    touch-action: manipulation;
}

.sidenav,
.modal,
.dropdown-content {
    touch-action: pan-y;
}

input,
textarea,
select {
    touch-action: manipulation;
}

/* Mobile Font Optimization */
@media (max-width: 480px) {
    body {
        font-size: 15px;
        line-height: 1.4;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font-family-primary);
        font-weight: 600;
        line-height: 1.3;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.9rem;
    }

    .btn,
    .btn-large,
    .btn-small {
        font-family: var(--font-family-primary);
        font-weight: 500;
        letter-spacing: 0.025em;
        min-height: 44px;
        /* Better touch target */
    }

    .card-content {
        font-size: 15px;
        line-height: 1.5;
    }

    input,
    textarea,
    select {
        font-family: var(--font-family-primary);
        font-size: 16px;
        line-height: 1.4;
    }

    /* Optimize glass cards for mobile */
    .glass-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
        border-radius: 12px;
    }

    /* Adjust main content padding */
    .main-content {
        padding: 0.5rem 0;
    }

    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 360px) {
    .header-content {
        padding: 8px 12px;
    }

    .brand-text {
        font-size: 16px;
        font-weight: 700;
    }

    .brand-icon {
        width: 28px;
        height: 28px;
    }

    /* Extra small screens optimization */
    .glass-card {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
        border-radius: 10px;
    }

    .container {
        padding: 0 0.5rem;
    }

    /* Adjust navigation for very small screens */
    .modern-bottom-nav {
        padding: 6px 8px 6px;
    }

    .nav-item {
        padding: 6px 8px;
        min-width: 56px;
    }

    .nav-icon {
        width: 36px;
        height: 36px;
    }

    .nav-text {
        font-size: 0.7rem;
    }
}

.user-info {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.ck-profile-img {
    max-width: 4rem;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

/* Music Player Styles */
.music-player {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.now-playing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.audio-controls {
    width: 100%;
    margin: 1rem 0;
}

.control-buttons {
    text-align: center;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 600px) {

    .music-player {
        margin: 0.5rem;
        padding: 1rem;
    }

    nav .brand-logo {
        font-size: 1.5rem;
    }

    .page-footer .container {
        padding: 1rem 0.5rem;
    }
}

/* Enhanced Mobile Responsiveness for Small Screens */
@media (max-width: 414px) {
    .desktop-mobile-container {
        padding-top: 60px;
        padding-bottom: 72px;
    }

    .modern-header {
        min-height: 60px;
    }

    .header-content {
        padding: 10px 16px;
        min-height: 60px;
    }

    .modern-bottom-nav {
        padding: 8px 12px 8px;
    }

    .glass-card {
        padding: 1rem;
        margin: 0.5rem 0.25rem;
    }
}

/* Very Small Mobile Devices (iPhone SE, small Android) */
@media (max-width: 320px) {
    .desktop-mobile-container {
        padding-top: 56px;
        padding-bottom: 68px;
    }

    .header-content {
        padding: 8px 12px;
    }

    .brand-text {
        font-size: 14px;
    }

    .glass-card {
        padding: 0.75rem;
        margin: 0.25rem 0.125rem;
        border-radius: 8px;
    }

    .modern-bottom-nav {
        padding: 6px 8px 6px;
    }

    .nav-item {
        padding: 4px 6px;
        min-width: 48px;
    }

    .nav-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .nav-text {
        font-size: 0.6rem;
    }

    /* Smaller form elements */
    input,
    textarea,
    select {
        font-size: 14px;
    }

    .btn,
    .btn-large,
    .btn-small {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Mobile Landscape and Medium Devices */
@media (max-width: 768px) and (orientation: landscape) {
    .desktop-mobile-container {
        padding-top: 52px;
        padding-bottom: 64px;
    }

    .modern-header {
        min-height: 52px;
    }

    .header-content {
        padding: 8px 20px;
        min-height: 52px;
    }

    .glass-card {
        padding: 0.75rem 1rem;
    }

    .modern-bottom-nav {
        padding: 6px 16px 6px;
    }
}

/* Touch Device Optimizations */
@media (pointer: coarse) {

    .nav-item,
    .btn,
    .btn-large,
    .btn-small,
    .ck-btn {
        min-height: 44px;
        /* Apple's recommended touch target size */
    }

    .modern-menu-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ===== COMMON BUTTON SYSTEM (Global) ===== */

/* Primary Action Button (from CheckInOut.html) */
.action-btn {
    background: #ff7500;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 117, 0, 0.3);
    min-width: 160px;
    justify-content: center;
    font-family: var(--font-family-primary);
    text-decoration: none;
    outline: none;
    user-select: none;
    white-space: nowrap;
    min-height: 44px;
}

.action-btn:hover {
    background: #e66800;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 117, 0, 0.4);
    text-decoration: none;
    color: white;
}

.action-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 117, 0, 0.3);
}

.action-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 117, 0, 0.3);
}

.action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(255, 117, 0, 0.2);
}

/* Checkout/Secondary Action Button */
.action-btn.checkout-btn {
    background: #f44336;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.action-btn.checkout-btn:hover {
    background: #d32f2f;
    box-shadow: 0 6px 16px rgba(244, 67, 54, 0.4);
}

/* Check-in Button Variant */
.action-btn.checkin-btn {
    background: #ff7500;
    box-shadow: 0 4px 12px rgba(255, 117, 0, 0.3);
}

.action-btn.checkin-btn:hover {
    background: #e66800;
    box-shadow: 0 6px 16px rgba(255, 117, 0, 0.4);
}

/* Base button class for consistent styling throughout the app */
.ck-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 44px;
    line-height: 1.4;
    outline: none;
    user-select: none;
    white-space: nowrap;
}

.ck-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.ck-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ck-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 117, 0, 0.3);
}

/* Primary button variant */
.ck-btn-primary {
    background: linear-gradient(135deg, #ff7500 0%, #e66800 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ck-btn-primary:hover {
    background: linear-gradient(135deg, #e66800 0%, #b8691f 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 117, 0, 0.3);
}

.ck-btn-primary:active {
    background: linear-gradient(135deg, #b8691f 0%, #a05c1b 100%);
}

/* Secondary button variant */
.ck-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.ck-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Glass button variant */
.ck-btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
}

.ck-btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

/* Small button size */
.ck-btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-height: 36px;
    border-radius: 8px;
}

/* Large button size */
.ck-btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 52px;
    border-radius: 16px;
}

/* Copy Coordinates Button Style */
.copy-coords-btn {
    align-self: flex-start;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    padding: 0 1rem !important;
    height: 32px !important;
    line-height: 32px !important;
    background: #607d8b !important;
}

.copy-coords-btn:hover {
    background: #546e7a !important;
}

.copy-coords-btn .material-icons {
    font-size: 1rem !important;
    margin-right: 0.3rem !important;
}

/* Retry Button Style */
.retry-btn {
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    padding: 0 0.8rem !important;
    height: 28px !important;
    line-height: 28px !important;
}

/* Icon styling in buttons */
.ck-btn .material-icons.left,
.action-btn .material-icons.left {
    margin-right: 8px;
    margin-left: -4px;
    font-size: 18px;
}

.ck-btn .material-icons.right,
.action-btn .material-icons.right {
    margin-left: 8px;
    margin-right: -4px;
    font-size: 18px;
}

/* Rotating animation for loading states */
.rotating {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Form Overrides for CK Brand */
.input-field input:focus+label,
.input-field textarea:focus+label {
    color: #ff7500 !important;
}

.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 1px solid #ff7500 !important;
    box-shadow: 0 1px 0 0 #ff7500 !important;
}

/* Materialize Button Overrides */
.btn,
.btn-large,
.btn-small {
    background-color: #ff7500 !important;
    font-family: var(--font-family-primary) !important;
    border-radius: 8px !important;
}

.btn:hover,
.btn-large:hover,
.btn-small:hover {
    background-color: #e66800 !important;
}

/* Toast and Modal Overrides */
.toast {
    border-radius: 4px;
    font-family: var(--font-family-primary);
}

.modal.glass-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(21px) !important;
    -webkit-backdrop-filter: blur(21px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px !important;
    color: white !important;
}

.modal.glass-card .modal-content {
    background: transparent !important;
    padding: 2rem !important;
}

.modal.glass-card h4 {
    color: white !important;
    font-weight: 300 !important;
    margin: 1rem 0 !important;
}

.modal.glass-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
}

/* Essential Utility Classes */
.error-message {
    color: #f44336;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.success-message {
    color: #4caf50;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.loading-component {
    text-align: center;
    padding: 2rem;
    color: white;
}

.loading-component .preloader-wrapper {
    margin: 0 auto;
}

/* Store Info Glass Cards */
.store-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(21px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.store-info h5 {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.store-info p {
    margin: 0.25rem 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Badge overrides */
.badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 117, 0, 0.2);
    color: #ff7500;
    border-radius: 12px;
}

/* Footer adjustments */
.page-footer {
    margin-top: auto;
    border-radius: 0 0 20px 20px;
}

.page-footer h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Desktop adjustments for feedback form */
@media (min-width: 993px) {
    .main-content {
        min-height: calc(667px - 140px);
        /* Adjust for mobile container height */
    }
}