.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-header {
    background-image: url('https://sankranti.com/menu/wp-content/uploads/2026/03/PATTERN-3-1.svg');
    background-repeat: repeat;
    background-position: center;
    background-color: #EBF7EE;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.okrish-category-flower {
    width: 60px;
    height: auto;
    margin-bottom: 5px;
}

.okrish-category-title {
    font-size: 2.5em;
    font-weight: 900;
    margin: 0;
    padding: 0;
    border: none;
    color: #6C1E4E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.okrish-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .okrish-products-grid {
        grid-template-columns: 1fr;
    }
}

.okrish-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    padding: 15px;
    transition: transform 0.2s;
    text-align: center;
}

.okrish-product-card:hover {
    transform: translateY(-5px);
}

.okrish-product-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 0;
    overflow: visible;
}

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

.okrish-product-info {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    width: 100%;
}

.okrish-product-title-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.okrish-product-title {
    font-size: 1.1em;
    font-weight: 800;
    margin: 0;
    color: #222;
    text-transform: uppercase;
}

.okrish-product-price {
    font-size: 1.1em;
    font-weight: 800;
    color: #6C1E4E;
}

.okrish-product-price bdi {
    color: #6C1E4E;
}

.okrish-product-actions {
    margin-top: 5px;
}

.okrish-btn {
    background: #6C1E4E;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 24px;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.okrish-btn:hover {
    background: #4A1234;
    color: #fff;
    transform: scale(1.05);
}

/* 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: 0;
    border: 1px solid #888;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#okrish-modal-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.okrish-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
}

.okrish-modal-close:hover,
.okrish-modal-close:focus {
    background: #f0f0f0;
    color: #000;
    text-decoration: none;
}

.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;
}
