        /* CSS Variables */
        :root {
            --ok-red: #E53935;
            --ok-gold: #FFD700;
            --ok-navy: #0A2540;
            --ok-ink: #12202f;
            --ok-line: #EAECEE;
            --ok-bg: #FAFBFC;
            
            /* Search specific colors */
            --search-bg: #FFFFFF;
            --search-border: #E2E8F0;
            --search-focus: #4A90E2;
            --search-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --search-radius: 16px;
            --search-accent: #3B82F6;

            /* Typography */
            --font-family: 'Poppins', 'Inter', system-ui, sans-serif;
            --font-weight-regular: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;

            /* Spacing */
            --space-2: 2px;
            --space-4: 4px;
            --space-6: 6px;
            --space-8: 8px;
            --space-10: 10px;
            --space-12: 12px;
            --space-16: 16px;
            --space-20: 20px;
            --space-24: 24px;
            --space-32: 32px;

            /* Border Radius */
            --radius-sm: 8px;
            --radius-md: 10px;
            --radius-lg: 12px;
            --radius-xl: 16px;

            /* Shadows */
            --shadow-subtle: 0 6px 16px rgba(10, 37, 64, 0.08);
            --shadow-menu: 0 10px 30px rgba(0, 0, 0, 0.15);

            /* Breakpoints */
            --tablet: 768px;
            --desktop: 1024px;
        }

        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            font-weight: var(--font-weight-regular);
            color: var(--ok-ink);
            background-color: var(--ok-bg);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Container Utility */
        .ok-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 var(--space-16);
        }

        @media (min-width: 768px) {
            .ok-container {
                padding: 0 var(--space-24);
            }
        }

        /* Header Component */
        .ok-header {
            position: sticky;
            top: 0;
            background-color: white;
            border-bottom: 1px solid var(--ok-line);
            z-index: 100;
            height: 80px;
            display: flex;
            align-items: center;
        }

        .ok-header .ok-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ok-logo {
            display: flex;
            align-items: center;
            gap: var(--space-12);
        }

        .ok-logo-img {
            height: 55px;
            width: auto;
        }

        .ok-header-actions {
            display: flex;
            gap: var(--space-16);
        }

        .ok-icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-8);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease;
        }

        .ok-icon-btn:focus {
            outline: 2px solid var(--ok-navy);
            outline-offset: 2px;
        }

        .ok-icon-btn:hover {
            background-color: var(--ok-line);
        }

        /* Enhanced Hamburger Menu */
        .ok-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
            backdrop-filter: blur(4px);
        }

        .ok-menu-overlay.active {
            display: block;
        }

        .ok-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            z-index: 1001;
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            box-shadow: var(--shadow-menu);
            display: flex;
            flex-direction: column;
        }

        .ok-menu.active {
            transform: translateX(0);
        }

        .ok-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-24);
            background: linear-gradient(135deg, var(--ok-navy) 0%, #1a365d 100%);
            color: white;
        }

        .ok-menu-logo {
            display: flex;
            align-items: center;
        }

        .ok-menu-logo-img {
            height: 55px;
            width: auto;
        }

        .ok-menu-title {
            font-size: 1.25rem;
            font-weight: var(--font-weight-semibold);
        }

        .ok-menu-close {
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-8);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background-color 0.2s ease;
        }

        .ok-menu-close:focus {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        .ok-menu-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .ok-menu-content {
            flex: 1;
            padding: var(--space-24);
            display: flex;
            flex-direction: column;
            gap: var(--space-24);
        }

        .ok-menu-section {
            display: flex;
            flex-direction: column;
            gap: var(--space-12);
        }

        .ok-menu-section-title {
            font-size: 0.875rem;
            font-weight: var(--font-weight-semibold);
            color: #64748B;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: var(--space-8);
            display: flex;
            align-items: center;
            gap: var(--space-8);
        }

        .ok-menu-section-title::before {
            content: '';
            display: block;
            width: 4px;
            height: 16px;
            background: var(--search-accent);
            border-radius: 2px;
        }

        .ok-menu-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-12);
        }

        .ok-menu-item {
            display: flex;
            align-items: center;
            gap: var(--space-12);
            background: white;
            border: none;
            padding: var(--space-16);
            border-radius: var(--radius-lg);
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: var(--font-weight-medium);
            color: var(--ok-navy);
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            text-align: left;
        }

        .ok-menu-item:focus {
            outline: 2px solid var(--search-accent);
            outline-offset: 2px;
        }

        .ok-menu-item:hover {
            background-color: #F8FAFC;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .ok-menu-item-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ok-menu-item-text {
            flex: 1;
        }

        .ok-menu-footer {
            padding: var(--space-24);
            border-top: 1px solid var(--ok-line);
            display: flex;
            flex-direction: column;
            gap: var(--space-16);
        }

        .ok-menu-footer-item {
            display: flex;
            align-items: center;
            gap: var(--space-12);
            background: none;
            border: none;
            padding: var(--space-12);
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: var(--font-weight-medium);
            color: var(--ok-navy);
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .ok-menu-footer-item:focus {
            outline: 2px solid var(--search-accent);
            outline-offset: 2px;
        }

        .ok-menu-footer-item:hover {
            background-color: #F8FAFC;
        }

        /* Enhanced Modern Search Bar - Single Line Layout */
        .ok-search {
            padding: var(--space-16) 0;
            position: relative;
        }

        .ok-search-container {
            background: var(--search-bg);
            border-radius: var(--search-radius);
            box-shadow: var(--search-shadow);
            border: 1px solid var(--search-border);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .ok-search-container:focus-within {
            border-color: var(--search-focus);
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
        }

        .ok-search-form {
            display: flex;
            align-items: stretch;
            height: 60px;
        }

        .ok-search-main {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 0 var(--space-16);
            border-right: 1px solid var(--search-border);
            transition: all 0.3s ease;
        }

        .ok-search-icon {
            padding: 0 var(--space-12) 0 0;
            color: #64748B;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            width: 32px;
            height: 32px;
        }

        .ok-search-icon svg {
            display: block;
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        .ok-search-input-container {
            flex: 1;
            position: relative;
        }

        .ok-search-input {
            width: 100%;
            border: none;
            background: none;
            padding: var(--space-12) 0;
            font-family: var(--font-family);
            font-size: 1rem;
            font-weight: var(--font-weight-medium);
            color: var(--ok-navy);
            outline: none;
        }

        .ok-search-input::placeholder {
            color: #94A3B8;
            font-weight: var(--font-weight-regular);
        }

        .ok-search-location {
            display: flex;
            align-items: center;
            padding: 0 var(--space-16);
            border-right: 1px solid var(--search-border);
            cursor: pointer;
            transition: background-color 0.2s ease;
            position: relative;
            min-width: 140px;
        }

        .ok-search-location:hover {
            background-color: #F8FAFC;
        }

        .ok-search-location {
            position: relative;
            z-index: 20;
        }

        .ok-location-icon {
            margin-right: var(--space-12);
            color: #64748B;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ok-location-select {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .ok-location-label {
            font-size: 0.75rem;
            color: #64748B;
            margin-bottom: var(--space-4);
        }

        .ok-location-value {
            font-size: 0.875rem;
            font-weight: var(--font-weight-medium);
            color: var(--ok-navy);
            display: flex;
            align-items: center;
            gap: var(--space-8);
        }

        .ok-location-chevron {
            color: #94A3B8;
            transition: transform 0.2s ease;
        }

        .ok-search-actions {
            display: flex;
        }

        .ok-filter-btn {
            background: none;
            border: none;
            padding: 0 var(--space-16);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #64748B;
            transition: all 0.2s ease;
            border-right: 1px solid var(--search-border);
        }

        .ok-filter-btn:hover {
            background-color: #F8FAFC;
            color: var(--search-accent);
        }

        .ok-search-btn {
            background: linear-gradient(135deg, var(--search-accent) 0%, #1D4ED8 100%);
            border: none;
            padding: 0 var(--space-24);
            color: white;
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: var(--font-weight-semibold);
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-8);
            min-width: 100px;
        }

        .ok-search-btn:hover {
            background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .ok-search-btn:active {
            transform: translateY(0);
        }

        /* Search Bar Mobile Responsive */
        @media (max-width: 767px) {
            .ok-search-form {
                height: 56px;
            }
            
            .ok-search-main {
                padding: 0 var(--space-12);
            }
            
            .ok-search-location {
                padding: 0 var(--space-12);
                min-width: 120px;
            }
            
            .ok-location-label {
                display: none;
            }
            
            .ok-location-value {
                font-size: 0.8rem;
            }
            
            .ok-filter-btn {
                padding: 0 var(--space-12);
                min-width: 50px;
            }
            
            .ok-search-btn {
                padding: 0 var(--space-16);
                min-width: 80px;
                font-size: 0.8rem;
            }
            
            .ok-search-btn span {
                display: none;
            }
            
            .ok-search-btn svg {
                margin: 0;
            }
            
            .ok-search-input {
                font-size: 16px;
            }
            
            .ok-search-container.active .ok-search-icon {
                display: none;
            }

            .ok-search-container.active .ok-search-location {
                width: 40px;
                min-width: 40px;
                padding: 0 8px;
                transition: all 0.3s ease;
            }

            .ok-search-container.active .ok-location-value span,
            .ok-search-container.active .ok-location-chevron {
                display: none;
            }

            .ok-search-container.active .ok-location-label {
                display: none;
            }
            
            .ok-search-container.active .ok-location-full {
                display: none;
            }
            
            .ok-search-container.active .ok-location-short {
                display: block;
            }
            
            .ok-location-short {
                display: none;
                font-weight: bold;
            }
        }

        @media (max-width: 480px) {
            .ok-search-location {
                min-width: 100px;
            }
            
            .ok-location-icon {
                margin-right: var(--space-8);
            }
            
            .ok-location-value span {
                font-size: 0.75rem;
            }
        }

        /* Location Dropdown */
        .ok-location-dropdown {
            position: absolute;
            top: calc(100% - 16px);
            width: 195px;
            background: white;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            box-shadow: var(--search-shadow);
            border: 1px solid var(--search-border);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
        }

        .ok-location-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .ok-location-option {
            padding: var(--space-16);
            cursor: pointer;
            transition: background-color 0.2s ease;
            display: flex;
            align-items: center;
            gap: var(--space-12);
        }

        .ok-location-option:hover {
            background-color: #F8FAFC;
        }

        .ok-location-option.active {
            background-color: #EFF6FF;
            color: var(--search-accent);
            font-weight: var(--font-weight-medium);
        }

        .ok-location-check {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid #E2E8F0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ok-location-option.active .ok-location-check {
            background: var(--search-accent);
            border-color: var(--search-accent);
        }

        .ok-location-option.active .ok-location-check::after {
            content: '';
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
        }

        /* Location Dropdown Responsive */
        @media only screen and (min-width: 1024px) {
            .ok-location-dropdown {
                right: 22%;
            }
        }

        @media (max-width: 1023px) {
            .ok-location-dropdown {
                right: 18.4%;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .ok-location-dropdown {
                right: 16.4%;
            }
        }

        @media (max-width: 767px) {
            .ok-location-dropdown {
                right: 14.7%;
            }
        }

        /* Filter Panel */
        .ok-filter-panel {
            position: absolute;
            top: calc(100% - 16px);
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            right: 13%;
            background: white;
            box-shadow: var(--search-shadow);
            border: 1px solid var(--search-border);
            z-index: 1000;
            padding: var(--space-20);
            width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
        }

        .ok-filter-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .ok-filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-16);
            padding-bottom: var(--space-12);
            border-bottom: 1px solid var(--search-border);
        }

        .ok-filter-title {
            font-size: 1rem;
            font-weight: var(--font-weight-semibold);
            color: var(--ok-navy);
        }

        .ok-filter-close {
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-4);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748B;
            transition: background-color 0.2s ease;
        }

        .ok-filter-close:hover {
            background-color: #F1F5F9;
        }

        .ok-filter-options {
            display: flex;
            flex-direction: column;
            gap: var(--space-16);
        }

        .ok-filter-group {
            display: flex;
            flex-direction: column;
            gap: var(--space-8);
        }

        .ok-filter-label {
            font-size: 0.875rem;
            font-weight: var(--font-weight-medium);
            color: var(--ok-navy);
        }

        .ok-filter-select {
            padding: var(--space-12);
            border: 1px solid var(--search-border);
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-size: 0.875rem;
            background: white;
            cursor: pointer;
            transition: border-color 0.2s ease;
        }

        .ok-filter-select:focus {
            outline: none;
            border-color: var(--search-accent);
        }

        .ok-filter-actions {
            display: flex;
            gap: var(--space-12);
            margin-top: var(--space-20);
        }

        .ok-filter-reset {
            flex: 1;
            background: none;
            border: 1px solid var(--search-border);
            padding: var(--space-12);
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: var(--font-weight-medium);
            color: #64748B;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .ok-filter-reset:hover {
            background-color: #F8FAFC;
            border-color: #CBD5E1;
        }

        .ok-filter-apply {
            flex: 1;
            background: var(--search-accent);
            border: none;
            padding: var(--space-12);
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: var(--font-weight-semibold);
            color: white;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .ok-filter-apply:hover {
            background: #2563EB;
        }

        /* Category Row Component */
        .ok-categories {
            padding: 10px 0 0 0;
        }

        .ok-section-title {
            font-size: 1.125rem;
            font-weight: var(--font-weight-semibold);
            color: var(--ok-navy);
            margin-bottom: var(--space-16);
            padding-left: var(--space-8);
        }

        .ok-categories-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: var(--space-12);
            padding: 0 var(--space-8);
        }

        .ok-category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-12);
            background: #f8f9fa;
            border: none;
            cursor: pointer;
            padding: 10px var(--space-12);
            border-radius: var(--radius-lg);
            transition: all 0.2s ease;
            text-decoration: none;
            text-align: center;
        }

        .ok-category-item:hover {
            background: #e9ecef;
            transform: translateY(-2px);
        }

        .ok-category-icon {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .ok-category-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ok-category-label {
            font-size: 0.85rem;
            font-weight: var(--font-weight-medium);
            color: var(--ok-navy);
            line-height: 1.2;
        }

        /* Category Row Responsive */
        @media (max-width: 767px) {
            .ok-categories-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .ok-category-item:nth-child(4) {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .ok-categories-grid {
                padding: 0;
                gap: 10px;
            }
        }

        /* Promo Banner Carousel Component */
        .ok-promo {
            position: relative;
            padding: var(--space-16) 0;
            border-radius: var(--radius-xl);
            overflow: hidden;
            height: 180px;
            margin-bottom: 10px;
        }

        .ok-promo-slide {
            position: absolute;
            left: 100%;
            width: 100%;
            height: 88%;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-subtle);
            transition: left 0.8s ease-in-out;
        }

        .ok-promo-slide.active {
            left: 0;
        }

        .ok-promo-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* Promo Carousel Responsive */
        @media (min-width: 768px) {
            .ok-promo {
                height: 270px;
            }
        }

        @media (min-width: 1024px) {
            .ok-promo {
                height: 270px;
                margin-bottom: 3px;
            }

            .ok-promo-slide {
                height: 255px !important;
            }

            .ok-promo-slide img {
                width: 100% !important;
                height: 100%;
                object-fit: cover;
            }
        }

        @media (max-width: 1023px) {
            .ok-promo-slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }

        /* Makola Market Section */
        .ok-makola-market {
            padding: var(--space-32) 0;
            grid-column: 1 / -1;
            background: linear-gradient(135deg, #FFF9F2 0%, #FFF5EB 100%);
            border-radius: var(--radius-xl);
            margin: var(--space-24) 0;
            margin-bottom: 7px;
            position: relative;
            overflow: hidden;
        }

        .ok-makola-market::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--ok-red) 0%, var(--search-accent) 50%, var(--ok-gold) 100%);
        }

        /* Madina Market Section */
        .ok-madina-market {
            padding: var(--space-32) 0;
            grid-column: 1 / -1;
            background: linear-gradient(135deg, #F7FBFF 0%, #D9EDFF 100%);
            border-radius: var(--radius-xl);
            margin: var(--space-24) 0;
            margin-bottom: 7px;
            position: relative;
            overflow: hidden;
        }

        .ok-madina-market::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--ok-red) 0%, var(--search-accent) 50%, var(--ok-gold) 100%);
        }

        .ok-makola-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: var(--space-24);
            gap: var(--space-16);
            padding: 0 var(--space-24);
        }

        .ok-makola-title-section {
            flex: 1;
        }

        .ok-makola-title {
            font-size: 1.75rem;
            font-weight: var(--font-weight-bold);
            color: var(--ok-navy);
            margin: 0 0 var(--space-8);
            line-height: 1.2;
        }

        .ok-location {
            color: var(--search-accent);
            font-weight: var(--font-weight-semibold);
        }

        .ok-makola-subtitle {
            color: #64748B;
            font-size: 13px;
            margin: 0;
            line-height: 1.5;
            max-width: 500px;
        }

        .ok-view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-8);
            color: white;
            background: linear-gradient(135deg, var(--search-accent) 0%, #1D4ED8 100%);
            text-decoration: none;
            font-weight: var(--font-weight-semibold);
            font-size: 0.9rem;
            padding: var(--space-12) var(--space-20);
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }

        .ok-view-all-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
            background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
        }

        /* COMPACT PRODUCT GRID - 4 columns on desktop, 2 on mobile */
        .ok-makola-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-16);
            padding: 0 var(--space-24);
        }

        /* COMPACT PRODUCT CARD - Matching first attachment style */
        .ok-product-card {
            background-color: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
            transition: all 0.2s ease;
            position: relative;
            border: 1px solid rgba(226, 232, 240, 0.8);
            cursor: pointer;
            display: block;
            text-decoration: none;
            color: inherit;
            padding: var(--space-8);
        }

        .ok-product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(10, 37, 64, 0.12);
            border-color: var(--search-border);
            text-decoration: none;
            color: inherit;
        }

        .ok-product-image {
            width: 100%;
            height: 0;
            padding-bottom: 70%;
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-md);
            margin-bottom: var(--space-12);
        }

        .ok-product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ok-product-badge {
            position: absolute;
            bottom: var(--space-8);
            right: var(--space-8);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: var(--space-4) var(--space-8);
            border-radius: 6px;
            font-size: 0.65rem;
            font-weight: var(--font-weight-medium);
            z-index: 2;
        }

        .ok-product-info {
            padding: 0;
        }

        .ok-product-name {
            font-size: 0.85rem;
            font-weight: var(--font-weight-semibold);
            color: var(--ok-navy);
            margin: 0 0 var(--space-4);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .ok-product-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-8);
        }

        .ok-product-price {
            font-size: 0.85rem;
            font-weight: var(--font-weight-bold);
            color: var(--ok-red);
        }

        .ok-delivery-info {
            display: flex;
            align-items: center;
            gap: var(--space-4);
            font-size: 0.7rem;
            color: #64748B;
        }

        .ok-delivery-icon {
            width: 12px;
            height: 12px;
        }

        .ok-add-to-cart-btn {
            width: 100%;
            background: var(--search-accent);
            border: none;
            padding: var(--space-8);
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-size: 0.75rem;
            font-weight: var(--font-weight-semibold);
            color: white;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-4);
        }

        .ok-add-to-cart-btn:hover {
            background: #2563EB;
        }

        /* Desktop layout - button stays on the right */
        @media (min-width: 768px) {
            .ok-makola-header {
                align-items: center;
            }
            
            .ok-makola-title {
                font-size: 2rem;
            }
        }

        /* Mobile optimizations - button moves under title */
        @media (max-width: 767px) {
            .ok-makola-header {
                flex-direction: column;
                align-items: flex-start;
                gap: var(--space-16);
            }
            
            .ok-view-all-btn {
                align-self: stretch;
                text-align: center;
                justify-content: center;
                margin-top: -7px;
                margin-bottom: -7px;
            }

            .ok-makola-title {
                font-size: 1.4rem;
            }
            
            .ok-makola-market {
                padding: var(--space-24) 0;
                margin: var(--space-16) 0;
            }
            
            .ok-makola-header,
            .ok-makola-grid {
                padding: 0 var(--space-16);
            }
            
            /* Show only 2 columns and 2 rows (4 items) on mobile */
            .ok-makola-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            /* Hide items beyond the first 4 on mobile */
            .ok-makola-grid .ok-product-card:nth-child(n+5) {
                display: none;
            }
        }

        /* Responsive Rules */
        @media (min-width: 768px) {
            .ok-main {
                padding-bottom: 20px;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for keyboard navigation */
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline-offset: 2px;
        }
        




        /* Top Orders Today Component */
        .ok-top-orders {
            padding: var(--space-16) 0;
        }

        .ok-top-orders-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-16);
        }

        /* Top Orders Responsive */
        @media (min-width: 768px) {
            .ok-top-orders-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .ok-top-orders-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Top Stores Today Component */
        .ok-top-stores {
            padding: var(--space-16) 0;
        }

        .ok-top-stores-scroll {
            display: flex;
            gap: var(--space-16);
            overflow-x: auto;
            padding-bottom: var(--space-8);
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-snap-type: x mandatory;
        }

        .ok-top-stores-scroll::-webkit-scrollbar {
            display: none;
        }

        .ok-store-tile {
            flex: 0 0 160px;
            background-color: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-subtle);
            scroll-snap-align: start;
            transition: transform 0.2s ease;
        }

        .ok-store-tile:focus-within {
            outline: 2px solid var(--ok-navy);
            outline-offset: 2px;
        }

        .ok-store-tile:hover {
            transform: translateY(-2px);
        }

        .ok-store-image {
            width: 100%;
            height: 96px;
            overflow: hidden;
        }

        .ok-store-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ok-store-name {
            padding: var(--space-12);
            font-size: 0.875rem;
            font-weight: var(--font-weight-semibold);
            color: var(--ok-navy);
            text-align: center;
        }

        /* Top Stores Responsive */
        @media (min-width: 768px) {
            .ok-store-tile {
                flex: 0 0 180px;
            }
            
            .ok-store-image {
                height: 108px;
            }
        }

        @media (min-width: 1024px) {
            .ok-top-stores-scroll {
                flex-direction: column;
                overflow-x: visible;
                gap: var(--space-16);
            }
            
            .ok-store-tile {
                flex: 1;
                display: flex;
                align-items: center;
                gap: var(--space-12);
                padding: var(--space-12);
            }
            
            .ok-store-image {
                width: 60px;
                height: 60px;
                border-radius: var(--radius-md);
                flex-shrink: 0;
            }
            
            .ok-store-name {
                padding: 0;
                text-align: left;
                flex: 1;
            }
        }

        /* Main Content */
        .ok-main {
            flex: 1;
            padding-bottom: 10px;
        }

        /* Main Content Responsive */
        @media (min-width: 768px) {
            .ok-main {
                padding-bottom: 20px;
            }
        }

        @media (min-width: 1024px) {
            .ok-main .ok-container {
                display: flex;
                flex-direction: column;
                max-width: 1000px;
            }
            
            .ok-content-stack {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: var(--space-24);
                margin-top: var(--space-24);
            }
            
            .ok-top-orders {
                grid-column: 1;
            }
            
            .ok-top-stores {
                grid-column: 2;
            }
        }


        /* Quick Actions Section */
        .ok-quick-actions {
            margin: var(--space-24) 0;
            margin-top: 35px;
        }

        .ok-quick-actions-header {
            text-align: center;
            margin-bottom: var(--space-32);
        }

        .ok-quick-actions-title {
            font-size: 1.75rem;
            font-weight: var(--font-weight-bold);
            color: var(--ok-navy);
            margin-bottom: var(--space-8);
            line-height: 1.2;
        }

        .ok-quick-actions-subtitle {
            color: #64748B;
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .ok-quick-actions-grid {
            display: grid;
            gap: var(--space-16);
        }

        /* Desktop Layout */
        @media (min-width: 768px) {
            .ok-quick-actions-grid {
                grid-template-columns: 1fr;
            }
            
            .ok-app-button {
                grid-column: 1 / -1;
            }
            
            .ok-other-buttons {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: var(--space-16);
            }
        }

        /* Mobile Layout */
        @media (max-width: 767px) {
            .ok-quick-actions-grid {
                grid-template-columns: 1fr;
            }
            
            .ok-quick-actions-title {
                font-size: 1.5rem;
            }
        }

        /* Quick Action Button Styles */
        .ok-quick-action-btn {
            display: flex;
            align-items: center;
            gap: var(--space-16);
            padding: var(--space-20);
            border-radius: var(--radius-lg);
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: var(--font-family);
            font-weight: var(--font-weight-semibold);
            font-size: 1rem;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .ok-quick-action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--ok-red) 0%, var(--search-accent) 50%, var(--ok-gold) 100%);
        }

        .ok-quick-action-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        /* App Button - Standout Style */
        .ok-app-button {
            background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
            color: white;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .ok-app-button:hover {
            background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
            box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
        }

        /* Other Buttons */
        .ok-other-buttons .ok-quick-action-btn {
            background: white;
            color: var(--ok-navy);
            box-shadow: var(--shadow-subtle);
            border: 1px solid var(--ok-line);
        }

        .ok-other-buttons .ok-quick-action-btn:hover {
            background: #F8FAFC;
            border-color: var(--search-border);
        }

        /* Button Icons */
        .ok-quick-action-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ok-app-button .ok-quick-action-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .ok-other-buttons .ok-quick-action-icon {
            background: #EFF6FF;
        }

        .ok-quick-action-content {
            flex: 1;
        }

        .ok-quick-action-title {
            font-size: 1.125rem;
            font-weight: var(--font-weight-semibold);
            margin-bottom: var(--space-4);
        }

        .ok-quick-action-desc {
            font-size: 0.875rem;
            opacity: 0.8;
            line-height: 1.4;
        }

        /* Arrow for app button */
        .ok-quick-action-arrow {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }



        /* Footer Credit */
        .ok-footer-credit {
            background: linear-gradient(135deg, var(--ok-navy) 0%, #1a365d 100%);
            padding: 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            position: relative;
            z-index: 10;
            margin-top: auto;
            margin-bottom: 75px;
        }

        .ok-footer-content {
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .ok-footer-text {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.875rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .ok-footer-copyright {
            color: rgba(255, 255, 255, 0.8);
            font-weight: var(--font-weight-regular);
        }

        .ok-footer-link {
            display: flex;
            align-items: center;
            gap: 4px;
            color: white;
            text-decoration: none;
            font-weight: var(--font-weight-semibold);
            transition: all 0.3s ease;
            padding: 6px 12px;
            margin-bottom: 5px;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .ok-footer-link:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .ok-footer-company {
            color: white;
        }

        .ok-footer-country {
            color: var(--ok-gold);
            font-size: 0.8em;
        }

        /* Mobile Responsive */
        @media (max-width: 767px) {
            .ok-footer-credit {
                padding: 20px 0;
                margin-bottom: 75px;
            }
            
            .ok-footer-text {
                gap: 8px;
            }
            
            .ok-footer-link {
                padding: 8px 16px;
            }
        }

        @media (max-width: 480px) {
            .ok-footer-text {
                flex-direction: column;
                gap: 6px;
            }
        }


        /* Bottom Navigation Component */
        .ok-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 1px solid var(--ok-line);
            padding: var(--space-8) 0;
            z-index: 100;
            padding-bottom: max(var(--space-8), env(safe-area-inset-bottom));
        }

        .ok-bottom-nav .ok-container {
            display: flex;
            justify-content: space-around;
        }

        .ok-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-4);
            text-decoration: none;
            padding: var(--space-8);
            border-radius: var(--radius-md);
            min-width: 56px;
            transition: background-color 0.2s ease;
        }

        .ok-nav-item:focus {
            outline: 2px solid var(--ok-navy);
            outline-offset: 2px;
        }

        .ok-nav-item:hover {
            background-color: var(--ok-line);
        }

        .ok-nav-item.active {
            color: var(--ok-red);
        }

        .ok-nav-item.active span {
            color: var(--ok-red);
        }

        .ok-nav-item span {
            font-size: 0.75rem;
            color: var(--ok-navy);
            font-weight: var(--font-weight-regular);
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for keyboard navigation */
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline-offset: 2px;
        }