        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --blue-primary: #0066FF;
            --blue-dark: #0052CC;
            --red-accent: #FF3366;
            --gray-50: #FAFAFA;
            --gray-100: #F5F5F5;
            --gray-200: #E8E8E8;
            --gray-300: #D6D6D6;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #6B7280;
            --gray-700: #4B5563;
            --gray-800: #374151;
            --gray-900: #1A1A1A;
            --white: #FFFFFF;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-900);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        h1 {
            font-size: clamp(2.25rem, 7vw, 5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
        }
        
        h2 {
            font-size: clamp(1.75rem, 5vw, 3rem);
            font-weight: 600;
        }
        
        h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
        }
        
        p {
            line-height: 1.7;
            color: var(--gray-700);
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        button {
            font-family: inherit;
            cursor: pointer;
        }
        
        ul {
            list-style: none;
        }
        
        .page {
            display: none;
            animation: fadeIn 0.4s ease-out;
        }
        
        .page.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .section {
            padding: 4rem 0;
        }

        @media (min-width: 768px) {
            .section {
                padding: 8rem 0;
            }
        }

        /* Reduced padding for sections after hero-small (Gallery, Party Rentals, etc.) */
        .hero-small + .section {
            padding-top: 2rem;
        }

        @media (min-width: 768px) {
            .hero-small + .section {
                padding-top: 3rem;
            }
        }

        .section-with-image {
            position: relative;
            overflow: hidden;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .section-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .section-bg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
        }

        .section-bg-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .section-with-image .container {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .section-with-image .section-header {
            color: white;
        }

        .section-with-image .section-header h2 {
            color: white;
        }

        .section-with-image .section-header p {
            color: rgba(255, 255, 255, 0.9);
        }

        .section-with-image .section-label {
            color: white;
        }
        
        /* Header */
        #header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }
        
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        /* Left navigation */
        .nav-left {
            display: none;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
        }

        .nav-left button,
        .nav-right-links button {
            background: none;
            border: none;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--gray-700);
            cursor: pointer;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.2s;
        }

        .nav-left button:hover,
        .nav-right-links button:hover {
            color: var(--blue-primary);
        }

        .nav-left button.active,
        .nav-right-links button.active {
            color: var(--gray-900);
        }

        .nav-left button.active::after,
        .nav-right-links button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gray-900);
        }

        /* Center logo */
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .logo-img {
            height: 85px;
            width: auto;
            display: block;
        }

        /* Right navigation and actions */
        .nav-right {
            display: none;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
            justify-content: flex-end;
        }

        .nav-right-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .phone-link {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gray-900);
            text-decoration: none;
            padding-left: 1rem;
            border-left: 1px solid var(--gray-200);
        }

        .phone-link:hover {
            color: var(--blue-primary);
        }

        .nav-social {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding-left: 0.5rem;
            border-left: 1px solid var(--gray-200);
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .social-icon:hover {
            transform: scale(1.15);
        }

        /* Instagram - gradient */
        .social-icon[title="Instagram"] {
            color: #E4405F;
        }

        /* Facebook - blue */
        .social-icon[title="Facebook"] {
            color: #1877F2;
        }

        /* TikTok - black/pink */
        .social-icon[title="TikTok"] {
            color: #000000;
        }

        /* WhatsApp - green */
        .social-icon[title="WhatsApp"] {
            color: #25D366;
        }

        /* Snapchat - yellow rounded square with white ghost */
        .social-icon[title="Snapchat"] {
            color: #FFFFFF;
            background: #FFFC00;
            border-radius: 5px;
            padding: 2px;
            width: 24px;
            height: 24px;
        }

        .social-icon[title="Snapchat"] svg {
            width: 18px;
            height: 18px;
            fill: #FFFFFF;
            stroke: #000000;
            stroke-width: 0.8;
        }

        @media (min-width: 1024px) {
            .nav-left {
                display: flex;
            }
            .nav-right {
                display: flex;
            }
        }

        .logo-icon {
            font-size: 1.75rem;
            line-height: 1;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blue-primary);
            letter-spacing: -0.02em;
        }

        .nav-desktop {
            display: none;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
            }
            .nav-actions {
                display: flex;
            }
            .mobile-menu-toggle {
                display: none !important;
            }
        }
        
        .nav-desktop button {
            background: none;
            border: none;
            color: var(--gray-700);
            font-size: 0.9375rem;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        
        .nav-desktop button:hover {
            color: var(--gray-900);
        }
        
        .nav-desktop button.active {
            color: var(--gray-900);
            border-bottom-color: var(--blue-primary);
        }
        
        .coming-soon-badge {
            display: inline-block;
            background: var(--red-accent);
            color: white;
            font-size: 0.6rem;
            font-weight: 600;
            padding: 0.15rem 0.4rem;
            border-radius: 8px;
            text-transform: uppercase;
            margin-left: 0.25rem;
            vertical-align: middle;
        }
        
        .coming-soon-tab {
            position: relative;
        }
        
        .mobile-menu .coming-soon-badge {
            font-size: 0.55rem;
            padding: 0.1rem 0.35rem;
        }
        
        .phone {
            color: var(--gray-700);
            font-size: 0.9375rem;
            font-weight: 500;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.625rem 1.25rem;
            font-size: 0.9375rem;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .btn-primary {
            background: var(--blue-primary);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--blue-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
        }
        
        .btn-secondary {
            background: #D4AF37;
            color: #000;
            border: 2px solid #D4AF37;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #C9A227;
            border-color: #C9A227;
            color: #000;
        }

        .btn-outline {
            background: #D4AF37;
            color: #000;
            border: 2px solid #D4AF37;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: #C9A227;
            border-color: #C9A227;
            color: #000;
        }
        
        .btn-large {
            padding: 0.875rem 1.75rem;
            font-size: 1rem;
        }
        
        .btn-gallery {
            background: transparent;
            color: var(--blue-primary);
            border: 1px solid var(--blue-primary);
            font-size: 0.875rem;
            padding: 0.5rem 1rem;
        }
        
        .btn-gallery:hover {
            background: var(--blue-primary);
            color: white;
        }
        
        /* ============================================
           UNIQUE GALLERY STYLES
           ============================================ */

        /* Gallery Filter Container */
        .gallery-filter-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1rem;
            background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
            border-radius: 16px;
        }

        .gallery-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .gallery-filter-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border: 2px solid transparent;
            border-radius: 50px;
            background: white;
            color: var(--gray-700);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .gallery-filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
            border-color: var(--primary);
        }

        .gallery-filter-btn.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .gallery-filter-btn .filter-icon {
            font-size: 1.1rem;
        }

        .gallery-stats {
            font-size: 0.9rem;
            color: var(--gray-600);
            font-weight: 500;
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 20px;
        }

        /* Masonry Gallery Grid */
        .gallery-masonry {
            columns: 4;
            column-gap: 1rem;
            margin-top: 1rem;
        }

        @media (max-width: 1200px) {
            .gallery-masonry { columns: 3; }
        }
        @media (max-width: 900px) {
            .gallery-masonry { columns: 2; }
        }
        @media (max-width: 500px) {
            .gallery-masonry { columns: 1; }
            .gallery-filter-container { flex-direction: column; align-items: stretch; }
            .gallery-filters { justify-content: center; }
        }

        /* Gallery Item Card */
        .gallery-item {
            position: relative;
            break-inside: avoid;
            margin-bottom: 1rem;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            background: var(--gray-100);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(20px);
            animation: galleryFadeIn 0.6s forwards;
        }

        @keyframes galleryFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
            z-index: 10;
        }

        .gallery-item.hidden {
            display: none;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        /* Gallery Item Overlay */
        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
            padding: 3rem 1.25rem 1.25rem;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover .gallery-item-overlay {
            transform: translateY(0);
        }

        .gallery-item-title {
            color: white;
            font-weight: 700;
            font-size: 1rem;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .gallery-item-category {
            display: inline-block;
            margin-top: 0.5rem;
            padding: 0.25rem 0.75rem;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            border-radius: 20px;
            color: rgba(255,255,255,0.95);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Category color badges */
        .gallery-item[data-category="party-decor"] .gallery-item-category {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
        }
        .gallery-item[data-category="3d-prints"] .gallery-item-category {
            background: linear-gradient(135deg, rgba(0, 210, 255, 0.8), rgba(58, 123, 213, 0.8));
        }
        .gallery-item[data-category="engraving"] .gallery-item-category {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(210, 105, 30, 0.8));
        }

        /* View icon on hover */
        .gallery-item::after {
            content: '🔍';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            font-size: 2.5rem;
            opacity: 0;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
        }

        .gallery-item:hover::after {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        /* Empty state */
        .gallery-empty {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--gray-500);
        }
        .gallery-empty-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        /* Legacy gallery grid support */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        /* ============================================
           PRODUCT DETAIL PAGE STYLES
           ============================================ */
        .product-detail {
            max-width: 1200px;
            margin: 0 auto;
        }
        .product-detail-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .product-detail-back {
            background: var(--blue-primary);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: white;
            transition: all 0.2s;
        }
        .product-detail-back:hover {
            background: var(--blue-dark);
        }
        .product-detail-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        @media (max-width: 768px) {
            .product-detail-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        .product-detail-gallery {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .product-detail-main-image {
            width: 100%;
            aspect-ratio: 4/3;
            border-radius: 12px;
            overflow: hidden;
            background: var(--gray-100);
        }
        .product-detail-main-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }
        .product-detail-main-image .placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
        }
        .product-detail-thumbnails {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .product-detail-thumb {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.2s;
        }
        .product-detail-thumb:hover,
        .product-detail-thumb.active {
            border-color: var(--primary);
        }
        .product-detail-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }
        .product-detail-thumb .placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        .product-detail-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .product-detail-category {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            width: fit-content;
        }
        .product-detail-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gray-900);
            margin: 0;
        }
        @media (max-width: 768px) {
            .product-detail-title {
                font-size: 1.75rem;
            }
        }
        .product-detail-price {
            display: flex;
            flex-direction: column;
        }
        .product-detail-price .label {
            font-size: 1rem;
            font-weight: 400;
            color: var(--gray-600);
        }
        .product-detail-price .amount {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
        .product-detail-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--gray-700);
        }
        .product-detail-features {
            background: var(--gray-50);
            padding: 1.5rem;
            border-radius: 12px;
        }
        .product-detail-features h4 {
            margin: 0 0 1rem 0;
            color: var(--gray-900);
        }
        .product-detail-features ul {
            margin: 0;
            padding-left: 1.25rem;
        }
        .product-detail-features li {
            margin-bottom: 0.5rem;
            color: var(--gray-700);
        }
        .product-detail-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--gray-200);
        }
        .product-detail-cta .btn {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }
        /* Clickable product card styling */
        .product-card-clickable {
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .product-card-clickable:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            padding: 8px;
            cursor: pointer;
        }
        
        .mobile-menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--gray-900);
            border-radius: 2px;
            transition: all 0.3s;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 999;
            flex-direction: column;
            padding: 1rem 0;
            animation: slideDown 0.3s ease;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-menu button {
            background: none;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 500;
            text-align: left;
            color: var(--gray-900);
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }
        
        .mobile-menu button.active {
            color: var(--blue-primary);
            border-left-color: var(--blue-primary);
        }
        
        .mobile-menu-footer {
            padding: 1rem 2rem;
            margin-top: auto;
            border-top: 1px solid var(--gray-200);
        }
        
        .mobile-menu-footer .phone-link {
            display: block;
            color: var(--gray-700);
            margin-bottom: 1rem;
        }
        
        .mobile-menu-footer .btn {
            width: 100%;
        }
        
        /* Hero */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 72px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            overflow: hidden;
        }

        .hero-with-image {
            background: none;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

        .hero-with-image .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-small {
            min-height: 35vh;
        }

        @media (min-width: 768px) {
            .hero-small {
                min-height: 40vh;
            }
        }

        /* Unique hero colors for each page */
        .hero-gallery {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 50%, #a8edea 100%);
        }

        .hero-decor {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        }

        .hero-rentals {
            background: linear-gradient(135deg, #f12711 0%, #f5af19 50%, #ffecd2 100%);
        }

        .hero-prints {
            background: linear-gradient(135deg, #0052D4 0%, #4364F7 50%, #6FB1FC 100%);
        }

        .hero-engraving {
            background: linear-gradient(135deg, #8B4513 0%, #D4A574 50%, #F5DEB3 100%);
        }

        .hero-contact {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        }

        .hero-jewelry {
            background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #FFD700 100%);
        }

        .hero-checkout {
            background: linear-gradient(135deg, #2C3E50 0%, #3498db 100%);
        }

        .hero-success {
            background: linear-gradient(135deg, #134E5E 0%, #71B280 100%);
        }

        .hero-content {
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
            color: white;
            position: relative;
            z-index: 1;
            padding: 2rem 1.5rem;
        }
        
        @media (min-width: 768px) {
            .hero-content {
                padding: 4rem 2rem;
            }
        }
        
        .hero h1 {
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            font-weight: 400;
        }
        
        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 1.25rem;
            }
        }
        
        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-direction: column;
            padding: 0 1rem;
        }
        
        @media (min-width: 768px) {
            .hero-actions {
                flex-direction: row;
                padding: 0;
            }
        }
        
        .hero .btn-primary {
            background: white;
            color: var(--blue-primary);
        }
        
        .hero .btn-primary:hover {
            background: var(--gray-50);
            color: var(--blue-dark);
        }
        
        .trust-badges {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        @media (min-width: 768px) {
            .trust-badges {
                gap: 2rem;
            }
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--gray-50);
            padding: 3rem 0;
        }
        
        @media (min-width: 768px) {
            .stats-section {
                padding: 5rem 0;
            }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 3rem;
            }
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--blue-primary);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        
        @media (min-width: 768px) {
            .stat-number {
                font-size: 3rem;
            }
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: var(--gray-600);
        }
        
        @media (min-width: 768px) {
            .stat-label {
                font-size: 0.9375rem;
            }
        }
        
        /* Section Header */
        .section-header {
            max-width: 720px;
            margin: 0 auto 3rem;
            text-align: center;
            padding: 0 1rem;
        }

        /* Tighter section header for pages with hero-small */
        .hero-small + .section .section-header {
            margin-bottom: 2rem;
        }
        
        .section-label {
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--blue-primary);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
        }

        .hero-small + .section .section-header p {
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .section-header p {
                font-size: 1.125rem;
            }
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .cta-section {
                padding: 8rem 0;
            }
        }
        
        .cta-content {
            max-width: 720px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .cta-content h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .cta-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            margin-bottom: 2.5rem;
        }
        
        @media (min-width: 768px) {
            .cta-content p {
                font-size: 1.125rem;
            }
        }
        
        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-direction: column;
            padding: 0 1rem;
        }
        
        @media (min-width: 768px) {
            .cta-actions {
                flex-direction: row;
                padding: 0;
            }
        }
        
        .cta-section .btn-primary {
            background: white;
            color: var(--blue-primary);
        }
        
        .cta-section .btn-primary:hover {
            background: var(--gray-50);
        }
        
        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 2rem;
            }
        }
        
        .product-card {
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .product-card:hover {
            border-color: #dd8448;
            transform: translateY(-4px);
        }

        /* Electric border SVG container */
        .electric-border {
            position: absolute;
            inset: -4px;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .product-card:hover .electric-border {
            opacity: 1;
        }

        .electric-border svg {
            width: 100%;
            height: 100%;
        }

        .electric-border .electric-path {
            fill: none;
            stroke: url(#electricGradient);
            stroke-width: 3;
            stroke-linecap: round;
            filter: drop-shadow(0 0 3px #dd8448) drop-shadow(0 0 6px #ffb347);
        }

        .product-card:hover .electric-border .electric-path {
            animation: electricMove 1.5s linear infinite;
        }

        @keyframes electricMove {
            0% {
                stroke-dashoffset: 0;
            }
            100% {
                stroke-dashoffset: -120;
            }
        }
        
        .product-image {
            width: 100%;
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        /* Product image hover effects */
        .product-image img {
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        .product-image img.primary-image {
            position: relative;
            z-index: 1;
        }

        .product-image img.secondary-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            opacity: 0;
            z-index: 2;
        }

        /* Hover: show second image if available, otherwise zoom */
        .product-card:hover .product-image img.primary-image {
            transform: scale(1.05);
        }

        .product-card:hover .product-image img.secondary-image {
            opacity: 1;
        }

        /* When secondary image is shown, hide zoom on primary */
        .product-card:hover .product-image.has-secondary img.primary-image {
            transform: scale(1);
            opacity: 0;
        }
        
        @media (min-width: 768px) {
            .product-image {
                font-size: 3rem;
            }
        }
        
        .product-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--red-accent);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            z-index: 3;
        }

        .product-badge.sale-badge {
            background: #059669;
            right: auto;
            left: 12px;
        }

        .product-badge.popular-badge {
            background: var(--red-accent);
        }
        
        .product-info {
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        @media (min-width: 768px) {
            .product-info {
                padding: 1.5rem;
            }
        }
        
        .product-category {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--blue-primary);
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }
        
        .product-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--gray-900);
        }
        
        @media (min-width: 768px) {
            .product-name {
                font-size: 1.25rem;
            }
        }
        
        .product-description {
            font-size: 0.875rem;
            color: var(--gray-600);
            margin-bottom: 1rem;
            flex: 1;
        }

        /* Processing time for 3D Prints and Engraving products - shown only in product detail view */
        .product-detail-processing {
            display: block;
            font-size: 0.875rem;
            color: #667eea;
            font-style: italic;
            margin-top: 0.75rem;
            padding: 0.5rem 0.75rem;
            background: #f0f4ff;
            border-radius: 6px;
            border-left: 3px solid #667eea;
        }

        @media (min-width: 768px) {
            .product-description {
                font-size: 0.9375rem;
            }
        }

        .product-price {
            display: flex;
            flex-direction: column;
            margin-bottom: 1rem;
        }

        .product-price-label {
            font-size: 0.875rem;
            color: var(--gray-600);
            font-weight: 400;
        }

        .product-price-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-900);
        }

        @media (min-width: 768px) {
            .product-price-amount {
                font-size: 1.75rem;
            }
        }
        
        /* Catalog Filters */
        .catalog-filters {
            background: white;
            padding: 1.5rem 0;
            position: sticky;
            top: 72px;
            z-index: 100;
            border-bottom: 1px solid var(--gray-200);
        }

        .catalog-filters + .section {
            padding-top: 2rem;
        }
        
        .filter-buttons {
            display: flex;
            gap: 0.5rem;
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 0.5rem;
            -webkit-overflow-scrolling: touch;
        }
        
        @media (min-width: 768px) {
            .filter-buttons {
                justify-content: center;
                overflow-x: visible;
                padding-bottom: 0;
                flex-wrap: wrap;
                gap: 0.75rem;
            }
        }
        
        .filter-btn {
            padding: 0.4rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            background: transparent;
            color: var(--gray-700);
            border: 1px solid var(--gray-300);
            transition: all 0.2s;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        @media (min-width: 768px) {
            .filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }
        }
        
        .filter-btn:hover {
            border-color: var(--blue-primary);
            color: var(--blue-primary);
        }
        
        .filter-btn.active {
            background: var(--blue-primary);
            color: white;
            border-color: var(--blue-primary);
        }
        
        /* Contact Page */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }
        
        .form-group {
            margin-bottom: 1.25rem;
        }
        
        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            transition: all 0.2s;
            font-family: inherit;
            background: white;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--blue-primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
        }
        
        .form-status {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 6px;
            font-size: 0.9375rem;
            display: none;
        }
        
        .form-status.success {
            background: #D1FAE5;
            color: #065F46;
            display: block;
        }
        
        .form-status.error {
            background: #FEE2E2;
            color: #991B1B;
            display: block;
        }
        
        .contact-info-box {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .contact-info-box {
                padding: 2rem;
            }
        }
        
        .contact-info-box h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-method {
            margin-bottom: 1.25rem;
        }
        
        .contact-method:last-child {
            margin-bottom: 0;
        }
        
        .contact-method-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600);
            margin-bottom: 0.25rem;
        }
        
        .contact-method-value {
            font-size: 1rem;
            color: var(--gray-900);
        }
        
        /* Footer */
        .footer {
            background: var(--gray-900);
            color: rgba(255, 255, 255, 0.8);
            padding: 3rem 0 1.5rem;
        }
        
        @media (min-width: 768px) {
            .footer {
                padding: 5rem 0 2rem;
            }
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
                margin-bottom: 3rem;
            }
        }
        
        .footer-logo {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-logo img {
            height: 60px;
            width: auto;
        }

        .footer-logo .logo-img {
            height: 100px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-logo .logo-icon {
            font-size: 2rem;
        }

        .footer-logo .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            letter-spacing: -0.02em;
        }
        
        .footer-col h4 {
            color: white;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }
        
        .footer-col p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9375rem;
        }
        
        .footer-col ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-col button {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9375rem;
            padding: 0;
            cursor: pointer;
            transition: color 0.2s;
        }
        
        .footer-col button:hover {
            color: white;
        }
        
        .footer-col a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9375rem;
            transition: color 0.2s;
        }
        
        .footer-col a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .footer-bottom {
                text-align: left;
            }
        }
        
        .footer-bottom p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Footer TikTok icon - white default, black on hover */
        .footer-social .social-icon[title="TikTok"] {
            color: #FFFFFF;
        }

        .footer-social .social-icon[title="TikTok"]:hover {
            color: #000000;
        }

        /* Footer Snapchat icon - yellow background with outlined ghost */
        .footer-social .social-icon[title="Snapchat"] {
            background: #FFFC00;
            border-radius: 6px;
            padding: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-social .social-icon[title="Snapchat"] svg {
            fill: #FFFFFF;
            stroke: #000000;
            stroke-width: 1;
        }

        /* ============================================
           LIABILITY WAIVER MODAL STYLES
           ============================================ */
        
        .waiver-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 1rem;
        }
        
        .waiver-modal-content {
            background: white;
            border-radius: 12px;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            outline: none;
        }
        
        .waiver-modal-header {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }
        
        .waiver-modal-header h2 {
            margin: 0;
            font-size: 1.25rem;
            color: var(--gray-900);
        }
        
        .waiver-modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray-600);
            padding: 0.25rem;
            line-height: 1;
            border-radius: 4px;
            transition: all 0.2s;
        }
        
        .waiver-modal-close:hover {
            background: var(--gray-100);
            color: var(--gray-900);
        }
        
        .waiver-modal-body {
            padding: 1.5rem;
            overflow-y: auto;
            flex: 1;
        }
        
        .waiver-text-container {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            padding: 1.5rem;
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            line-height: 1.7;
        }
        
        .waiver-text-container h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 1rem;
            color: var(--gray-900);
            text-align: center;
        }
        
        .waiver-text-container h4 {
            font-size: 0.95rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--gray-900);
        }
        
        .waiver-text-container p {
            margin: 0.75rem 0;
            color: var(--gray-700);
        }
        
        .waiver-text-container ul {
            margin: 0.5rem 0;
            padding-left: 1.25rem;
            list-style: disc;
        }
        
        .waiver-text-container li {
            margin: 0.25rem 0;
            color: var(--gray-700);
        }
        
        .waiver-form-section {
            border-top: 1px solid var(--gray-200);
            padding-top: 1.5rem;
        }
        
        .waiver-checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            padding: 1rem;
            background: #FEF3C7;
            border: 1px solid #F59E0B;
            border-radius: 8px;
        }
        
        .waiver-checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            flex-shrink: 0;
            cursor: pointer;
        }
        
        .waiver-checkbox-group label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-900);
            cursor: pointer;
        }
        
        .waiver-form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 500px) {
            .waiver-form-row {
                grid-template-columns: 1fr 1fr;
            }
            .waiver-form-row.single {
                grid-template-columns: 1fr;
            }
        }
        
        .waiver-form-group {
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }
        
        .waiver-form-group label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-900);
        }
        
        .waiver-form-group input {
            padding: 0.625rem 0.875rem;
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        
        .waiver-form-group input:focus {
            outline: none;
            border-color: var(--blue-primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }
        
        .waiver-error {
            display: none;
            background: #FEE2E2;
            color: #991B1B;
            padding: 0.875rem 1rem;
            border-radius: 6px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .waiver-modal-footer {
            padding: 1rem 1.5rem;
            border-top: 1px solid var(--gray-200);
            display: flex;
            justify-content: flex-end;
            gap: 0.75rem;
            flex-shrink: 0;
        }
        
        .waiver-status {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: 0.75rem;
        }
        
        .waiver-status.signed {
            background: #D1FAE5;
        }
        
        .waiver-status.unsigned {
            background: #FEE2E2;
        }
        
        .btn-disabled {
            opacity: 0.5;
            cursor: not-allowed !important;
        }
        
        .booking-waiver-error {
            display: none;
            background: #FEE2E2;
            color: #991B1B;
            padding: 0.875rem 1rem;
            border-radius: 6px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }
        
        /* ============================================
           COLOR PALETTE SWATCHES
           ============================================ */
        
        .color-swatch {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .color-swatch:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .color-swatch.selected {
            transform: scale(1.1);
            box-shadow: 0 0 0 3px white, 0 0 0 5px var(--blue-primary);
        }
        
        .color-swatch.selected::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 1.25rem;
            font-weight: bold;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* For light colors (white, yellow), use dark checkmark */
        .color-swatch.selected.light-color::after {
            color: #333;
            text-shadow: none;
        }
        
        /* Category Image Tiles */
        .category-tiles {
            padding: 2rem 0;
            background: var(--gray-50);
        }
        .category-tiles-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        @media (max-width: 992px) {
            .category-tiles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .category-tiles-grid {
                grid-template-columns: 1fr;
            }
        }
        .category-tile {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            aspect-ratio: 4/3;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .category-tile:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }
        .category-tile-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }
        .category-tile-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 2rem 1rem 1rem;
            text-align: center;
        }
        .category-tile-title {
            color: white;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .category-tile-count {
            color: rgba(255,255,255,0.85);
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }
        .category-tile.arches .category-tile-bg {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }
        .category-tile.columns .category-tile-bg {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
        }
        .category-tile.walls .category-tile-bg {
            background: linear-gradient(135deg, #fa709a, #fee140);
        }
        .category-tile.centerpieces .category-tile-bg {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }
        
        /* Social Media Links - Brand Colors */
        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        .social-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .social-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .social-link svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        .social-link.instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
        }
        .social-link.facebook {
            background: #1877F2;
            color: white;
        }
        .social-link.tiktok {
            background: #000000;
            color: white;
        }
        .social-link.whatsapp {
            background: #25D366;
            color: white;
        }
        .social-link.snapchat {
            background: #FFFC00;
            color: #000000;
        }
        .social-link.snapchat svg {
            color: #FFFFFF;
        }
        /* Homepage social section */
        .home-social-section {
            background: var(--gray-50);
            padding: 2rem 0;
            text-align: center;
        }
        .home-social-section h3 {
            margin-bottom: 1rem;
            color: var(--gray-700);
        }
        .home-social-section .social-links {
            justify-content: center;
        }

/* ============================================
   LIGHTBOX STYLES
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 0 0 8px 8px;
    width: 100%;
}

.lightbox-caption p {
    margin: 0.25rem 0;
    color: white;
}

#lightboxTitle {
    font-weight: 600;
    font-size: 1.1rem;
}

#lightboxCategory {
    font-size: 0.9rem;
    opacity: 0.8;
}

#lightboxCounter {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 30px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        padding: 0.75rem 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-content img {
        max-height: 70vh;
    }
}

/* Make product images look clickable */
.product-detail-main-image img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-detail-main-image img:hover {
    transform: scale(1.02);
}

.product-detail-thumb img {
    cursor: pointer;
}

/* ==========================================
   SHOPPING CART STYLES
   ========================================== */

/* Cart Icon in Header */
.cart-icon {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-700);
    transition: color 0.2s;
    margin-right: 1rem;
}

.cart-icon:hover {
    color: var(--blue-primary);
}

.cart-icon svg {
    display: block;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--red-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-600);
    line-height: 1;
    padding: 0;
}

.cart-close:hover {
    color: var(--gray-900);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--gray-600);
}

