    /* Header & Search */
    header .date {
        font-size: 0.875rem;
        color: var(--text-light);
    }


    .Native-h-10 {
        height: 10dvh;
    }

    ;

    .Native-h-80 {
        height: 80dvh;
    }

    .Native-h-90 {
        height: 90dvh;
    }

    .search-box {
        display: flex;
        align-items: center;
        background: #F3F4F6;
        border-radius: 9999px;
        padding: 0.5rem 1.5rem;
        border: 1px solid transparent;
        transition: all 0.2s ease;
    }

    .search-box:focus-within {
        background: #FFFFFF;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    }

    .search-box input {
        border: none;
        outline: none;
        background: transparent;
        width: 100%;
        font-size: 0.95rem;
        color: var(--text-color);
    }

    /* Buttons */
    .btn {
        user-select: none;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    /* Base Style (3D Texture) */
    /* parent div needs to be grid */
    .btn-yellow {
        user-select: none;
        margin: 10px 0 10px 0;
        width: 100%;
        height: 40px;
        border-radius: 40px;
        font-size: 1.7rem;
        font-weight: 900;
        cursor: pointer;
        transition: all 0.1s ease;

        grid-column: span 1/ span 1;
        /* Faster transition for the press effect */
        background-color: rgb(240, 200, 0);
        color: black;
        border: none;

        /* --- 3D Texture Added Here --- */
        /* Creates the "depth" or "lip" of the button */
        box-shadow:
            0 4px 0 0 rgb(190, 160, 0),
            /* Darker bottom shadow (the 3D depth) */
            0 1px 2px rgba(0, 0, 0, 0.2);
        /* Soft slight inner shadow/light source */
        /* --- -------------------- --- */
    }

    /* Hover Effect (Slight lift) */
    .btn-yellow:hover {
        background-color: rgb(255, 216, 20);
        /* Slightly increase the shadow size/intensity on hover */
        box-shadow:
            0 5px 0 0 rgb(190, 160, 0),
            0 1px 4px rgba(0, 0, 0, 0.25);
        transform: translateY(-2px);
        /* Lift the button slightly */
    }

    /* Pressed Effect (:active) */
    .btn-yellow:active {
        /* --- Pressed Effect Added Here --- */
        /* Move the button down by the same amount as the depth (4px) */
        transform: translateY(4px);

        /* Remove or significantly shrink the depth shadow to simulate the button being pressed down */
        box-shadow:
            0 0 0 0 rgb(190, 160, 0),
            /* Depth shadow is removed */
            0 0 1px rgba(0, 0, 0, 0.2);
        /* Keep a small inner shadow */
        /* --- ------------------------- --- */
    }

    /* Cart Section */
    .cart-section {
        background: var(--card-bg);
        padding: 1.5rem;
        border-radius: var(--radius);
        width: 100%;
        margin: 0 auto;
        font-size: 0.9rem;
        /* box-shadow: var(--shadow-sm); */
        /* border: 1px solid var(--border-color); */
    }

    .cart-header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        font-weight: 600;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0.75rem;
        color: var(--text-light);
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }

    .cart-header span {
        text-align: center;
    }

    .cart-header span:first-child {
        text-align: left;
    }

    .cart-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .cart-row:last-child {
        border-bottom: none;
    }

    .cart-row .item-name {
        text-align: left;
        font-weight: 500;
    }

    .cart-row .price {
        text-align: center;
        font-weight: 600;
        color: var(--text-color);
    }

    /* Quantity Control */
    .quantity-control {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .quantity-control .btn {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #E5E7EB;
        color: #374151;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        box-shadow: none;
    }

    .quantity-control .btn:hover {
        background: #D1D5DB;
        color: #000;
    }

    .quantity-control .qty {
        font-weight: 600;
        min-width: 1.5rem;
        text-align: center;
    }

    .inp-fild {
        background: #F9FAFB;
        text-align: right;
        outline: none;
        border: 1px solid var(--border-color);
        border-radius: 0.375rem;
        padding: 0.5rem;
        font-size: 0.9rem;
        width: 80px;
        transition: border-color 0.2s;
    }

    .inp-fild:focus {
        border-color: var(--primary-color);
    }

    /* Totals Section */
    .totals {
        margin-top: 1.5rem;
        border-top: 1px dashed var(--border-color);
        padding-top: 1rem;
    }

    .totals div {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .totals .grand-total {
        border-top: 2px solid var(--text-color);
        margin-top: 0.75rem;
        padding-top: 1rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-color);
    }

    /* Product Card */
    .product-card-native {
        user-select: none;
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        padding: 1rem;
        width: 100%;
        /* Responsive width */
        background-color: var(--card-bg);
        box-shadow: var(--shadow-sm);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        cursor: pointer;
    }

    .product-card-native:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-color);
    }

    .product-card-native:active {
        transform: scale(0.98);
    }

    .product-image-native {
        width: 100%;
        height: 160px;
        object-fit: contain;
        /* Changed to contain for better product visibility */
        border-radius: 0.5rem;
        background-color: #F3F4F6;
        padding: 0.5rem;
    }

    /* Typography Utilities */
    .text-heading {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-color);
    }

    .tooltip {
        position: relative;
        display: inline-block;
        border-bottom: 1px dotted black;
    }

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 190px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -100px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }