.okrish-menu-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    font-family: inherit;
}

.okrish-menu-main {
    flex: 1;
}

.okrish-menu-sidebar {
    width: 320px;
    position: sticky;
    top: 20px;
}

@media (max-width: 900px) {
    .okrish-menu-wrapper {
        flex-direction: column;
    }
    .okrish-menu-sidebar {
        width: 100%;
        position: static;
        order: -1; /* move cart to top on mobile sometimes? No, let's keep it down or up based on user pref. Let's leave order. */
    }
}

.okrish-category-section {
    margin-bottom: 40px;
}

.okrish-category-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
}

.okrish-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.okrish-product-card {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 15px;
    transition: box-shadow 0.2s;
}

.okrish-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.okrish-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 15px;
}

.okrish-product-title {
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #222;
}

.okrish-product-description {
    font-size: 0.9em;
    color: #666;
    margin: 0 0 12px 0;
    flex-grow: 1;
}

.okrish-product-price-row {
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.okrish-product-actions {
    margin-top: auto;
}

.okrish-btn {
    background: #fdfaf5;
    color: #c98b47;
    border: 1px solid #c98b47;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.okrish-btn:hover {
    background: #c98b47;
    color: #fff;
}

.okrish-product-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.okrish-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Order Summary Header Styles */
.okrish-order-summary-container {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.okrish-order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.okrish-order-summary-header h3 {
    margin: 0;
    font-size: 1.25em;
    font-weight: 700;
}

/* Modal specific overrides if any */
.okrish-modal {
    display: none; 
    position: fixed; 
    z-index: 99999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); 
}

.okrish-modal-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 30px;
    border: 1px solid #888;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.okrish-modal-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.okrish-modal-close:hover,
.okrish-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.okrish-modal-header h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.okrish-modal-add-btn {
    width: 100%;
    background: #222 !important;
    color: #fff !important;
    font-size: 1.1em !important;
    padding: 12px !important;
    border-radius: 8px !important;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

/* Cart Items Styling */
.okrish-mini-cart-items {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.okrish-mini-cart-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.okrish-cart-item-qty {
    font-weight: 700;
    margin-right: 15px;
    font-size: 1.1em;
}

.okrish-cart-item-details {
    flex: 1;
}

.okrish-cart-product-name {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.okrish-cart-item-actions {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 0.85em;
}

.okrish-cart-item-actions a {
    color: #333;
    text-decoration: underline;
}

/* mini cart subtotal */
.okrish-mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 20px;
}

.okrish-btn-checkout {
    display: block;
    width: 100%;
    text-align: center;
    background: #222 !important;
    color: #fff !important;
    padding: 12px !important;
    border-radius: 8px !important;
    text-decoration: none;
    font-weight: 700;
}
