/*
 * Extracted verbatim from the source project's layouts/app.blade.php inline
 * <style> block (its lines 86-589), which carries the chat widget, footer,
 * sticky footer menu, notice bar and header/nav rules.
 *
 * Kept as a static file loaded in the same position in the cascade as the
 * original: after styles.css and before tailwindcss.css, because tailwind's
 * preflight is what the source relies on to reset these elements.
 *
 * The two settings-driven declarations the original interpolated
 * (--notice-* colours) are emitted as CSS variables by the layout instead.
 */
        /* Hide sticky footer on desktop */
        @media (min-width: 768px) {
            .sticky-footer-container {
                display: none !important;
            }
        }

        /* Chat Widget Styles */
        .chat-widget-container {
            position: fixed;
            bottom: 100px;
            right: 20px;
            z-index: 99999;
            font-family: 'Lato', sans-serif;
        }

        .chat-widget {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .chat-options {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px) scale(0.8);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .chat-options.open {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }

        .chat-option {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: all 0.2s ease;
            position: relative;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transition-delay: var(--delay, 0s);
        }

        .chat-options.open .chat-option {
            opacity: 1;
            transform: scale(1);
        }

        .chat-option:hover {
            transform: scale(1.15) !important;
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }

        .chat-option.whatsapp {
            background: #25D366;
        }

        .chat-option.whatsapp:hover {
            background: #128C7E;
        }

        .chat-option.telegram {
            background: #0088cc;
        }

        .chat-option.telegram:hover {
            background: #006699;
        }

        .chat-option.messenger {
            background: #0084FF;
        }

        .chat-option.messenger:hover {
            background: #0066CC;
        }

        .chat-option .tooltip {
            position: absolute;
            right: 62px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }

        .chat-option:hover .tooltip {
            opacity: 1;
        }

        .chat-toggle-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: #e53935;
            color: white;
            font-size: 22px;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(229, 57, 53, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .chat-toggle-button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 24px rgba(229, 57, 53, 0.5);
        }

        .chat-toggle-button .icon-chat,
        .chat-toggle-button .icon-close {
            position: absolute;
            transition: all 0.3s ease;
        }

        .chat-toggle-button .icon-chat {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        .chat-toggle-button .icon-close {
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        .chat-toggle-button.active .icon-chat {
            opacity: 0;
            transform: rotate(90deg) scale(0.5);
        }

        .chat-toggle-button.active .icon-close {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        .chat-toggle-button.active {
            background: #2d3748;
            box-shadow: 0 4px 16px rgba(45, 55, 72, 0.4);
        }

        /* Footer Styles */
        .footer-custom {
            border-top: 1px solid #e5e7eb;
            color: #1f2937;
            font-family: Arial, sans-serif;
            margin-top: 2rem;
            background-color: var(--footer-color);
        }

        .footer-custom .social-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 30px;
        }

        @media (min-width: 768px) {
            .footer-custom .social-grid {
                display: none;
            }
        }

        .footer-custom .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 8px;
            padding: 14px 0;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .footer-custom .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .footer-custom .contact-card {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 12px;
            padding: 14px 16px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border: 2px solid #f1f5f9;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .footer-custom .contact-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .footer-custom .contact-card .icon {
            font-size: 30px;
            margin-right: 16px;
            width: 30px;
            text-align: center;
        }

        /* Sticky Footer Menu */
        .sticky-footer-container {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid rgba(0,0,0,0.08);
            z-index: 9999;
            height: 65px;
            padding: 0 4px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        }

        /* Only show sticky footer on mobile */
        @media (min-width: 768px) {
            .sticky-footer-container {
                display: none !important;
            }
        }

        .sticky-footer-item {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .sticky-footer-item a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #6b7280;
            font-size: 10px;
            font-weight: 500;
            transition: all 0.2s ease;
            padding: 4px 8px;
            border-radius: 8px;
            width: 100%;
            height: 100%;
        }

        .sticky-footer-item a:hover {
            color: var(--theme-color);
        }

        .sticky-footer-item a span:first-child {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2px;
            color: #1f2937;
            transition: color 0.2s ease;
        }
        
        .sticky-footer-item a span:last-child {
            font-size: 9px;
            font-weight: 500;
            color: #1f2937;
            transition: color 0.2s ease;
        }

        .sticky-footer-item a:hover span:first-child {
            color: var(--theme-color);
        }

        .sticky-footer-item a span:last-child {
            font-size: 9px;
            font-weight: 500;
            color: #6b7280;
            transition: color 0.2s ease;
        }

        .sticky-footer-item a:hover span:last-child {
            color: var(--theme-color);
        }

        .sticky-footer-item a.active {
            color: var(--theme-color);
        }

        .sticky-footer-item a.active span:first-child,
        .sticky-footer-item a.active span:last-child {
            color: var(--theme-color);
        }

        /* Header styles */
        .header .nav-container {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.5s ease;
            border-radius: 0.5rem;
            padding: 0.25rem 1rem;
        }

        .header .nav-container:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        /* User Menu styles */
        #userMenu {
            background-color: var(--color-bg-content);
            border-color: var(--color-bg-main);
            min-width: 16rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        #userMenu .menu-item {
            color: #374151;
            transition: all 0.2s ease;
        }

        #userMenu .menu-item:hover {
            background-color: #f3f4f6;
        }

        #userMenu .menu-item.logout:hover {
            background-color: #fef2f2;
        }

        /* Wallet button */
        .wallet-btn {
            transition: transform 0.2s ease;
        }

        .wallet-btn:hover {
            transform: scale(1.05);
        }

        .profile-btn {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .profile-btn:hover {
            border-color: var(--theme-color);
            transform: scale(1.05);
        }

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

        .nav-link {
            color: var(--navigation-font-color);
            font-weight: 700;
            font-size: 0.875rem;
            padding: 0.25rem 0.75rem;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
        }

        .nav-link:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .profile-btn .arrow {
            transition: transform 0.3s ease;
        }

        .profile-btn.active .arrow {
            transform: rotate(180deg);
        }

        /* Footer Notice */
        .footer-notice {
            background-color: var(--notice-background-color, #fef3c7);
            color: var(--notice-font-color, #92400e);
            padding: 10px 20px;
            margin: 10px 0;
            border-radius: 6px;
            font-size: 13px;
            line-height: 1.5;
        }

        .footer-notice .notice-title {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 2px;
        }

        /* ============================================================
           LOGIN & REGISTER BUTTON STYLES
           ============================================================ */
        .btn-auth {
            padding: 6px 18px;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            letter-spacing: 0.3px;
        }
        
        .btn-login {
            background-color: var(--theme-color);
            color: white !important;
            border: 2px solid var(--theme-color);
        }
        
        .btn-login:hover {
            background-color: transparent;
            color: var(--theme-color) !important;
            transform: translateY(-1px);
        }
        
        .btn-register {
            background-color: var(--theme-color);
            color: white !important;
            border: 2px solid var(--theme-color);
        }
        
        .btn-register:hover {
            background-color: transparent;
            color: var(--theme-color) !important;
            transform: translateY(-1px);
        }
        
        /* Hide register button on mobile */
        @media (max-width: 768px) {
            .btn-register {
                display: none !important;
            }
        }

        /* ============================================================
           DISABLE SELECTION, RIGHT-CLICK, AND INSPECT
           ============================================================ */
        
        /* Disable text selection on the whole page */
        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Allow selection only on input fields and textareas */
        input, textarea, [contenteditable="true"] {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
        }

        /* Disable image dragging */
        img {
            -webkit-user-drag: none;
            user-drag: none;
            -webkit-touch-callout: none;
        }

        /* Disable context menu (right-click) */
        * {
            -webkit-touch-callout: none;
        }
/*
 * The extract stopped one line late and brought the source's closing `</style>`
 * tag with it. Harmless - a CSS parser discards it - but it is not CSS, so it is
 * removed here.
 *
 * The two `user-select: none` rules above ARE from the source and are left in
 * place so this file stays a faithful copy; site-chrome.css switches selection
 * back on, because this storefront exists for people to copy voucher codes and
 * transaction IDs out of it.
 */
