/* Global Reset */
* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* BODY */
.ORbody {
    height: 100vh;
    background: #fef8e4;
    box-sizing: border-box;
    overflow: hidden; /* Prevent all scrolling on body */
}

/* APP CONTAINER - Enable scrolling on mobile/tablet */
#app {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Make container fill the available vertical space */
.ORcontainer {
    display: flex;
    height: 100vh;
    box-sizing: border-box;
    margin: 0; /* Remove margin to prevent overflow */
    padding: 15px; /* Use padding instead of margin */
}

/* CATALOG */
.ORcatalog {
    flex: 1 1 auto;
    height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.ORcatalog::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

.ORcart {
    width: 25%;
    min-width: 260px;
    height: 100%;
    background: #fff;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    padding: 16px;
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    gap: 12px;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.ORcart::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

.ORclear-cart-btn{
    background: '#dc3545';
    color: 'white';
    border-radius: '8px';
    padding: '10px 16px';
    cursor: 'pointer';
    font-size: '14px';
    font-weight: '600';
    display: 'flex';
    align-items: 'center';
    justify-content: 'center';
    gap: '8px';
    width: '90%';
}

.ORsearch-bar-container {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 20px auto;
}

.ORsearch-bar-input {
    flex: 1;
    display: flex;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ORsearch-bar-input input {
    border: 2px solid #6F4F37 !important;
    box-shadow: 0 0 0 2px rgba(111, 79, 55, 0.2) !important;
    flex: 1;
    font-size: 14px;
    border-radius: 20px;
    padding: 8px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff !important;
    outline: none !important;
}

.ORsearch-bar-input input:focus {
    border-color: #6F4F37 !important;
    box-shadow: 0 0 0 3px rgba(111, 79, 55, 0.3) !important;
}

.ORsearch-bar-button {
    margin-left: 10px;
    padding: 10px;
    border-radius: 20px;
    background: #6F4F37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.ORsearch-bar-button img{
    width: 18px;
    height: 18px;
}

.ORsearch-bar-button i {
    font-size: 18px;
    color: #fff;
}

/* FOOD CATEGORIES */
.ORfood-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.ORfood-categories > button {
    flex: 1;
    max-width: 140px;
    height: 80px;
    border-radius: 15px;
    background: #fdfdfd;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cat-all {
    background: #F1E0C6;
}

/* Active state for selected category */
.ORfood-categories .ORfilter-btn.active {
    background: #6F4F37 !important;
    color: white !important;
    border-color: #6F4F37 !important;
    box-shadow: 0 4px 8px rgba(111, 79, 55, 0.3) !important;
}

.ORfood-categories .ORfilter-btn.active p {
    color: white !important;
}

.ORfilter-btn.active:hover {
    background: #5a3d2e;
    transform: translateY(-1px);
}


/* Active state when clicked */
.ORfilter-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ORfood-categories i {
    font-size: 20px;
    display: block;
}

.ORfood-categories p:first-child {
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0 5px;
    color: #333;
}

.ORfood-categories p:last-child {
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}

/* FOOD ITEMS */
.ORfood-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.ORfood-items > div {
    width: 150px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

/* Expanded card styles for specific categories (not All) */
.ORfood-items.expanded-category > div {
    min-width: 250px;
    min-height: 400px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.ORfood-items img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.ORfood-items h4 {
    font-size: 14px;
    margin: 10px 0 5px;
    color: #333;
    transition: all 0.3s ease;
}

.ORfood-items p {
    font-size: 9px;
    margin: 5px 10px;
    color: #666;
    transition: all 0.3s ease;
}

/* Expanded card content styles */
.ORfood-items.expanded-category img {
    height: 150px;
}

.ORfood-items.expanded-category h4 {
    font-size: 16px;
    margin: 15px 0 8px;
    font-weight: 600;
}

.ORfood-items.expanded-category p {
    font-size: 13px;
    margin: 8px 15px;
    line-height: 1.4;
}

.ORfood-items button {
    margin: 10px auto 15px;
    padding: 8px 12px;
    background: #6F4F37;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.ORicon-item{
    width: 150px;
}

/* Clickable Card Styles */
.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Hover effects */
.clickable-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #6F4F37;
}

/* Active state when clicked */
.clickable-card:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Inner content styling */
.clickable-card > div {
    padding: 15px;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 6px;
}

/* Product image styling */
.clickable-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: opacity 0.2s ease;
}

.clickable-card:hover img {
    opacity: 0.9;
}

/* Product name styling */
.clickable-card h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Price styling */
.clickable-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* No results styling */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-results p {
    font-size: 16px;
    margin: 0;
}

/* Clear Cart Confirmation Modal */
.clear-cart-confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.clear-cart-confirmation-modal {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.clear-cart-confirmation-modal .confirmation-header {
    margin-bottom: 25px;
}

.clear-cart-confirmation-modal .confirmation-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 15px;
}

.clear-cart-confirmation-modal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.clear-cart-confirmation-modal p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.clear-cart-confirmation-modal .confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.clear-cart-confirmation-modal .cancel-btn:hover {
    background: #6F4F37 !important;
    color: white !important;
    transform: translateY(-2px);
}

.clear-cart-confirmation-modal .confirm-btn:hover {
    background: #c82333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}




/* Icon styling in category buttons */
.ORfilter-btn i {
    transition: transform 0.2s ease;
}

.ORfilter-btn:hover i {
    transform: scale(1.1);
}

/* Text styling in category buttons */
.ORfilter-btn h4 {
    transition: color 0.2s ease;
}

.ORfilter-btn p {
    transition: color 0.2s ease;
}

/* Review Filter Styles */
.review-filter {
  margin-bottom: 15px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.filter-label {
  display: block;
  font-weight: 600;
  color: #6F4F37;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* Clickable Star Filter Styles */
.clickable-star-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.star-rating-filter {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.filter-star {
  font-size: 1.2rem;
  color: #ccc;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.filter-star:hover {
  color: #ffa500;
  transform: scale(1.1);
}

.filter-star.selected {
  color: #ffa500;
}

.filter-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.clear-filter-btn {
  padding: 4px 8px;
  background: transparent;
  color: #6F4F37;
  border: 1px solid #6F4F37;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clear-filter-btn:hover {
  background: #6F4F37;
  color: #fff;
}

.reviews-list {
  max-height: 200px;
  overflow-y: auto;
}

.feedback-item {
  margin-bottom: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.review-header p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
}

.review-stars {
  color: #ffa500;
  font-size: 14px;
}

.review-comment {
  margin: 0;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
}

.no-reviews {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 15px;
  font-size: 0.9rem;
}

/* Responsive Star Filter Styles */
@media (max-width: 768px) {
  .filter-star {
    font-size: 1rem;
  }

  .filter-info span {
    font-size: 0.8rem;
  }

  .reviews-list {
    max-height: 150px;
  }
}

@media (max-width: 480px) {
  .filter-star {
    font-size: 0.9rem;
  }

  .filter-info span {
    font-size: 0.75rem;
  }

  .clear-filter-btn {
    padding: 3px 6px;
    font-size: 0.65rem;
  }
}

/* Customer Feedback & Rating CSS */
.feedback-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feedback-section h4 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}


/* Leave Review Section */
.leave-review {
    margin-top: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.leave-review h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    align-items: center;
}

.star {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

.star:hover {
  color: #ffc107;
}

.star.selected {
  color: #ffc107;
}

.star.selected:hover {
  color: #ff8f00;
}

/* Review Textarea */
.review-textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.review-textarea:focus {
  outline: none;
  border-color: #6F4F37;
  box-shadow: 0 0 0 3px rgba(111, 79, 55, 0.1);
}

.review-textarea::placeholder {
  color: #999;
  font-style: italic;
}

/* Submit Review Button */
.submit-review-btn {
  background: #6F4F37;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.submit-review-btn:hover {
  background: #5a3d2e;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(111, 79, 55, 0.3);
}

.submit-review-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(111, 79, 55, 0.3);
}

.submit-review-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}


/* CART */
.ORcart {
    width: 25%;
    min-width: 260px;
    height: 100%;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
    gap: 12px;
}

.ORcart-header {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ORcart-header i {
    font-size: 24px;
    color: #6F4F37;
}

.ORcart-header p {
    font-size: 20px;
    font-weight: 700;
    color: #6F4F37;
    margin: auto;
}

.ORorder-set-up {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
}

.ORpick-up {
    border-radius: 28px;
    height: 40px;
    min-width: 110px;
    padding: 0 16px;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
    border: 2px solid #6F4F37;
    color: #6F4F37;
    margin: auto;
}

.ORcart-items {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-right: 6px;
}

.ORcart-row {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.ORtotal-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #FFB84D;
    border-radius: 10px;
    font-weight: 600;
    margin: 12px 0;
    font-size: 16px;
}

.ORtotal-box p {
    margin: 0;
    font-size: 16px;
}

.ORpay-meth {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.ORcash {
    border: 2px solid #6F4F37;
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: #6F4F37;
}

.ORconfirm-btn {
    width: 100%;
    height: 52px;
    border-radius: 28px;
    background: #6F4F37;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    border: none;
}

.ORconfirm-btn p {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* Global Overlay - for conditional rendering */
.global-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 900;
}

/* Modal Overlay */
.stockModal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Modal Box */
.stockModal {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    margin: auto;
}

.product-description {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}


/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 12px 20px;
    background: #6F4F37;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin: 15px 0;
}

.add-to-cart-btn:hover {
    background: #5a3d2a;
}

.add-to-cart-btn:active {
    background: #4a3320;
}

.add-to-cart-btn:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* Modal Close Button */
.stockModal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.stockModal-close:hover {
    color: #e63946;
    background: rgba(230, 57, 70, 0.1);
    transform: scale(1.1);
}

.stockModal-close:active {
    transform: scale(0.95);
}

/* Cancel Button */
#closeStockModal {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

#closeStockModal:hover {
    background: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#closeStockModal:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-info {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.product-info img {
    width: 300px !important;
    height: 150px !important;
    border-radius: 8px;
    margin: 0 auto 15px auto;
    display: block;
    object-fit: cover;
}

.size-selection h4 {
    margin-bottom: 15px;
    color: #333;
}

.size-option {
    margin-bottom: 10px;
}

.size-btn {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.size-btn:hover {
    border-color: #6F4F37;
    background: #f8f9fa;
}

.size-btn:active {
    background: #6F4F37;
    color: white;
}

.size-btn.selected {
    background: #6F4F37;
    color: white;
    border-color: #6F4F37;
}

/* Cart Item Styles */
.ORcart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.ORcart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
}

.ORcart-item-info p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* Extra items display in cart */
.ORcart-item-extras {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #e0e0e0;
}

.ORwith-extras-label {
    font-size: 11px;
    color: #6F4F37 !important;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 4px !important;
}

.ORextra-item-detail {
    font-size: 10px !important;
    color: #888 !important;
    margin: 2px 0 !important;
    padding-left: 8px;
}

.ORextra-request {
    font-size: 10px !important;
    color: #6F4F37 !important;
    font-style: italic;
    margin-top: 4px !important;
    padding-left: 8px;
}

.ORcart-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ORquantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ORquantity-btn:hover {
    background: #e9ecef;
}

.ORquantity {
    min-width: 20px;
    text-align: center;
    font-weight: bold;
}

.ORremove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
}

.ORremove-btn:hover {
    background: #c82333;
}

/* Empty Cart Warning Modal */
.empty-cart-warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.empty-cart-warning-modal {
    background: white;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: warningSlideIn 0.3s ease-out;
}

@keyframes warningSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.warning-icon {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.empty-cart-warning-modal h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    color: #5b4a33;
    font-weight: 600;
}

.empty-cart-warning-modal p {
    margin: 0 0 25px 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.warning-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.warning-ok-btn {
    background: #6F4F37;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.warning-ok-btn:hover {
    background: #8B5A3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 79, 55, 0.3);
}

.warning-ok-btn:active {
    transform: translateY(0);
}

/* Order Confirmation Modal Styles */
.order-confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: confirmationOverlayFadeIn 0.3s ease-out;
}

@keyframes confirmationOverlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.order-confirmation-modal {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: confirmationModalSlideIn 0.3s ease-out;
}

@keyframes confirmationModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.confirmation-header {
    background: linear-gradient(135deg, #6F4F37, #8B5A3C);
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.confirmation-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.confirmation-header h3 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.confirmation-header p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.confirmation-content {
    padding: 25px;
}

.order-summary h4 {
    margin: 0 0 20px 0;
    color: #6F4F37;
    font-size: 1.2rem;
    font-weight: 600;
}

.order-items {
    margin-bottom: 20px;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.confirmation-item:last-child {
    border-bottom: none;
}

.item-details h5 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.item-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Extra items in confirmation modal */
.confirmation-extras {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #e0e0e0;
}

.confirmation-extras-label {
    font-size: 0.8rem !important;
    color: #6F4F37 !important;
    font-weight: 600;
    font-style: italic;
    margin: 4px 0 !important;
}

.confirmation-extra-detail {
    font-size: 0.75rem !important;
    color: #888 !important;
    margin: 2px 0 !important;
    padding-left: 8px;
}

.confirmation-extra-request {
    font-size: 0.75rem !important;
    color: #6F4F37 !important;
    font-style: italic;
    margin: 4px 0 0 0 !important;
    padding-left: 8px;
}

.item-quantity {
    color: #6F4F37;
    font-weight: 600;
    font-size: 0.9rem;
}

.item-price {
    color: #6F4F37;
    font-weight: 600;
    font-size: 1rem;
}

.order-total {
    margin-top: 20px;
}

.order-total hr {
    border: none;
    height: 1px;
    background: #e0e0e0;
    margin: 0 0 15px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.total-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #6F4F37;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    padding: 20px 25px 25px 25px;
    justify-content: center;
}

.cancel-order-btn {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cancel-order-btn:hover {
    background: #e0e0e0;
    border-color: #ccc;
    transform: translateY(-2px);
}

.confirm-order-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.confirm-order-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.confirm-order-btn:active {
    transform: translateY(0);
}

/* =================== RESPONSIVE STYLES =================== */

/* Tablets (<= 1024px) */
@media only screen and (max-width: 1023px) {
    .ORbody {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    #app {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }
    
    .ORcontainer {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        width: 100%;
    }

    .ORfood-categories > button{
        height: 90px;
    }

    .ORcatalog {
        height: auto;
        min-height: auto;
        overflow-y: visible;
        padding: 15px;
    }

    .ORcart {
        width: 100%;
        min-width: unset;
        margin-top: 15px;
        border-left: none;
        border-top: 1px solid #eee;
    }

    .ORfood-items > div {
        width: 45%;
    }
}

/* Mobile (<= 768px) */
@media only screen and (max-width: 768px) {
    #app {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .ORcontainer {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    /* ===== FOOD CATEGORIES ===== */
    .ORfood-categories {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 15px auto;
        width: 100%;
        max-width: 420px;
    }

    .ORfood-categories > button {
        height: 60px;
        font-size: 12px;
    }

    /* ===== FOOD ITEMS ===== */
    .ORfood-items {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .ORfood-items > div {
        width: 150px;
        border-radius: 16px;
        background: #fff;
        box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .ORfood-items img {
        width: 100%;
        height: 110px;
        object-fit: cover;
    }

    .ORfood-items h4 {
        font-size: 13px;
        margin: 8px 0 4px;
    }

    .ORfood-items p {
        font-size: 10px;
        margin: 4px 8px;
    }

    .ORfood-items button {
        margin: 8px auto 12px;
        padding: 6px 10px;
        border-radius: 8px;
        font-size: 12px;
    }

    /* ===== CART SECTION SMALLER ===== */
    .ORcart {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 20%; /* Further reduced from 200px */
        max-width: none; /* Remove max-width constraint for full width */
        margin: 0; /* Remove auto margins to use full width */
        padding: 6px; /* Further reduced from 8px */
        border: 1px solid #eee;
        background: #fff;
        box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.15);
        border-radius: 8px; /* Reduced from 12px */
        z-index: 1000;
    }

    .ORcart-header p {
        font-size: 12px; /* Consistent 12px for mobile */
    }

    .ORcart-header i {
        font-size: 12px; /* Consistent 12px for mobile */
    }

    .ORtotal-box {
        padding: 4px; /* Further reduced from 6px */
        margin: 6px 0; /* Reduced margin */
    }

    .ORtotal-box p{
        font-size: 12px; /* 14px for mobile total amount */
    }

    .ORpay-meth,
    .ORorder-set-up {
        display: none;
    }

    .ORconfirm-btn {
        margin: auto;
        height: 24px; /* Slightly bigger for mobile */
        width: 150px; /* Slightly bigger for mobile */
        border-radius: 15px; /* Smaller border radius */
        padding: 2px 8px; /* Add padding for better appearance */
    }

    .ORconfirm-btn p {
        font-size: 12px; /* 12px for mobile confirm button */
        font-weight: 600; /* Keep it readable */
    }

    /* Ultra-compact cart items */
    .ORcart-item {
        padding: 4px 0; /* Reduced padding */
        margin-bottom: 4px; /* Reduced margin */
    }

    .ORcart-items p{
        font-size: 8px;
    }
    

    .ORcart-item-info h4 {
        font-size: 12px; /* Consistent 12px for mobile */
        margin: 0 0 2px 0; /* Reduced margins */
    }

    .ORcart-item-info p {
        font-size: 12px; /* Consistent 12px for mobile */
        margin: 0;
    }

    /* Mobile extra items styling */
    .ORcart-item-extras {
        margin-top: 4px;
        padding-top: 4px;
    }

    .ORwith-extras-label {
        font-size: 9px !important;
        margin-bottom: 2px !important;
    }

    .ORextra-item-detail {
        font-size: 8px !important;
        margin: 1px 0 !important;
        padding-left: 4px;
    }

    .ORextra-request {
        font-size: 8px !important;
        margin-top: 2px !important;
        padding-left: 4px;
    }

    .ORcart-item-controls {
        gap: 4px; /* Reduced gap between controls */
    }

    .ORquantity-btn {
        width: 20px; /* Smaller quantity buttons */
        height: 20px;
        font-size: 10px;
    }

    .ORquantity {
        font-size: 8px; /* Smaller quantity text */
    }

    .ORremove-btn {
        padding: 2px 4px; /* Smaller remove button */
        font-size: 7px;
        border-radius: 3px;
    }

    /* Ultra-compact clear cart button */
    .ORclear-cart-btn {
        padding: 4px 8px; /* Much smaller clear cart button */
        font-size: 8px;
        border-radius: 4px;
        margin: 4px 0; /* Reduced margin */
        background: #dc3545;
        color: white;
        border: none;
        cursor: pointer;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 100%;
    }

    /* Modal Responsive */
    .stockModal-overlay {
        padding: 10px;
        align-items: flex-start;
    }

    .stockModal {
        padding: 20px;
        height: 370px;
        width: 380px;
        border-radius: 12px;
        max-height: calc(100vh - 20px);
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .stockModal-close {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .add-to-cart-btn {
        padding: 10px 16px;
        font-size: 13px;
        margin: 12px 0;
    }

    /* Order Confirmation Modal Responsive */
    .order-confirmation-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .confirmation-header {
        padding: 20px;
    }

    .confirmation-icon {
        font-size: 2.5rem;
    }

    .confirmation-header h3 {
        font-size: 1.3rem;
    }

    .confirmation-content {
        padding: 20px;
    }

    .confirmation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .item-quantity,
    .item-price {
        align-self: flex-end;
    }

    .confirmation-actions {
        flex-direction: column;
        padding: 15px 20px 20px 20px;
    }

    .cancel-order-btn,
    .confirm-order-btn {
        width: 100%;
    }
}

/* Extra Small (<= 480px) */
@media only screen and (max-width: 480px) {
    .ORfood-items > div {
        width: 100%;
    }

    .ORfood-categories > button {
        flex: 1 1 100%;
    }

    .stockModal-overlay {
        padding: 5px;
        align-items: flex-start;
    }

    .stockModal {
        padding: 15px;
        border-radius: 8px;
        max-height: calc(100vh - 10px);
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .stockModal-close {
        top: 6px;
        right: 6px;
        width: 24px;
        height: 24px;
        font-size: 18px;
    }

    .add-to-cart-btn {
        padding: 8px 14px;
        font-size: 12px;
        margin: 10px 0;
    }
}

/* Clear Cart Button */
.ORclear-cart-section {
    padding: 10px 0;
    text-align: center;
}

.ORclear-cart-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    width: 100%;
}

.ORclear-cart-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.ORclear-cart-btn i {
    font-size: 16px;
}

/* ===== RESPONSIVE STYLES FOR CLEAR CART CONFIRMATION MODAL ===== */

/* Tablet Screens (≤1024px) */
@media only screen and (max-width: 1024px) {
    .clear-cart-confirmation-modal {
        max-width: 400px;
        width: 85%;
        padding: 30px 20px;
    }
    
    .clear-cart-confirmation-modal .confirmation-icon {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
    
    .clear-cart-confirmation-modal h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .clear-cart-confirmation-modal p {
        font-size: 1rem;
    }
    
    .clear-cart-confirmation-modal .confirmation-actions {
        gap: 12px;
        margin-top: 25px;
    }
    
    .clear-cart-confirmation-modal .cancel-btn,
    .clear-cart-confirmation-modal .confirm-btn {
        padding: 12px 24px;
        font-size: 15px;
        min-width: 120px;
    }
}

/* Mobile Screens (≤768px) */
@media only screen and (max-width: 768px) {


    .ORfood-categories button{
        height: 100px;
    }
    .ORfood-categories button p{
        font-size: 12px;
    }
    

    .ORicon-item{
        max-width: 100px;
        height: 250px;
    }

    .ORicon-item img{
        max-width: 50px;
        max-height: 50px;
    }

    .ORicon-item h4{
        font-size: 12px;
    }

    .ORicon-item p{
        font-size: 10px;
    }

    .ORicon-item button{
        font-size: 10px;
    }

    .clear-cart-confirmation-overlay {
        align-items: flex-start;
        padding: 20px 10px;
        padding-top: 50px;
        z-index: 10000;
        position: fixed !important;
    }
    
    .clear-cart-confirmation-modal {
        max-width: 350px;
        width: 90%;
        padding: 25px 20px;
        margin: 0 auto;
        margin-top: 20px;
    }
    
    .clear-cart-confirmation-modal .confirmation-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .clear-cart-confirmation-modal h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .clear-cart-confirmation-modal p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .clear-cart-confirmation-modal .confirmation-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .clear-cart-confirmation-modal .cancel-btn,
    .clear-cart-confirmation-modal .confirm-btn {
        padding: 14px 20px;
        font-size: 16px;
        min-width: 100%;
        width: 100%;
    }
}

/* Small Mobile Screens (≤480px) */
@media only screen and (max-width: 480px) {
    .clear-cart-confirmation-overlay {
        align-items: flex-start;
        padding: 10px 5px;
        padding-top: 30px;
        z-index: 10000;
        position: fixed !important;
    }
    
    .clear-cart-confirmation-modal {
        max-width: 320px;
        width: 95%;
        padding: 20px 15px;
        margin: 0 auto;
        margin-top: 10px;
    }
    
    .clear-cart-confirmation-modal .confirmation-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .clear-cart-confirmation-modal h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .clear-cart-confirmation-modal p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .clear-cart-confirmation-modal .confirmation-actions {
        gap: 8px;
        margin-top: 15px;
    }
    
    .clear-cart-confirmation-modal .cancel-btn,
    .clear-cart-confirmation-modal .confirm-btn {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 20px;
    }

    /* Even smaller cart elements for very small screens */
    .ORcart-header p {
        font-size: 12px; /* Consistent 12px for very small screens */
    }

    .ORcart-header i {
        font-size: 12px; /* Consistent 12px for very small screens */
    }

    .ORconfirm-btn {
        height: 22px; /* Slightly bigger height */
        width: 130px; /* Wider for very small screens */
        border-radius: 12px; /* Smaller border radius */
        padding: 1px 6px; /* Minimal padding */
    }

    .ORconfirm-btn p {
        font-size: 12px; /* 12px for very small screens confirm button */
        font-weight: 700; /* Bold for readability */
    }

    .ORtotal-box {
        font-size: 14px; /* 14px for very small screens total amount */
    }

    .ORclear-cart-btn {
        padding: 3px 6px; /* Even smaller clear cart button */
        font-size: 12px; /* Consistent 12px for very small screens */
        border-radius: 3px;
        margin: 3px 0;
    }
}

/* Extra Items Styling */
.extra-items {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.extra-items h4 {
    color: #6F4F37;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 12px 0;
    text-align: center;
}

.extra-items-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.extra-items-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #6F4F37;
    cursor: pointer;
    flex-shrink: 0;
}

.extra-items-checkbox label {
    cursor: pointer;
    margin: 0;
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.extra-items-list {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.extra-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #6F4F37;
    cursor: pointer;
}

.extra-item label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    color: #6F4F37;
    font-size: 14px;
}

.extra-item img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.extra-options {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.extra-options h5 {
    color: #6F4F37;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
}

.extra-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.extra-btn {
    padding: 10px 12px;
    background: #6F4F37;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.extra-btn:hover {
    background: #8B5A3C;
}

.quantity-selectors {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-top: 12px;
}

.quantity-selectors h6 {
    color: #6F4F37;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
}

.quantity-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
}

.quantity-selector span:first-child {
    font-weight: 500;
    color: #6F4F37;
    font-size: 13px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #6F4F37;
    background: white;
    color: #6F4F37;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #6F4F37;
    color: white;
}

.quantity-display {
    font-size: 14px;
    font-weight: 500;
    color: #6F4F37;
    min-width: 18px;
    text-align: center;
}

.confirm-extras-btn {
    width: 100%;
    padding: 12px 16px;
    background: #6F4F37;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 15px;
}

.confirm-extras-btn:hover {
    background: #8B5A3C;
}

/* Responsive design for extra items */
@media (max-width: 768px) {
    .extra-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .extra-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .quantity-selector {
        padding: 10px 12px;
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .confirm-extras-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* =================== EXTRACTED INLINE STYLES =================== */

/* Food items container */
.ORfood-items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* Product card styling */
.product-card {
    cursor: pointer;
    border-radius: 20px;
    background: #fff;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
}

/* Product card inner content */
.product-card-inner {
    padding: 15px;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 6px;
}

/* Product image in card */
.product-card-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* Clear cart button container */
.clear-cart-container {
    text-align: center;
}

/* Modal styling */
.modal-scrollable {
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Product info in modal */
.modal-product-info {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.modal-product-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.modal-product-name {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Size button styling */
.size-button {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    background: white;
    color: inherit;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.size-button:hover {
    border-color: #6F4F37;
    background: #f8f9fa;
}

.size-button.selected {
    border: 2px solid #6F4F37;
    background: #6F4F37;
    color: white;
}

/* Add to cart button */
.add-to-cart-button {
    width: 100%;
    padding: 12px 20px;
    background: #6F4F37;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin: 15px 0;
}

.add-to-cart-button:hover {
    background: #5a3d2a;
}

/* Utensils button styling */
.utensils-button {
    width: 100%;
    padding: 12px;
    background: white;
    color: #6F4F37;
    border: 2px solid #6F4F37;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 15px;
}

.utensils-button.selected {
    background: #6F4F37;
    color: white;
}

/* Additional request styling */
.additional-request-container {
    margin-top: 15px;
}

.additional-request-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.additional-request-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.additional-request-input:focus {
    border-color: #6F4F37;
}

.additional-request-input::placeholder {
    color: #999;
}

/* Confirm extras button */
.confirm-extras-button {
    width: 100%;
    padding: 10px;
    background: #6F4F37;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}

.confirm-extras-button:hover {
    background: #5a3d2e;
}

/* Cancel button */
.cancel-button {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cancel-button:hover {
    background: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Order confirmation buttons */
.cancel-order-button {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cancel-order-button:hover {
    background: #e0e0e0;
    border-color: #ccc;
    transform: translateY(-2px);
}

.confirm-order-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.confirm-order-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Payment success modal */
.payment-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.payment-success-modal {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.payment-success-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.payment-success-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4CAF50;
}

.payment-success-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.payment-success-button {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background: #4CAF50;
    color: white;
    transition: all 0.3s ease;
    min-width: 120px;
}

.payment-success-button:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Clear cart confirmation modal */
.clear-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.clear-cart-modal {
    background: white;
    border-radius: 20px;
    padding: 20px 15px;
    max-width: 450px;
    width: 80%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid #e0e0e0;
}

.clear-cart-header {
    margin-bottom: 30px;
    background: white;
}

.clear-cart-icon {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.clear-cart-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    margin: 0 0 15px 0;
}

.clear-cart-message {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.clear-cart-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.clear-cart-cancel-button {
    padding: 14px 28px;
    border: 2px solid #6F4F37;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: #6F4F37;
    transition: all 0.3s ease;
    min-width: 130px;
    outline: none;
}

.clear-cart-cancel-button:hover {
    background: #6F4F37;
    color: white;
    transform: translateY(-2px);
}

.clear-cart-confirm-button {
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: #dc3545;
    color: white;
    transition: all 0.3s ease;
    min-width: 130px;
    outline: none;
}

.clear-cart-confirm-button:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Animation keyframes */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}