    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(135deg, #D7CCC8 0%, #BCAAA4 100%);
      padding-bottom: 80px;
    }

    .header {
      background: linear-gradient(135deg, #6F4E37 0%, #8B4513 100%);
      color: white;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header h1 {
      font-size: 1.8em;
      margin-bottom: 5px;
    }

    .header p {
      opacity: 0.9;
      font-size: 0.9em;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 20px;
    }

    .menu-item {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      transition: transform 0.2s;
    }

    .menu-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

    .menu-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .menu-content {
      padding: 15px;
    }

    .menu-item h3 {
      color: #333;
      margin-bottom: 8px;
      font-size: 1.2em;
    }

    .menu-item p {
      color: #666;
      font-size: 0.9em;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .price {
      color: #6F4E37;
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 12px;
    }

    .add-btn {
      width: 100%;
      background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s;
    }

    .add-btn:hover {
      transform: scale(1.05);
    }

    .add-btn:active {
      transform: scale(0.98);
    }

    .cart-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: linear-gradient(135deg, #6F4E37 0%, #4E342E 100%);
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      box-shadow: 0 5px 20px rgba(111, 78, 55, 0.5);
      cursor: pointer;
      transition: all 0.3s;
      z-index: 1000;
    }

    .cart-float:hover {
      transform: scale(1.1);
    }

    .cart-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #D84315;
      color: white;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7em;
      font-weight: bold;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .modal.show {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 15px;
      width: 90%;
      max-width: 500px;
      max-height: 80vh;
      overflow-y: auto;
      padding: 25px;
	  width: calc(100% - 20px);
	  max-width: calc(100vw - 20px);

    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .modal-header h2 {
      color: #333;
    }

    .close-btn {
      background: none;
      border: none;
      font-size: 1.5em;
      cursor: pointer;
      color: #999;
    }

    .cart-item {
      display: block;
      gap: 15px;
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
    }

    .medium .cart-item, .full .cart-item {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
	  max-width: 100%;
	  width: 100%;
    }
	
    .medium .cart-item img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
    }
    .cart-item img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
    }

    .cart-item-info {
      flex: 1;
	  text-align: center;
    }

    .cart-item-info h4 {
      color: #333;
      margin-bottom: 5px;
    }

    .cart-item-price {
      color: #6F4E37;
      font-weight: bold;
    }

    .quantity-control {
      display: flex;
      align-items: center;
	  justify-content: center !important;
      gap: 12px;
      margin-top: 8px;
    }

    .quantity-btn {
      background: #D7CCC8;
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      color: #4E342E;
    }
.full .remove-btn .text{ display: none;}	
    .full .quantity-btn {	
      width: 32px;
      height: 32px;	
    }

    .quantity-btn:hover {
      background: #BCAAA4;
    }

    .remove-btn img{width: 18px!important;}
    .remove-btn {
      background: #D84315;
      color: white;
      border: none;
      padding: 5px 10px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 0.8em;
      margin-top: 12px;
    }

    .cart-total {
      background: #EFEBE9;
      padding: 15px;
      border-radius: 8px;
      margin: 20px 0;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      color: #4E342E;
    }

    .time-select {
      margin: 20px 0;
    }

    .time-select label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      color: #333;
    }

    .time-select input {
width: 100%;
max-width: calc(100% - 100px);
  padding: 12px;
  border: 2px solid #A1887F;
  border-radius: 8px;
  font-size: 3em;
  background: white;
  text-align: center;
    }

    .time-select input:focus {
      outline: none;
      border-color: #6F4E37;
    }

    .order-btn {
      width: 100%;
      background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
      color: white;
      border: none;
      padding: 15px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s;
    }

    .order-btn:hover {
      transform: scale(1.02);
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .order-btn:disabled {
      background: #ccc;
      cursor: not-allowed;
    }

    .empty-cart {
      text-align: center;
      padding: 40px 20px;
      color: #999;
    }

    .empty-cart-icon {
      font-size: 4em;
      margin-bottom: 15px;
    }

#cartItems{width: 100%;
max-width: 100%;}
    @media (max-width: 600px) {
.medium .cart-item img, .full .cart-item img {
      max-width: 150px!important;

    }	
      .menu-grid {
        grid-template-columns: 1fr;
      }

      .header h1 {
        font-size: 1.5em;
      }

      .cart-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
      }
    }