.cart-empty p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--blue-primary);
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.cart-item-remove:hover {
    color: var(--red-accent);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-note {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.cart-checkout-btn {
    width: 100%;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-900);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 1000;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.cart-notification.success {
    background: #10B981;
}

.cart-notification.error {
    background: var(--red-accent);
}

.cart-notification.info {
    background: var(--blue-primary);
}

/* ==========================================
   CHECKOUT PAGE STYLES
   ========================================== */

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
    }
}

.checkout-form-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--gray-900);
}

.checkout-summary-section {
    position: sticky;
    top: 100px;
    align-self: start;
}

.checkout-summary-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.checkout-summary-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.checkout-items {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-name {
    color: var(--gray-700);
}

.checkout-item-price {
    font-weight: 600;
    color: var(--gray-900);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.checkout-total span:last-child {
    color: var(--blue-primary);
}

.checkout-note {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.checkout-info-box {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
}

.checkout-info-box h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.checkout-info-box ol {
    padding-left: 1.25rem;
    color: var(--gray-700);
}

.checkout-info-box li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Deposit Info Box Styles */
.deposit-info-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 102, 255, 0.02));
    border: 2px solid var(--blue-primary);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.deposit-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.deposit-info-title {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
}

.deposit-info-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
}

.deposit-info-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.form-success {
    background: #D1FAE5;
    color: #065F46;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-error {
    background: #FEE2E2;
    color: #991B1B;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Social Media Icons with Tooltip */
.social-wrapper {
    display: flex;
    list-style: none;
    gap: 12px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.social-wrapper .icon {
    position: relative;
    background: var(--white);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-wrapper .icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--gray-700);
    transition: color 0.2s ease;
}

.social-wrapper .icon .tooltip {
    position: absolute;
    top: 0;
    font-size: 13px;
    background: var(--white);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
}

.social-wrapper .icon .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: var(--white);
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.social-wrapper .icon:hover span,
.social-wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.social-wrapper .icon span {
    font-size: 18px;
    transition: all 0.2s ease;
}

.social-wrapper .icon:hover a {
    color: var(--white);
}

/* Instagram */
.social-wrapper .icon.instagram:hover,
.social-wrapper .icon.instagram:hover .tooltip,
.social-wrapper .icon.instagram:hover .tooltip::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

/* Facebook */
.social-wrapper .icon.facebook:hover,
.social-wrapper .icon.facebook:hover .tooltip,
.social-wrapper .icon.facebook:hover .tooltip::before {
    background: #1877f2;
    color: var(--white);
}

/* TikTok */
.social-wrapper .icon.tiktok:hover,
.social-wrapper .icon.tiktok:hover .tooltip,
.social-wrapper .icon.tiktok:hover .tooltip::before {
    background: #000;
    color: var(--white);
}

/* WhatsApp */
.social-wrapper .icon.whatsapp:hover,
.social-wrapper .icon.whatsapp:hover .tooltip,
.social-wrapper .icon.whatsapp:hover .tooltip::before {
    background: #25d366;
    color: var(--white);
}

/* Snapchat */
.social-wrapper .icon.snapchat:hover,
.social-wrapper .icon.snapchat:hover .tooltip,
.social-wrapper .icon.snapchat:hover .tooltip::before {
    background: #fffc00;
    color: #000;
}

.social-wrapper .icon.snapchat:hover a {
    color: #000;
}

/* Twitter/X */
.social-wrapper .icon.twitter:hover,
.social-wrapper .icon.twitter:hover .tooltip,
.social-wrapper .icon.twitter:hover .tooltip::before {
    background: #000;
    color: var(--white);
}

/* YouTube */
.social-wrapper .icon.youtube:hover,
.social-wrapper .icon.youtube:hover .tooltip,
.social-wrapper .icon.youtube:hover .tooltip::before {
    background: #ff0000;
    color: var(--white);
}

/* Nav social wrapper adjustments */
.nav-social.social-wrapper {
    gap: 8px;
}

.nav-social.social-wrapper .icon {
    width: 38px;
    height: 38px;
}

.nav-social.social-wrapper .icon span {
    font-size: 16px;
}

/* Hide tooltip for nav social icons */
.nav-social.social-wrapper .icon .tooltip {
    display: none;
}

/* Home social section - tooltip at bottom */
.home-social-section .social-wrapper .icon .tooltip {
    top: auto;
    bottom: 0;
}

.home-social-section .social-wrapper .icon .tooltip::before {
    bottom: auto;
    top: -3px;
}

.home-social-section .social-wrapper .icon:hover .tooltip {
    top: auto;
    bottom: -45px;
}

/* ===================================
   GLOWING NAVIGATION MENU
   =================================== */
.nav-left,
.nav-right-links {
    --nav-clr-1: #00ade1;  /* Cyan */
    --nav-clr-2: #ff6492;  /* Pink */
    --nav-clr-3: #ffdd1c;  /* Yellow */
    --nav-clr-4: #00dc82;  /* Green */
    --nav-clr-5: #dc00d4;  /* Magenta */
    --nav-clr-6: #ff9500;  /* Orange */
    --nav-clr-7: #a855f7;  /* Purple */
}

.nav-left button,
.nav-right-links button {
    position: relative;
    transition: all 0.3s ease;
}

/* Underline indicator with smooth animation */
.nav-left button::before,
.nav-right-links button::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--glow-color, var(--gray-400));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual nav item colors - Left nav */
.nav-left button:nth-child(1) { --glow-color: var(--nav-clr-1); }  /* Home - Cyan */
.nav-left button:nth-child(2) { --glow-color: var(--nav-clr-2); }  /* Gallery - Pink */
.nav-left button:nth-child(3) { --glow-color: var(--nav-clr-3); }  /* Party Decor - Yellow */
.nav-left button:nth-child(4) { --glow-color: var(--nav-clr-4); }  /* Party Rentals - Green */

