    /* 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-4: 4px;
        --space-8: 8px;
        --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);
    }

    /* 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;
    }

    /* Image Banner */
    .ok-image-banner {
        width: 100%;
        height: 150px;
        overflow: hidden;
        position: relative;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .ok-image-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .ok-image-banner.hidden {
        opacity: 0;
        transform: translateY(-10px);
        height: 0;
        pointer-events: none;
    }

    /* 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 Styles */
    .ok-header {
        background: linear-gradient(135deg, rgb(255, 249, 242) 0%, rgb(255, 245, 235) 100%);
        border-bottom: 1px solid var(--ok-line);
        padding: var(--space-16) 0;
    }

    .ok-header-content {
        display: flex;
        align-items: center;
        gap: var(--space-12);
    }

    .ok-favicon {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .ok-makola-title-section {
        flex: 1;
    }

    .ok-makola-title {
        font-size: 1.5rem;
        font-weight: var(--font-weight-bold);
        color: var(--ok-navy);
        margin: 0 0 var(--space-4);
        line-height: 1.2;
    }

    .ok-location {
        color: var(--search-accent);
        font-weight: var(--font-weight-semibold);
    }

    .ok-makola-subtitle {
        color: #64748B;
        font-size: 0.8rem;
        margin: 0;
        line-height: 1.4;
    }

    .ok-cart-btn {
        display: none;
    }

    /* Search Section */
    .ok-search-section {
        padding: 8px 0 8px 0;
        background: white;
        position: sticky;
        top: 0;
        z-index: 99;
        transition: top 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--ok-line);
    }

    .ok-search-bar {
        position: relative;
        margin-bottom: 7px;
    }

    .ok-search-input {
        width: 100%;
        padding: var(--space-12) var(--space-16);
        padding-right: 50px;
        border: 2px solid var(--search-border);
        border-radius: var(--radius-xl);
        background-color: var(--search-bg);
        font-family: var(--font-family);
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .ok-search-input:focus {
        outline: none;
        border-color: var(--search-accent);
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 8px 20px rgba(59, 130, 246, 0.2);
        transform: translateY(-2px);
        background-color: #FFFFFF;
    }

    .ok-search-input:hover {
        border-color: var(--search-focus);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .ok-search-icon {
        position: absolute;
        right: var(--space-16);
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        background: none;
        border: none;
        transition: color 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }

    .ok-clear-search {
        position: absolute;
        right: var(--space-16);
        top: 50%;
        transform: translateY(-50%);
        color: #64748B;
        cursor: pointer;
        background: none;
        border: none;
        font-size: 1rem;
        transition: color 0.2s ease;
    }

    .ok-search-icon:hover, .ok-clear-search:hover {
        color: var(--search-accent);
    }

    .ok-clear-search {
        display: none;
    }

    /* Category Dropdowns */
    .ok-category-filters {
        display: flex;
        gap: var(--space-12);
    }

    .ok-category-select {
        flex: 1;
        padding: 7px 12px;
        border: 1px solid var(--search-border);
        border-radius: var(--radius-md);
        background-color: var(--search-bg);
        font-family: var(--font-family);
        font-size: 0.85rem;
        cursor: pointer;
        color: var(--ok-ink);
        transition: all 0.2s ease;
        width: 50%;
    }

    .ok-category-select:focus {
        outline: none;
        border-color: var(--search-focus);
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    }

    /* List Item Button */
    .ok-list-item-btn {
        flex: 1;
        padding: 10px 14px;
        background: linear-gradient(135deg, #8B5CF6, #7C3AED);
        color: white;
        border: none;
        border-radius: 10px;
        font-family: var(--font-family);
        font-size: 0.82rem;
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
    }

    .ok-list-item-btn:hover {
        background: linear-gradient(135deg, #7C3AED, #6D28D9);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
    }

    /* Main Content */
    .ok-main {
        flex: 1;
        padding-bottom: 100px;
    }

    /* COMPACT PRODUCT GRID */
    .ok-products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-16);
        margin-top: 15px;
    }

    /* COMPACT PRODUCT CARD */
    .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-12);
    }

    .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;
        transition: opacity 0.3s ease;
    }

    .ok-product-image img[loading="lazy"] {
        opacity: 0;
    }

    .ok-product-image img.loaded {
        opacity: 1;
    }

    .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-8);
        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);
    }

    /* Centered quantity selector */
    .ok-quantity-selector {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--search-border);
        border-radius: var(--radius-sm);
        overflow: hidden;
        margin-bottom: var(--space-8);
        max-width: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    .ok-quantity-btn {
        background: none;
        border: none;
        padding: var(--space-4) var(--space-8);
        font-size: 0.8rem;
        cursor: pointer;
        color: var(--ok-ink);
        transition: background-color 0.2s ease;
    }

    .ok-quantity-btn:hover {
        background-color: var(--ok-bg);
    }

    .ok-quantity-input {
        width: 30px;
        text-align: center;
        border: none;
        padding: var(--space-4) 0;
        font-size: 0.8rem;
        background: white;
    }

    .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;
    }

    /* Loading Indicator Styles */
    .ok-loading-indicator {
        grid-column: 1 / -1;
        text-align: center;
        padding: var(--space-32);
        color: #64748B;
    }

    .ok-loading-spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid var(--search-accent);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto var(--space-16);
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Bottom Navigation */
    .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 {
        cursor: pointer;
        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);
    }

    .ok-nav-item.active svg path {
        stroke: var(--ok-red);
    }

    .ok-nav-item svg {
        transition: all 0.2s ease;
    }

    /* Shopping Basket */
    .ok-shopping-basket {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100%;
        background-color: white;
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: var(--space-16);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .ok-shopping-basket.active {
        right: 0;
    }

    .ok-basket-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-20);
        padding-bottom: var(--space-12);
        border-bottom: 1px solid var(--ok-line);
    }

    .ok-basket-title {
        font-size: 1.1rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
    }

    .ok-basket-close {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: var(--ok-ink);
    }

    .ok-basket-items {
        margin-bottom: var(--space-20);
    }

    .ok-basket-item {
        display: flex;
        padding: var(--space-12) 0;
        border-bottom: 1px solid var(--ok-line);
        position: relative;
    }

    .ok-basket-item-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-right: var(--space-12);
    }

    .ok-basket-item-details {
        flex: 1;
    }

    .ok-basket-item-name {
        font-weight: var(--font-weight-semibold);
        margin-bottom: var(--space-4);
        font-size: 0.9rem;
    }

    .ok-basket-item-price {
        color: var(--ok-red);
        font-weight: var(--font-weight-semibold);
        font-size: 0.9rem;
    }

    .ok-basket-item-quantity {
        display: flex;
        align-items: center;
        margin-top: var(--space-8);
    }

    .ok-basket-quantity-btn {
        background: none;
        border: 1px solid var(--search-border);
        width: 24px;
        height: 24px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 0.8rem;
    }

    .ok-basket-quantity-input {
        width: 30px;
        text-align: center;
        border: none;
        margin: 0 var(--space-8);
        font-size: 0.9rem;
    }

    /* Custom Item Styles in Basket */
    .ok-basket-item-custom-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #8B5CF6, #7C3AED);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: var(--space-12);
        color: white;
        font-size: 1.2rem;
    }

    .ok-basket-item-custom-info {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        margin-bottom: var(--space-8);
    }

    .ok-custom-status {
        background: #fef3c7;
        color: #92400e;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: var(--font-weight-medium);
        display: inline-block;
    }

    .ok-custom-quantity {
        color: #64748b;
        font-size: 0.8rem;
    }

    .ok-custom-brand, .ok-custom-details {
        color: #64748b;
        font-size: 0.8rem;
        margin-bottom: var(--space-4);
    }

    .ok-edit-item-badge {
        background: var(--search-accent);
        color: white;
        border: none;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: var(--font-weight-medium);
        cursor: pointer;
        margin-top: 4px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: all 0.2s ease;
    }

    .ok-edit-item-badge:hover {
        background: #2563EB;
    }

    .ok-remove-custom-item {
        position: absolute;
        top: var(--space-12);
        right: 0;
        background: none;
        border: none;
        color: #64748b;
        cursor: pointer;
        font-size: 0.9rem;
        transition: color 0.2s ease;
    }

    .ok-remove-custom-item:hover {
        color: var(--ok-red);
    }

    /* Enhanced Basket List Item Button */
    .ok-basket-list-item {
        width: 100%;
        padding: 12px 16px;
        background: linear-gradient(135deg, #8B5CF6, #7C3AED);
        color: white;
        border: none;
        border-radius: 10px;
        font-family: var(--font-family);
        font-size: 0.8rem;
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        margin-top: 12px;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
    }

    .ok-basket-list-item:hover {
        background: linear-gradient(135deg, #7C3AED, #6D28D9);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
    }

    .ok-basket-total {
        padding: var(--space-16) 0;
        border-top: 1px solid var(--ok-line);
        font-weight: var(--font-weight-semibold);
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
    }

    .ok-checkout-btn {
        width: 100%;
        background-color: var(--search-accent);
        color: white;
        border: none;
        padding: var(--space-12);
        border-radius: var(--radius-md);
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        margin-top: var(--space-12);
        font-family: var(--font-family);
    }

    /* Purchase History */
    .ok-purchase-history {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100%;
        background-color: white;
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: var(--space-16);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .ok-purchase-history.active {
        right: 0;
    }

    .ok-history-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-20);
        padding-bottom: var(--space-12);
        border-bottom: 1px solid var(--ok-line);
    }

    .ok-history-title {
        font-size: 1.1rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
    }

    .ok-history-close {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: var(--ok-ink);
    }

    .ok-history-items {
        margin-bottom: var(--space-20);
    }

    .ok-history-item {
        display: flex;
        padding: var(--space-12) 0;
        border-bottom: 1px solid var(--ok-line);
        cursor: pointer;
        transition: all 0.2s ease;
        border-radius: 8px;
        padding: 12px;
    }

    .ok-history-item:hover {
        background-color: #f8fafc;
    }

    .ok-history-item-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-right: var(--space-12);
    }

    .ok-history-item-details {
        flex: 1;
    }

    .ok-history-item-name {
        font-weight: var(--font-weight-semibold);
        margin-bottom: var(--space-4);
        font-size: 0.9rem;
    }

    .ok-history-item-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 8px 0;
    }

    .ok-history-item-price {
        color: var(--ok-red);
        font-weight: var(--font-weight-semibold);
        font-size: 0.9rem;
    }

    .ok-history-item-frequency {
        font-size: 0.75rem;
        color: #64748b;
        background: #f1f5f9;
        padding: 2px 6px;
        border-radius: 4px;
    }

    .ok-history-add-btn {
        background: var(--search-accent);
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: var(--font-weight-medium);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
        transition: all 0.2s ease;
        width: 100%;
        justify-content: center;
    }

    .ok-history-add-btn:hover {
        background: #2563EB;
        transform: translateY(-1px);
    }

    .ok-empty-state {
        text-align: center;
        padding: var(--space-32) var(--space-20);
        color: #64748B;
    }

    .ok-empty-state-icon {
        font-size: 2.5rem;
        margin-bottom: var(--space-16);
    }

    /* Product Detail */
    .ok-product-detail {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        z-index: 1002;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .ok-product-detail.active {
        transform: translateY(0);
    }

    .ok-detail-header {
        position: sticky;
        top: 0;
        background-color: white;
        padding: var(--space-12) var(--space-16);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--ok-line);
        z-index: 10;
    }

    .ok-detail-close {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: var(--ok-ink);
    }

    .ok-detail-image-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--ok-bg);
        padding: var(--space-20);
    }

    .ok-detail-image {
        max-width: 100%;
        max-height: 400px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .ok-detail-content {
        padding: var(--space-16);
    }

    .ok-detail-category {
        font-size: 0.8rem;
        color: #64748B;
        text-transform: uppercase;
        margin-bottom: var(--space-8);
    }

    .ok-detail-name {
        font-size: 1.3rem;
        font-weight: var(--font-weight-bold);
        margin-bottom: var(--space-8);
        color: var(--ok-navy);
    }

    .ok-detail-price {
        font-size: 1.5rem;
        font-weight: var(--font-weight-bold);
        color: var(--ok-red);
        margin-bottom: var(--space-16);
    }

    .ok-detail-description {
        margin-bottom: var(--space-24);
        line-height: 1.6;
        color: var(--ok-ink);
    }

    .ok-detail-options {
        margin-bottom: var(--space-24);
    }

    .ok-option-title {
        font-weight: var(--font-weight-semibold);
        margin-bottom: var(--space-8);
        color: var(--ok-navy);
    }

    .ok-option-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-8);
        margin-bottom: var(--space-16);
    }

    .ok-option-btn {
        padding: var(--space-8) var(--space-16);
        border: 1px solid var(--search-border);
        background: none;
        border-radius: var(--radius-md);
        cursor: pointer;
        font-family: var(--font-family);
        font-size: 0.85rem;
        transition: all 0.2s ease;
    }

    .ok-option-btn.active {
        background-color: var(--search-accent);
        color: white;
        border-color: var(--search-accent);
    }

    /* Related products link */
    .ok-related-products-link {
        display: inline-block;
        margin-top: var(--space-16);
        color: var(--search-accent);
        text-decoration: none;
        font-weight: var(--font-weight-medium);
        transition: color 0.2s ease;
    }

    .ok-related-products-link:hover {
        color: #2563EB;
        text-decoration: underline;
    }

    .ok-detail-actions {
        position: sticky;
        bottom: 0;
        background-color: white;
        padding: var(--space-16);
        border-top: 1px solid var(--ok-line);
        display: flex;
        gap: var(--space-12);
    }

    .ok-detail-quantity-selector {
        display: flex;
        align-items: center;
        border: 1px solid var(--search-border);
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .ok-detail-quantity-btn {
        background: none;
        border: none;
        padding: var(--space-12) var(--space-16);
        font-size: 1rem;
        cursor: pointer;
        color: var(--ok-ink);
    }

    .ok-detail-quantity-input {
        width: 40px;
        text-align: center;
        border: none;
        padding: var(--space-12) 0;
        font-size: 1rem;
    }

    .ok-buy-now {
        flex: 1;
        background-color: var(--search-accent);
        color: white;
        border: none;
        padding: var(--space-12) var(--space-24);
        border-radius: var(--radius-md);
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        font-family: var(--font-family);
    }

    /* Overlay */
    .ok-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .ok-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    /* Simple List Modal */
    .ok-simple-list-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        z-index: 1001;
        transition: transform 0.3s ease;
        overflow-y: auto;
        padding: 20px;
        box-shadow: none;
        transform: translateX(100%);
        display: none;
    }

    .ok-simple-list-modal.active {
        transform: translateX(0);
        display: block;
    }

    .ok-simple-list-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid #f1f5f9;
    }

    .ok-simple-list-header h2 {
        font-size: 1.3rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ok-simple-list-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--ok-ink);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease;
    }

    .ok-simple-list-close:hover {
        background-color: #f8fafc;
    }

    /* Simple List Content */
    .ok-simple-list-notice {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border: 2px solid #7DD3FC;
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 20px;
        text-align: center;
    }

    .ok-simple-list-notice i {
        color: #0369A1;
        font-size: 1.2rem;
        margin-bottom: 8px;
        display: block;
    }

    .ok-simple-list-notice p {
        color: #0369A1;
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Todo List Style */
    .ok-todo-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .ok-todo-input-container {
        display: flex;
        gap: 8px;
        position: relative;
        flex-wrap: wrap;
    }

    .ok-todo-input {
        flex: 1;
        padding: 12px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-family: var(--font-family);
        font-size: 0.9rem;
        transition: all 0.3s ease;
        background: white;
        min-width: 150px;
    }

    .ok-todo-input:focus {
        border-color: var(--search-accent);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }

    .ok-todo-suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 10;
        max-height: 200px;
        overflow-y: auto;
        display: none;
    }

    .ok-todo-suggestion {
        padding: 10px 16px;
        cursor: pointer;
        border-bottom: 1px solid #f1f5f9;
        transition: background-color 0.2s ease;
    }

    .ok-todo-suggestion:hover {
        background-color: #f8fafc;
    }

    .ok-todo-suggestion:last-child {
        border-bottom: none;
    }

    .ok-todo-suggestion.product {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .ok-todo-suggestion-price {
        color: var(--ok-red);
        font-weight: var(--font-weight-semibold);
        font-size: 0.8rem;
    }

    .ok-add-todo-btn {
        padding: 12px 20px;
        background: var(--search-accent);
        color: white;
        border: none;
        border-radius: 10px;
        font-family: var(--font-family);
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .ok-add-todo-btn:hover {
        background: #2563EB;
    }

    .ok-todo-items {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .ok-todo-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        background: #f8fafc;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
    }

    .ok-todo-item-content {
        flex: 1;
        font-size: 0.9rem;
    }

    .ok-todo-item-actions {
        display: flex;
        gap: 8px;
    }

    .ok-todo-edit-btn {
        background: var(--search-accent);
        color: white;
        border: none;
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 0.7rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
        transition: all 0.2s ease;
    }

    .ok-todo-edit-btn:hover {
        background: #2563EB;
    }

    .ok-todo-remove-btn {
        background: #ef4444;
        color: white;
        border: none;
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 0.7rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
        transition: all 0.2s ease;
    }

    .ok-todo-remove-btn:hover {
        background: #dc2626;
    }

    /* Edit Item Modal */
    .ok-edit-item-modal {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100%;
        background-color: white;
        z-index: 1002;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .ok-edit-item-modal.active {
        right: 0;
    }

    .ok-edit-item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid #f1f5f9;
    }

    .ok-edit-item-header h2 {
        font-size: 1.2rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
    }

    .ok-edit-item-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--ok-ink);
    }

    .ok-edit-item-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .ok-edit-item-actions {
        display: flex;
        gap: 12px;
        margin-top: 24px;
    }

    .ok-confirm-item-btn {
        flex: 2;
        padding: 12px 16px;
        background: linear-gradient(135deg, #10B981, #059669);
        color: white;
        border: none;
        border-radius: 10px;
        font-family: var(--font-family);
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .ok-confirm-item-btn:hover {
        background: linear-gradient(135deg, #059669, #047857);
    }

    .ok-cancel-edit-btn {
        flex: 1;
        padding: 12px 16px;
        background: #f8fafc;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        color: var(--ok-ink);
        font-family: var(--font-family);
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .ok-cancel-edit-btn:hover {
        background: #f1f5f9;
    }

    /* Delivery Location Side Modal Styles */
    .ok-delivery-location {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100%;
        background-color: white;
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: var(--space-16);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .ok-delivery-location.active {
        right: 0;
    }

    .ok-delivery-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-20);
        padding-bottom: var(--space-12);
        border-bottom: 1px solid var(--ok-line);
    }

    .ok-delivery-title {
        font-size: 1.1rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        display: flex;
        align-items: center;
    }

    .ok-delivery-close {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: var(--ok-ink);
    }

    .ok-delivery-content {
        height: calc(100% - 80px);
        display: flex;
        flex-direction: column;
    }

    .ok-location-prompt {
        text-align: center;
        margin-bottom: 30px;
        padding: 25px;
        background: linear-gradient(135deg, #f8f9fa, #f1f3f4);
        border-radius: 12px;
        border: 2px dashed #dee2e6;
        flex-shrink: 0;
    }

    .ok-location-prompt h3 {
        color: #333;
        font-size: 1.3rem;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .ok-location-prompt p {
        color: #666;
        font-size: 1rem;
        line-height: 1.5;
    }

    .ok-location-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
        flex-shrink: 0;
    }

    .ok-set-location-btn {
        padding: 16px 24px;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        background: linear-gradient(135deg, #E31B23, #c81018);
        color: white;
        box-shadow: 0 4px 15px rgba(227, 27, 35, 0.3);
        width: 100%;
    }

    .ok-set-location-btn:hover {
        background: linear-gradient(135deg, #c81018, #a80d14);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(227, 27, 35, 0.4);
    }

    .ok-set-location-btn:active {
        transform: translateY(0);
    }

    .ok-delivery-notice {
        background: linear-gradient(135deg, #fff9e6, #fff3cd);
        border: 2px solid #ffc107;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        margin-top: 10px;
        flex-shrink: 0;
    }

    .ok-delivery-notice h4 {
        color: #856404;
        margin-bottom: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .ok-delivery-notice p {
        color: #856404;
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Map Modal Styles */
    .map-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 10000;
        overflow: hidden;
    }

    .map-modal.active {
        display: block;
    }

    .map-modal-content {
        position: relative;
        width: 100%;
        height: 100%;
        background: white;
        overflow: hidden;
    }

    .map-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0,0,0,0.7);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10001;
        font-size: 1.2rem;
    }

    .map-modal-close:hover {
        background: rgba(0,0,0,0.9);
        transform: scale(1.1);
    }

    .map-modal-iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Order Form Styles */
    .ok-order-form {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100%;
        background-color: white;
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: var(--space-16);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        background: #ffffff;
    }

    .ok-order-form.active {
        right: 0;
    }

    .ok-order-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-20);
        padding-bottom: var(--space-16);
        border-bottom: 2px solid #f1f5f9;
    }

    .ok-order-title {
        font-size: 1.25rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        display: flex;
        align-items: center;
        gap: var(--space-12);
    }

    .ok-order-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--ok-ink);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease;
    }

    .ok-order-close:hover {
        background-color: #f8fafc;
    }

    /* Progress Steps */
    .ok-order-progress {
        margin-bottom: var(--space-32);
        padding: var(--space-16);
        background: #f8fafc;
        border-radius: 12px;
    }

    .ok-progress-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .ok-progress-steps::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: #e2e8f0;
        z-index: 1;
    }

    .ok-progress-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-8);
        flex: 1;
        position: relative;
        z-index: 2;
    }

    .ok-step-number {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #e2e8f0;
        color: #64748b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: var(--font-weight-semibold);
        border: 3px solid white;
        transition: all 0.3s ease;
    }

    .ok-progress-step.active .ok-step-number {
        background: var(--search-accent);
        color: white;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }

    .ok-progress-step.completed .ok-step-number {
        background: #10b981;
        color: white;
    }

    .ok-step-text {
        font-size: 0.8rem;
        color: #64748b;
        font-weight: var(--font-weight-medium);
        text-align: center;
    }

    .ok-progress-step.active .ok-step-text {
        color: var(--search-accent);
        font-weight: var(--font-weight-semibold);
    }

    .ok-progress-step.completed .ok-step-text {
        color: #10b981;
    }

    /* Order Sections */
    .ok-order-section {
        margin-bottom: var(--space-24);
        padding: var(--space-24);
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid #f1f5f9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
    }

    .ok-order-section:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .ok-section-title {
        font-size: 1.1rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        margin-bottom: var(--space-20);
        display: flex;
        align-items: center;
        gap: var(--space-12);
    }

    /* Delivery Summary */
    .ok-delivery-summary {
        display: flex;
        flex-direction: column;
        gap: var(--space-20);
    }

    .ok-delivery-address {
        background: #f8fafc;
        padding: var(--space-20);
        border-radius: 12px;
        border: 1px solid #e2e8f0;
    }

    .ok-delivery-address strong {
        color: var(--ok-navy);
        display: block;
        margin-bottom: var(--space-8);
    }

    .ok-delivery-address p {
        color: #64748b;
        margin: 0;
        line-height: 1.5;
    }

    .ok-change-location-btn {
        background: white;
        border: 2px solid var(--search-accent);
        color: var(--search-accent);
        padding: var(--space-16) var(--space-16);
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: var(--font-weight-medium);
        cursor: pointer;
        margin-top: var(--space-12);
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: var(--space-8);
    }

    .ok-change-location-btn:hover {
        background: var(--search-accent);
        color: white;
        transform: translateY(-1px);
    }

    /* Form Elements */
    .ok-form-group {
        margin-bottom: var(--space-20);
    }

    .ok-form-group label {
        display: block;
        margin-bottom: var(--space-8);
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        font-size: 0.9rem;
    }

    .ok-form-group input,
    .ok-form-group textarea,
    .ok-form-group select {
        width: 100%;
        padding: var(--space-14) var(--space-16);
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-family: var(--font-family);
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #ffffff;
        color: var(--ok-ink);
    }

    .ok-form-group input:focus,
    .ok-form-group textarea:focus,
    .ok-form-group select:focus {
        border-color: var(--search-accent);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
        transform: translateY(-1px);
    }

    .ok-form-group input::placeholder,
    .ok-form-group textarea::placeholder {
        color: #94a3b8;
    }

    .ok-form-group small {
        display: block;
        margin-top: var(--space-4);
        color: #64748b;
        font-size: 0.8rem;
    }

    .ok-form-row {
        display: flex;
        gap: var(--space-16);
    }

    .ok-form-row .ok-form-group {
        flex: 1;
    }

    /* Enhanced Delivery Time Dropdown Styles */
    .ok-delivery-time-dropdown {
        position: relative;
        width: 100%;
    }

    .ok-delivery-time-select {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        background-color: white;
        font-family: var(--font-family);
        font-size: 1rem;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 12px center;
        background-repeat: no-repeat;
        background-size: 16px;
        padding-right: 40px;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    /* Attention-grabbing animation */
    .ok-delivery-time-select.attention-needed {
        animation: pulseAttention 2s ease-in-out infinite;
        border: 2px solid transparent;
        background-clip: padding-box;
    }

    /* Animated gradient border */
    @keyframes pulseAttention {
        0% {
            box-shadow: 
                0 0 0 2px #3B82F6,
                0 0 0 4px rgba(59, 130, 246, 0.3),
                0 0 20px rgba(59, 130, 246, 0.1);
        }
        25% {
            box-shadow: 
                0 0 0 2px #E53935,
                0 0 0 4px rgba(229, 57, 53, 0.3),
                0 0 20px rgba(229, 57, 53, 0.1);
        }
        50% {
            box-shadow: 
                0 0 0 2px #FFD700,
                0 0 0 4px rgba(255, 215, 0, 0.3),
                0 0 20px rgba(255, 215, 0, 0.1);
        }
        75% {
            box-shadow: 
                0 0 0 2px #10B981,
                0 0 0 4px rgba(16, 185, 129, 0.3),
                0 0 20px rgba(16, 185, 129, 0.1);
        }
        100% {
            box-shadow: 
                0 0 0 2px #3B82F6,
                0 0 0 4px rgba(59, 130, 246, 0.3),
                0 0 20px rgba(59, 130, 246, 0.1);
        }
    }

    /* Focus state overrides animation */
    .ok-delivery-time-select:focus {
        animation: none;
        border-color: var(--search-accent);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }

    /* Remove animation when selected (has value) */
    .ok-delivery-time-select.has-selection {
        animation: none;
        border-color: #e2e8f0;
        box-shadow: none;
    }

    /* Enhanced dropdown arrow for attention */
    .ok-delivery-time-select.attention-needed {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23E53935' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    }

    /* Custom dropdown option styling */
    .ok-delivery-time-select option {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .ok-delivery-time-select option[data-is-express="true"] {
        font-weight: var(--font-weight-semibold);
        color: var(--ok-red);
    }

    .ok-delivery-time-select option[data-is-default="true"] {
        background-color: #f0f9ff;
    }
    
    /* Custom Dropdown Styles with Animation */
    .ok-custom-select {
        position: relative;
        width: 100%;
        cursor: pointer;
    }

    .ok-select-selected {
        padding: 12px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        background-color: white;
        font-family: var(--font-family);
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }

    /* Attention-grabbing animation */
    .ok-select-selected.attention-needed {
        animation: pulseBorder 2s ease-in-out infinite;
        border: 2px solid #E53935 !important;
        box-shadow: 0 0 10px rgba(229, 57, 53, 0.5) !important;
        background: linear-gradient(135deg, #fff5f5, #fed7d7) !important;
    }

    /* Animated gradient border */
    @keyframes pulseBorder {
        0% {
            border-color: #E53935;
            box-shadow: 0 0 10px rgba(229, 57, 53, 0.5);
        }
        50% {
            border-color: #3B82F6;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
        }
        100% {
            border-color: #E53935;
            box-shadow: 0 0 10px rgba(229, 57, 53, 0.5);
        }
    }

    .ok-select-selected:hover {
        border-color: var(--search-accent);
    }

    .ok-select-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .ok-select-options.open {
        max-height: 300px;
        opacity: 1;
        overflow-y: auto;
    }

    .ok-select-option {
        padding: 12px 16px;
        border-bottom: 1px solid #f1f5f9;
        transition: background-color 0.2s ease;
        font-size: 0.9rem;
    }

    .ok-select-option:hover {
        background-color: #f8fafc;
    }

    .ok-select-option:last-child {
        border-bottom: none;
    }

    .ok-select-option.express {
        font-weight: var(--font-weight-semibold);
        color: var(--ok-red);
        background-color: #fef2f2;
    }

    .ok-select-option.default {
        background-color: #f0f9ff;
    }

    .ok-select-arrow {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
        color: #64748b;
    }

    .ok-custom-select.open .ok-select-arrow {
        transform: rotate(180deg);
    }

    /* Remove animation when selected */
    .ok-select-selected.has-selection {
        animation: none !important;
        border-color: #10B981 !important;
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.3) !important;
        background: white !important;
    }

    .ok-select-selected.has-selection .ok-select-text {
        color: var(--ok-ink);
    }

    /* Express delivery badge */
    .express-badge {
        background: linear-gradient(135deg, #E53935, #c62828);
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: var(--font-weight-semibold);
        margin-left: 8px;
    }

    /* Tip Section */
    .ok-tip-section {
        background: linear-gradient(135deg, #fff9f5, #fff0e6);
        border: 1px solid #ffedd5;
        border-left: 4px solid #ea580c;
    }

    .ok-tip-header {
        display: flex;
        align-items: center;
        gap: var(--space-8);
        margin-bottom: var(--space-12);
    }

    .ok-tip-title {
        font-size: 1rem;
        font-weight: var(--font-weight-semibold);
        color: #ea580c;
        margin: 0;
    }

    .ok-tip-subtitle {
        color: #64748b;
        font-size: 0.9rem;
        margin-bottom: var(--space-16);
        line-height: 1.4;
    }

    .ok-tip-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-12);
        margin: var(--space-16) 0;
    }

    .ok-tip-option {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        padding: var(--space-16) var(--space-12);
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-ink);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }

    .ok-tip-option:hover {
        border-color: var(--search-accent);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .ok-tip-option.selected {
        background: var(--search-accent);
        color: white;
        border-color: var(--search-accent);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .ok-tip-amount {
        font-size: 1.1rem;
        font-weight: var(--font-weight-bold);
    }

    .ok-tip-label {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .ok-tip-custom {
        margin-top: var(--space-16);
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .ok-tip-custom-input {
        width: 100%;
        padding: var(--space-16) var(--space-16);
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-size: 1rem;
        text-align: center;
        font-weight: var(--font-weight-semibold);
        transition: all 0.3s ease;
    }

    .ok-tip-custom-input:focus {
        border-color: var(--search-accent);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }

    /* Order Summary */
    .ok-order-items {
        margin-bottom: var(--space-20);
    }

    .ok-order-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-16) 0;
        border-bottom: 1px solid #f1f5f9;
        transition: background-color 0.2s ease;
    }

    .ok-order-item:hover {
        background-color: #f8fafc;
        margin: 0 -16px;
        padding: var(--space-16);
        border-radius: 8px;
    }

    .ok-order-item:last-child {
        border-bottom: none;
    }

    .ok-item-details {
        flex: 1;
    }

    .ok-item-name {
        font-weight: var(--font-weight-medium);
        margin-bottom: var(--space-4);
        color: var(--ok-navy);
    }

    .ok-item-quantity {
        font-size: 0.85rem;
        color: #64748b;
    }

    .ok-item-price {
        color: var(--ok-red);
        font-weight: var(--font-weight-semibold);
        font-size: 1rem;
    }

    .ok-order-totals {
        border-top: 2px solid #e2e8f0;
        padding-top: var(--space-20);
    }

    .ok-total-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: var(--space-12);
        padding: var(--space-8) 0;
    }

    .ok-total-row:not(.ok-total-final) {
        color: #64748b;
    }

    .ok-total-final {
        font-size: 1.2rem;
        border-top: 1px solid #e2e8f0;
        padding-top: var(--space-16);
        margin-top: var(--space-8);
        color: var(--ok-navy);
        font-weight: var(--font-weight-bold);
    }

    /* Payment Methods */
    .ok-payment-option {
        margin-bottom: var(--space-12);
    }

    .ok-payment-option input[type="radio"] {
        display: none;
    }

    .ok-payment-option label {
        display: flex;
        align-items: center;
        gap: var(--space-16);
        padding: var(--space-20);
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: white;
    }

    .ok-payment-option label:hover {
        border-color: var(--search-accent);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .ok-payment-option input[type="radio"]:checked + label {
        border-color: var(--search-accent);
        background: rgba(59, 130, 246, 0.05);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .ok-payment-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--search-accent);
    }

    .ok-payment-details {
        flex: 1;
    }

    .ok-payment-details strong {
        display: block;
        margin-bottom: var(--space-4);
        color: var(--ok-navy);
    }

    .ok-payment-details span {
        font-size: 0.85rem;
        color: #64748b;
    }

    /* Mobile Money Instructions */
    .ok-mobile-money-instructions {
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: var(--space-24);
        margin-top: var(--space-16);
        animation: slideDown 0.3s ease;
    }

    .ok-payment-instructions h4 {
        color: var(--ok-navy);
        margin-bottom: var(--space-20);
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: var(--space-8);
    }

    .ok-payment-steps {
        display: flex;
        flex-direction: column;
        gap: var(--space-20);
        margin-bottom: var(--space-24);
    }

    .ok-payment-step {
        display: flex;
        align-items: flex-start;
        gap: var(--space-16);
    }

    .ok-payment-step:nth-of-type(3) {
        display: block;
        gap: var(--space-16);
    }

    .ok-payment-step-header {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .ok-payment-details-card:nth-of-type(3) {
        flex-basis: 100%;
        margin-top: 8px;
    }

    .ok-step-number {
        background: var(--ok-red);
        color: #fff;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .ok-payment-step p {
        margin: 0;
    }

    .ok-payment-step .ok-step-number {
        background: var(--search-accent);
        color: white;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: var(--font-weight-semibold);
        flex-shrink: 0;
        border: 2px solid white;
    }

    .ok-payment-step p {
        margin: 0;
        line-height: 1.5;
        color: var(--ok-ink);
    }

    /* Enhanced Mobile Money Instructions */
    .ok-payment-details-card {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 24px;
        margin-top: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .ok-payment-recipient {
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid #f1f5f9;
    }

    .ok-payment-recipient:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .ok-payment-label {
        font-weight: 600;
        color: var(--ok-navy);
        margin-bottom: 8px;
        font-size: 0.95rem;
        text-transform: none;
        letter-spacing: 0.5px;
    }

    .ok-payment-value {
        color: var(--ok-ink);
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.4;
    }

    .ok-phone-number {
        color: var(--search-accent);
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .ok-payment-amount {
        color: var(--ok-red);
        font-weight: 700;
        font-size: 1.3rem;
    }

    /* Transaction ID input styling */
    .ok-reference-input {
        margin-top: 10px;
    }

    .ok-reference-input label {
        display: block;
        margin-bottom: var(--space-8);
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        font-size: 0.95rem;
    }

    .ok-reference-input input {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-family: var(--font-family);
        font-size: 1rem;
        transition: all 0.3s ease;
        background: white;
    }

    .ok-reference-input input:focus {
        border-color: var(--search-accent);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }

    .ok-reference-input small {
        display: block;
        margin-top: var(--space-4);
        color: #64748b;
        font-size: 0.8rem;
    }

    /* Order Actions */
    .ok-order-actions {
        margin-top: var(--space-32);
        padding-top: var(--space-24);
        border-top: 2px solid #e2e8f0;
    }

    .ok-terms-agreement {
        display: flex;
        align-items: flex-start;
        gap: var(--space-12);
        margin-bottom: var(--space-24);
        padding: var(--space-16);
        background: #f8fafc;
        border-radius: 10px;
    }

    .ok-terms-agreement input[type="checkbox"] {
        margin-top: 2px;
        transform: scale(1.2);
    }

    .ok-terms-agreement label {
        font-size: 0.9rem;
        color: var(--ok-ink);
        line-height: 1.4;
    }

    .ok-terms-link {
        color: var(--search-accent);
        text-decoration: none;
        font-weight: var(--font-weight-medium);
    }

    .ok-terms-link:hover {
        text-decoration: underline;
    }

    .ok-place-order-btn {
        width: 100%;
        background: linear-gradient(135deg, #10B981, #059669);
        color: white;
        border: none;
        padding: var(--space-20) var(--space-24);
        border-radius: 12px;
        font-weight: var(--font-weight-semibold);
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-12);
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .ok-place-order-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, #059669, #047857);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }

    .ok-place-order-btn:active:not(:disabled) {
        transform: translateY(0);
    }

    .ok-place-order-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .ok-order-note {
        text-align: center;
        color: #64748b;
        font-size: 0.85rem;
        margin-top: var(--space-16);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-8);
        padding: var(--space-12);
        background: #f8fafc;
        border-radius: 8px;
    }

    /* Quick Add Button */
    .ok-quick-add-btn {
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #8B5CF6, #7C3AED);
        color: white;
        border: none;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        z-index: 99;
        transition: all 0.3s ease;
    }

    .ok-quick-add-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
    }

    .ok-quick-add-btn.active {
        background: linear-gradient(135deg, #7C3AED, #6D28D9);
    }

    /* Form Elements */
    .ok-form-group {
        margin-bottom: 16px;
    }

    .ok-form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        font-size: 0.9rem;
    }

    .ok-form-group input,
    .ok-form-group textarea,
    .ok-form-group select {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-family: var(--font-family);
        font-size: 0.9rem;
        transition: all 0.3s ease;
        background: white;
    }

    .ok-form-group input:focus,
    .ok-form-group textarea:focus,
    .ok-form-group select:focus {
        border-color: var(--search-accent);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }

    .ok-form-group small {
        display: block;
        margin-top: 4px;
        color: #64748b;
        font-size: 0.8rem;
    }

    .ok-form-row {
        display: flex;
        gap: 12px;
    }

    .ok-form-row .ok-form-group {
        flex: 1;
    }

    /* Login Modal Styles */
    .ok-login-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1002;
        backdrop-filter: blur(4px);
    }

    .ok-login-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ok-login-modal-content {
        background: white;
        border-radius: var(--radius-xl);
        width: 90%;
        max-width: 400px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: var(--shadow-large);
        animation: modalSlideIn 0.3s ease-out;
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-50px) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .ok-login-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-20);
        border-bottom: 1px solid var(--ok-line);
    }

    .ok-login-modal-header h2 {
        font-size: 1.25rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        margin: 0;
    }

    .ok-login-modal-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--ok-ink);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease;
    }

    .ok-login-modal-close:hover {
        background-color: #f8fafc;
    }

    .ok-login-modal-body {
        padding: var(--space-20);
    }

    .ok-login-notice {
        text-align: center;
        margin-bottom: var(--space-24);
        padding: var(--space-16);
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border: 1px solid #7dd3fc;
        border-radius: var(--radius-lg);
    }

    .ok-login-notice i {
        font-size: 2rem;
        color: var(--search-accent);
        margin-bottom: var(--space-12);
        display: block;
    }

    .ok-login-notice p {
        margin: 0;
        color: var(--ok-navy);
        font-weight: var(--font-weight-medium);
    }

    .ok-inline-login-form {
        display: flex;
        flex-direction: column;
        gap: var(--space-16);
    }

    .ok-inline-login-form .ok-form-group {
        margin-bottom: 0;
    }

    .ok-inline-login-form label {
        display: block;
        margin-bottom: var(--space-8);
        font-weight: var(--font-weight-medium);
        color: var(--ok-navy);
        font-size: 0.9rem;
    }

    .ok-inline-login-form input {
        width: 100%;
        padding: var(--space-12) var(--space-16);
        border: 2px solid var(--search-border);
        border-radius: var(--radius-md);
        font-size: 1rem;
        transition: all 0.3s ease;
        background: white;
    }

    .ok-inline-login-form input:focus {
        border-color: var(--search-accent);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }

    .ok-login-actions {
        display: flex;
        flex-direction: column;
        gap: var(--space-12);
    }

    .ok-login-submit-btn {
        background: var(--search-accent);
        color: white;
        border: none;
        padding: var(--space-16) var(--space-20);
        border-radius: var(--radius-md);
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-8);
    }

    .ok-login-submit-btn:hover {
        background: #1D4ED8;
        transform: translateY(-1px);
    }

    .ok-login-submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

    .ok-register-link {
        text-align: center;
        color: var(--search-accent);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s ease;
    }

    .ok-register-link:hover {
        color: #1D4ED8;
        text-decoration: underline;
    }

    .ok-login-message {
        padding: var(--space-12);
        border-radius: var(--radius-md);
        font-size: 0.9rem;
        text-align: center;
        display: none;
    }

    .ok-login-message.success {
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        color: #16a34a;
        display: block;
    }

    .ok-login-message.error {
        background: #fef2f2;
        border: 1px solid #fecaca;
        color: #dc2626;
        display: block;
    }

    /* Loading state */
    .ok-login-submit-btn.loading {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .ok-login-submit-btn.loading::after {
        content: '';
        width: 16px;
        height: 16px;
        border: 2px solid transparent;
        border-top: 2px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-left: var(--space-8);
    }

    /* Enhanced Login Modal for Checkout Context */
    .ok-login-modal[data-checkout] .ok-login-notice {
        background: linear-gradient(135deg, #fff7ed, #ffedd5);
        border: 1px solid #fdba74;
    }

    .ok-login-modal[data-checkout] .ok-login-notice i {
        color: #ea580c;
    }

    .ok-login-modal[data-checkout] .ok-login-notice p {
        color: #ea580c;
        font-weight: var(--font-weight-semibold);
    }

    .ok-login-modal[data-checkout] .ok-login-submit-btn {
        background: linear-gradient(135deg, #ea580c, #c2410c);
    }

    .ok-login-modal[data-checkout] .ok-login-submit-btn:hover {
        background: linear-gradient(135deg, #c2410c, #9a3412);
    }

    /* Enhanced visual feedback for checkout button */
    .ok-checkout-btn.highlight {
        animation: pulseCheckout 2s infinite;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3) !important;
        transform: scale(1.05);
    }

    @keyframes pulseCheckout {
        0% {
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
        }
    }

    /* Enhanced notification styling for checkout context */
    .ok-notification-checkout {
        background: linear-gradient(135deg, #10b981, #059669) !important;
        border-left: 4px solid #047857;
    }

    /* Desktop Styles */
    @media (min-width: 768px) {
        .ok-products-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-20);
        }

        .ok-makola-title {
            font-size: 1.75rem;
        }

        .ok-main {
            padding-bottom: var(--space-32);
        }

        .ok-shopping-basket {
            width: 400px;
        }

        .ok-purchase-history {
            width: 400px;
        }

        .ok-simple-list-modal {
            width: 400px;
        }

        .ok-edit-item-modal {
            width: 400px;
        }

        .ok-delivery-location {
            width: 400px;
        }

        .ok-order-form {
            width: 500px;
        }

        /* Bottom Navigation Desktop Styles */
        .ok-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex !important;
        }

        .ok-nav-item {
            font-size: 0.8rem;
        }

        .ok-nav-item svg {
            width: 28px;
            height: 28px;
        }

        /* Desktop Product Detail Layout Fix */
        .ok-product-detail {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .ok-product-detail .ok-container {
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
        }

        .ok-detail-header {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .ok-detail-content {
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
        }

        .ok-detail-actions {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Desktop layout for todo input */
        .ok-todo-input-container {
            flex-wrap: nowrap;
        }

        .ok-progress-steps {
            max-width: 400px;
            margin: 0 auto;
        }
    }

    /* Mobile optimizations */
    @media (max-width: 767px) {
        .ok-header {
            padding: var(--space-12) 0;
        }

        .ok-makola-title {
            font-size: 1.3rem;
        }
        
        .ok-add-todo-btn {
            width: auto;
            justify-content: center;
        }

        .ok-order-form {
            width: 100%;
            padding: var(--space-12);
        }
        
        .ok-form-row {
            flex-direction: column;
            gap: 0;
        }
        
        .ok-order-section {
            padding: var(--space-20);
        }
        
        .ok-tip-options {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .ok-progress-steps::before {
            left: 15%;
            right: 15%;
        }

        .ok-location-prompt {
            padding: 20px;
        }

        .ok-location-prompt h3 {
            font-size: 1.2rem;
        }

        .ok-set-location-btn {
            padding: 14px 20px;
            font-size: 1rem;
        }

        .map-modal-content {
            border-radius: 0;
            max-height: none;
        }
    }

    @media (max-width: 480px) {
        .ok-delivery-location {
            padding: 15px;
        }

        .ok-location-prompt {
            padding: 15px;
        }

        .ok-location-prompt h3 {
            font-size: 1.1rem;
        }

        .ok-delivery-notice {
            padding: 15px;
        }
    }

    /* 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: 2px solid var(--search-focus);
        outline-offset: 2px;
    }

    /* Service Fee Section Styles */
    .ok-service-fee-section {
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        border: 1px solid #e2e8f0;
        border-left: 4px solid var(--search-accent);
        margin-top: -16px; /* Reduce gap between sections */
    }

    .ok-service-fee-header {
        display: flex;
        align-items: center;
        gap: var(--space-12);
        margin-bottom: var(--space-16);
    }

    .ok-service-fee-header h4 {
        font-size: 1rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        margin: 0;
    }

    .ok-service-fee-content {
        display: flex;
        flex-direction: column;
        gap: var(--space-16);
    }

    .ok-service-fee-explanation {
        background: white;
        padding: var(--space-16);
        border-radius: var(--radius-md);
        border: 1px solid #f1f5f9;
    }

    .ok-service-fee-explanation p {
        margin: 0 0 var(--space-8) 0;
        color: var(--ok-ink);
        font-size: 0.85rem;
        line-height: 1.4;
        display: flex;
        align-items: flex-start;
        gap: var(--space-8);
    }

    .ok-service-fee-explanation p:last-child {
        margin-bottom: 0;
    }

    .ok-service-fee-explanation i {
        margin-top: 2px;
        flex-shrink: 0;
    }

    .ok-service-fee-benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--space-12);
    }

    .ok-benefit-item {
        display: flex;
        align-items: center;
        gap: var(--space-8);
        padding: var(--space-12);
        background: white;
        border-radius: var(--radius-md);
        border: 1px solid #f1f5f9;
        font-size: 0.8rem;
        color: var(--ok-ink);
    }

    .ok-benefit-item i {
        flex-shrink: 0;
    }

    /* Info Tooltip Styles */
    .ok-info-tooltip {
        position: relative;
        display: inline-block;
        margin-left: var(--space-4);
        color: var(--search-accent);
        cursor: help;
    }

    .ok-tooltip-content {
        visibility: hidden;
        width: 280px;
        background-color: var(--ok-navy);
        color: white;
        text-align: center;
        border-radius: var(--radius-md);
        padding: var(--space-12);
        position: absolute;
        z-index: 1000;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 0.8rem;
        line-height: 1.4;
        box-shadow: var(--shadow-menu);
    }

    .ok-tooltip-content::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: var(--ok-navy) transparent transparent transparent;
    }

    .ok-info-tooltip:hover .ok-tooltip-content {
        visibility: visible;
        opacity: 1;
    }

    /* Enhanced Order Totals Styling */
    .ok-order-totals {
        border-top: 2px solid #e2e8f0;
        padding-top: var(--space-20);
    }

    .ok-total-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: var(--space-12);
        padding: var(--space-8) 0;
        font-size: 0.95rem;
    }

    .ok-total-row:not(.ok-total-final) {
        color: #64748b;
    }

    .ok-total-final {
        font-size: 1.2rem;
        border-top: 1px solid #e2e8f0;
        padding-top: var(--space-16);
        margin-top: var(--space-8);
        color: var(--ok-navy);
        font-weight: var(--font-weight-bold);
    }

    /* Mobile Responsive */
    @media (max-width: 767px) {
        .ok-service-fee-benefits {
            grid-template-columns: 1fr;
        }
        
        .ok-service-fee-explanation p {
            flex-direction: column;
            gap: var(--space-4);
            align-items: flex-start;
        }
        
        .ok-tooltip-content {
            width: 250px;
            font-size: 0.75rem;
        }
    }


    /* Modal Styles */
    .ok-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 10000;
        backdrop-filter: blur(4px);
    }

    .ok-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ok-modal-content {
        background: white;
        border-radius: 16px;
        width: 90%;
        max-width: 600px;
        max-height: 80vh;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: modalSlideIn 0.3s ease-out;
    }

    .ok-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid #e2e8f0;
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    }

    .ok-modal-header h2 {
        font-size: 1.5rem;
        font-weight: var(--font-weight-semibold);
        color: var(--ok-navy);
        margin: 0;
    }

    .ok-modal-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--ok-ink);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease;
    }

    .ok-modal-close:hover {
        background-color: #f1f5f9;
    }

    .ok-modal-body {
        padding: 24px;
        overflow-y: auto;
        max-height: calc(80vh - 140px);
    }

    .ok-terms-content h3,
    .ok-privacy-content h3 {
        color: var(--ok-navy);
        margin-bottom: 16px;
        font-size: 1.3rem;
    }

    .ok-terms-content h4,
    .ok-privacy-content h4 {
        color: var(--ok-navy);
        margin: 20px 0 8px 0;
        font-size: 1.1rem;
    }

    .ok-terms-content p,
    .ok-privacy-content p {
        margin-bottom: 12px;
        line-height: 1.6;
        color: var(--ok-ink);
    }

    .ok-terms-content ul,
    .ok-privacy-content ul {
        margin-bottom: 16px;
        padding-left: 20px;
    }

    .ok-terms-content li,
    .ok-privacy-content li {
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .ok-modal-footer {
        padding: 16px 24px;
        border-top: 1px solid #e2e8f0;
        text-align: right;
        background: #f8fafc;
    }

    .ok-modal-close-btn {
        background: var(--search-accent);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .ok-modal-close-btn:hover {
        background: #2563EB;
        transform: translateY(-1px);
    }

    /* Enhanced terms agreement styling */
    .ok-terms-agreement {
        display: flex;
        align-items: flex-start;
        gap: var(--space-12);
        margin-bottom: var(--space-24);
        padding: var(--space-16);
        background: #f8fafc;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
    }

    .ok-terms-agreement input[type="checkbox"] {
        margin-top: 2px;
        transform: scale(1.2);
        cursor: pointer;
    }

    .ok-terms-agreement label {
        font-size: 0.9rem;
        color: var(--ok-ink);
        line-height: 1.4;
        cursor: pointer;
    }

    .ok-terms-link {
        color: var(--search-accent);
        text-decoration: none;
        font-weight: var(--font-weight-medium);
        cursor: pointer;
    }

    .ok-terms-link:hover {
        text-decoration: underline;
    }

    /* Disabled state for place order button */
    .ok-place-order-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
        background: #9ca3af !important;
    }

    .ok-place-order-btn:disabled:hover {
        background: #9ca3af !important;
        transform: none !important;
    }

    /* Call/WhatsApp Order Feature - Ultra Compact */
.ok-contact-order-section {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 6px 0 !important;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    margin-top: -8px;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.ok-contact-order-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.ok-contact-order-text {
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.ok-contact-buttons {
    display: flex;
    gap: 6px;
}

.ok-contact-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.ok-call-btn {
    background: white;
    color: #1e40af;
    border: 1px solid #d1d5db;
}

.ok-call-btn:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ok-whatsapp-btn {
    background: #25D366;
    color: white;
}

.ok-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* Even more compact for mobile */
@media (max-width: 480px) {
    .ok-contact-order-section {
        padding: 4px 0;
        font-size: 0.75rem;
    }
    
    .ok-contact-order-content {
        gap: 6px;
    }
    
    .ok-contact-btn {
        padding: 3px 8px;
        font-size: 0.7rem;
        gap: 3px;
    }
    
    .ok-contact-order-text {
        font-size: 0.75rem;
    }
}