/* Individual nav item colors - Right nav */
.nav-right-links button:nth-child(1) { --glow-color: var(--nav-clr-5); }  /* 3D Prints - Magenta */
.nav-right-links button:nth-child(2) { --glow-color: var(--nav-clr-6); }  /* Engraving - Orange */
.nav-right-links button:nth-child(3) { --glow-color: var(--nav-clr-7); }  /* Contact - Purple */

/* Active state - subtle underline only, no glow */
.nav-left button.active::before,
.nav-right-links button.active::before {
    transform: scaleX(1);
}

/* Hover effect - animated underline with subtle glow */
.nav-left button:hover::before,
.nav-right-links button:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 6px var(--glow-color);
}

.nav-left button:hover,
.nav-right-links button:hover {
    color: var(--glow-color) !important;
}

/* ===================================
   ANIMATED SEARCH BAR
   =================================== */
.search-container {
    --search-bg: rgba(255, 255, 255, 0.1);
    --search-border: rgba(255, 255, 255, 0.2);
    --search-text: var(--gray-700);
    --search-primary: #9333ea;
    position: relative;
    width: 44px;
    height: 44px;
    margin-right: 8px;
}

.search-form {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: var(--search-bg);
    border: 2px solid var(--search-border);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    z-index: 10;
}

.search-form:focus-within {
    width: 220px;
    background: var(--white);
    border-color: var(--search-primary);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.search-input {
    position: absolute;
    top: 0;
    left: 44px;
    width: calc(100% - 50px);
    height: 100%;
    padding: 0 16px 0 8px;
    border: none;
    background: transparent;
    color: var(--search-text);
    font-size: 0.95rem;
    outline: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.search-form:focus-within .search-input {
    opacity: 1;
}

.search-input::placeholder {
    color: var(--gray-600);
}

.search-btn {
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.search-form:focus-within .search-btn {
    background: var(--search-primary);
    color: white;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.search-caret {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 0;
    height: 2px;
    background: var(--search-primary);
    transition: width 0.3s ease;
}

.search-form:focus-within .search-caret {
    width: calc(100% - 65px);
    animation: showCaret 1s ease infinite;
}

@keyframes showCaret {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hide search on mobile - can add mobile search separately */
@media (max-width: 900px) {
    .search-container {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-wrapper .icon {
        width: 40px;
        height: 40px;
    }

    .social-wrapper .icon span {
        font-size: 16px;
    }

    .social-wrapper .icon .tooltip {
        font-size: 12px;
        padding: 4px 8px;
    }

    .social-wrapper .icon:hover .tooltip {
        top: -40px;
    }
}

/* ===================================
   DID WE MAKE YOUR DAY BETTER SECTION
   =================================== */
.love-question-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    text-align: center;
    overflow: hidden;
}

.love-question-section .question-container,
.love-question-section .result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.love-question-section .local-gif,
.love-question-section .gif-result {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.love-question-section .question,
.love-question-section .result-container h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.love-question-section .button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.love-question-section .yes-btn,
.love-question-section .no-btn {
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.love-question-section .yes-btn {
    background: linear-gradient(135deg, #ff6b9d, #ff8a80);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.love-question-section .yes-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
}

.love-question-section .no-btn {
    background: transparent;
    color: #aaa;
    border: 2px solid #444;
    position: relative;
    overflow: hidden;
}

.love-question-section .no-btn:hover {
    border-color: #666;
    color: #fff;
}

/* Heart Loading Animation */
.love-question-section .cssload-main {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 2rem auto;
}

.love-question-section .cssload-heart {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: cssload-heart-pump 0.5s ease-in-out infinite;
}

.love-question-section .cssload-heartL,
.love-question-section .cssload-heartR,
.love-question-section .cssload-square {
    position: absolute;
    background: #ff6b9d;
}

.love-question-section .cssload-heartL,
.love-question-section .cssload-heartR {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    top: 0;
}

.love-question-section .cssload-heartL {
    left: 5px;
}

.love-question-section .cssload-heartR {
    right: 5px;
}

.love-question-section .cssload-square {
    width: 62px;
    height: 62px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.love-question-section .cssload-shadow {
    position: absolute;
    width: 60px;
    height: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: cssload-shadow 0.5s ease-in-out infinite;
}

@keyframes cssload-heart-pump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes cssload-shadow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(0.8); opacity: 0.2; }
}

/* No Result Container */
.love-question-section .no-result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.5s ease;
}

.love-question-section .no-result-container h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #aaa;
    margin-bottom: 1.5rem;
}

.love-question-section .try-again-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.love-question-section .try-again-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Result container fade in */
.love-question-section .result-container {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   ANIMATED TRUCK ORDER BUTTON
   =================================== */
.truck-button {
    --progress: 0;
    --street-fill: #6366f1;
    --truck-color: #6366f1;
    --truck-bed: #4f46e5;
    --wheel-color: #1e1b4b;
    position: relative;
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: inherit;
}

.truck-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.truck-button:active {
    transform: translateY(0);
}

.truck-button .default,
.truck-button .success {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 56px;
    color: white;
    text-align: center;
    transition: opacity 0.3s ease;
}

.truck-button .success {
    --o: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: var(--o, 0);
}

.truck-button .truck-wrapper {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.truck-button .truck {
    position: relative;
    width: 50px;
    height: 28px;
}

.truck-button .truck-bed {
    position: absolute;
    right: 0;
    top: 2px;
    width: 26px;
    height: 18px;
    background: var(--truck-bed);
    border-radius: 3px 3px 0 0;
}

.truck-button .truck-cabin {
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 22px;
    background: var(--truck-color);
    border-radius: 6px 3px 0 0;
}

.truck-button .truck-window {
    position: absolute;
    right: 3px;
    top: 4px;
    width: 10px;
    height: 8px;
    background: #a5b4fc;
    border-radius: 2px;
}

.truck-button .truck-wheels {
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 6px;
    display: flex;
    justify-content: space-between;
}

.truck-button .wheel {
    width: 10px;
    height: 10px;
    background: var(--wheel-color);
    border-radius: 50%;
    border: 2px solid #4b5563;
}

.truck-button .street {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--street-fill) calc(var(--progress) * 100%),
        rgba(255,255,255,0.2) calc(var(--progress) * 100%),
        rgba(255,255,255,0.2) 100%
    );
    border-radius: 2px;
}

/* Animation states */
.truck-button.animation .default {
    opacity: 0;
}

.truck-button.animation .truck-wrapper {
    opacity: 1;
    animation: truckDrive 2s ease-in-out forwards;
}

.truck-button.animation .wheel {
    animation: wheelSpin 0.4s linear infinite;
}

.truck-button.done .success {
    opacity: 1;
}

.truck-button.done .truck-wrapper {
    opacity: 0;
}

.truck-button.done {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

@keyframes truckDrive {
    0% {
        left: -60px;
    }
    50% {
        left: calc(50% - 25px);
    }
    100% {
        left: calc(100% + 60px);
    }
}

@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Street progress animation */
.truck-button.animation {
    animation: streetProgress 2s ease-in-out forwards;
}

@keyframes streetProgress {
    0% { --progress: 0; }
    100% { --progress: 1; }
}

/* ===================================
   STAFF PORTAL STYLES
   =================================== */

/* Staff Auth Section */
.staff-auth-section {
    padding: 6rem 0 4rem;
    min-height: 60vh;
    background: var(--gray-50);
}

.staff-login-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .staff-login-grid {
        grid-template-columns: 1fr;
    }
}

.staff-login-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.staff-login-box h2 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.staff-subtitle {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.staff-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.staff-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.staff-form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.staff-form-group input,
.staff-form-group select,
.staff-form-group textarea {
    padding: 12px;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    transition: border-color 0.2s;
}

.staff-form-group input:focus,
.staff-form-group select:focus,
.staff-form-group textarea:focus {
    outline: none;
    border-color: var(--gray-900);
}

.staff-error {
    color: #ef4444;
    font-size: 0.875rem;
    padding: 0.5rem;
    background: #fef2f2;
    border-radius: 4px;
}

.staff-features-list {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 4px;
}

.staff-features-list p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.staff-features-list ul {
    padding-left: 1.5rem;
    list-style: disc;
}

.staff-features-list li {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

/* Staff Dashboard Section */
.staff-dashboard-section {
    padding: 6rem 0 2rem;
    background: var(--gray-50);
    min-height: 100vh;
}

.staff-dashboard {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.staff-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.staff-welcome h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.staff-welcome p {
    color: var(--gray-600);
}

.staff-welcome-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.staff-user-email {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Staff Stats */
.staff-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .staff-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .staff-stats {
        grid-template-columns: 1fr;
    }
}

.staff-stat-card {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.staff-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--gray-900);
}

.staff-stat-icon.sale {
    color: #dc2626;
}

.staff-stat-icon.new {
    color: #c9a227;
}

.staff-stat-info {
    display: flex;
    flex-direction: column;
}

.staff-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.staff-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gray-500);
}

/* Staff Sections */
.staff-section {
    margin-bottom: 2rem;
}

.staff-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.staff-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.staff-section-actions {
    display: flex;
    gap: 0.5rem;
}

/* Staff Profit Cards */
.staff-profit-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .staff-profit-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .staff-profit-cards {
        grid-template-columns: 1fr;
    }
}

.staff-profit-card {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.staff-profit-card.highlight {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    color: white;
}

.staff-profit-card.highlight .staff-profit-value,
.staff-profit-card.highlight .staff-profit-label {
    color: white;
}

.staff-profit-card.highlight .staff-profit-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.staff-profit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.staff-profit-icon.revenue {
    background: #dbeafe;
    color: #2563eb;
}

.staff-profit-icon.cost {
    background: #fee2e2;
    color: #dc2626;
}

.staff-profit-icon.profit {
    background: #dcfce7;
    color: #16a34a;
}

.staff-profit-icon.margin {
    background: #fef3c7;
    color: #d97706;
}

.staff-profit-info {
    display: flex;
    flex-direction: column;
}

.staff-profit-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.staff-profit-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Staff Sales Reports */
.staff-reports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .staff-reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .staff-reports-grid {
        grid-template-columns: 1fr;
    }
}

.staff-report-card {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.staff-report-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.staff-report-info {
    display: flex;
    flex-direction: column;
}

.staff-report-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.staff-report-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.staff-bestsellers {
    margin-top: 1rem;
}

/* Staff Activity Log */
.staff-activity-log {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: white;
}

.staff-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    transition: background-color 0.2s;
}

.staff-activity-item:last-child {
    border-bottom: none;
}

.staff-activity-item:hover {
    background-color: var(--gray-50);
}

.staff-activity-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.staff-activity-content {
    flex: 1;
    min-width: 0;
}

.staff-activity-text {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.staff-activity-text strong {
    color: var(--gray-900);
}

.staff-activity-details {
    display: block;
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.staff-activity-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Staff Customers */
.staff-customers-count {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.staff-customers-table-wrapper {
    overflow-x: auto;
}

.staff-search-input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.staff-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Staff Filters */
.staff-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.staff-filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.staff-filter-btn:hover {
    border-color: var(--gray-900);
}

.staff-filter-btn.active {
    background: var(--gray-900);
    color: white;
    border-color: var(--gray-900);
}

.staff-filter-results {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* Staff Search & Bulk Actions */
.staff-search-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.staff-search-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    flex: 1;
    max-width: 400px;
}

.staff-search-box svg {
    color: var(--gray-400);
    flex-shrink: 0;
}

.staff-search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.staff-bulk-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.staff-bulk-actions span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.btn-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
}

.btn-danger {
    background: #dc2626;
    color: white;
}

.btn-danger:hover {
    background: #b91c1c;
}

/* Staff Table */
.staff-table-container {
    overflow-x: auto;
}

.staff-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.staff-table th,
.staff-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.staff-table th {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    background: var(--gray-100);
}

.staff-table th.sortable {
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}

.staff-table th.sortable:hover {
    background: var(--gray-200);
}

.staff-table th .sort-icon::after {
    content: '⇅';
    margin-left: 4px;
    opacity: 0.3;
    font-size: 0.65rem;
}

.staff-table th.sort-asc .sort-icon::after {
    content: '↑';
    opacity: 1;
}

.staff-table th.sort-desc .sort-icon::after {
    content: '↓';
    opacity: 1;
}

.staff-table td input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.staff-table tbody tr.selected {
    background: #dbeafe;
}

.staff-table tbody tr.selected:hover {
    background: #bfdbfe;
}

.staff-table tbody tr:hover {
    background: var(--gray-50);
}

.staff-table-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.staff-table-thumb-placeholder {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 4px;
    font-size: 1.5rem;
}

.staff-category-tag {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--gray-200);
    border-radius: 4px;
    text-transform: capitalize;
}

.staff-cost-cell {
    color: var(--gray-500);
}

.staff-price-cell {
    font-weight: 600;
}

.staff-profit-cell {
    font-weight: 600;
}

.staff-profit-cell.positive {
    color: #22c55e;
}

.staff-profit-cell.negative {
    color: #ef4444;
}

.staff-status-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.staff-status-badge.new {
    background: #c9a227;
    color: white;
}

.staff-status-badge.sale {
    background: #dc2626;
    color: white;
}

.staff-status-badge.regular {
    background: var(--gray-200);
    color: var(--gray-600);
}

.staff-actions-cell {
    display: flex;
    gap: 0.5rem;
}

.staff-action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-600);
}

.staff-action-btn:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.staff-action-btn.delete:hover {
    background: #fee2e2;
    color: #ef4444;
}

.staff-empty {
    text-align: center;
    padding: 3rem;
    color: var(--gray-500);
}

/* Staff Modals */
.staff-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.staff-modal.active {
    display: flex;
}

.staff-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.staff-modal-content {
    position: relative;
    background: white;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.staff-modal-sm {
    max-width: 400px;
}

.staff-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.staff-modal-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.staff-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
}

.staff-modal-close:hover {
    color: var(--gray-900);
}

.staff-modal-body {
    padding: 1.5rem;
}

.staff-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .staff-form-row {
        grid-template-columns: 1fr;
    }
}

.staff-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.staff-checkbox-label input {
    width: auto;
}

.staff-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 1rem;
}

/* Staff Image Upload */
.staff-image-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.staff-image-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.staff-image-tab.active {
    background: var(--blue-primary);
    color: white;
    border-color: var(--blue-primary);
}

.staff-image-panel {
    display: none;
}

.staff-image-panel.active {
    display: block;
}

.staff-file-upload {
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.staff-file-upload:hover,
.staff-file-upload.dragover {
    border-color: var(--blue-primary);
    background: rgba(0, 102, 255, 0.05);
}

.staff-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
}

.staff-upload-placeholder svg {
    color: var(--gray-400);
}

.staff-upload-preview {
    position: relative;
    display: inline-block;
}

.staff-upload-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
}

.staff-remove-img {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

/* Staff Toast */
.staff-toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 20000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.staff-toast {
    padding: 1rem 1.5rem;
    background: var(--gray-900);
    color: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: staffToastIn 0.3s ease;
}

.staff-toast.success {
    background: #22c55e;
}

.staff-toast.error {
    background: #ef4444;
}

@keyframes staffToastIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsive for staff */
@media (max-width: 768px) {
    .staff-dashboard {
        padding: 1rem;
    }

    .staff-welcome {
        flex-direction: column;
        align-items: flex-start;
    }

    .staff-welcome-right {
        width: 100%;
        justify-content: space-between;
    }

    .staff-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .staff-section-actions {
        width: 100%;
    }

    .staff-section-actions .btn {
        flex: 1;
    }
}

/* Staff Scanner Spinner */
@keyframes staffSpin {
    to { transform: rotate(360deg); }
}
