body {
    background: linear-gradient(to right, #ff6600, #000000);
    font-family: Arial, sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.container, .products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    padding: 10px;
}

.card {
    border: 1px solid #ff6600;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
    border-radius: 12px;
    background: linear-gradient(to right, #ff6600, #000000);
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.card img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.card h3 {
    margin: 0;
    padding: 8px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ff6600;
    font-family: cursive;
}

.header {
    background: #000000;
    color: #ff6600;
    padding: 10px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.modal-content {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #000000, #ff6600);
    padding: 20px;
    position: relative;
}

.modal-header {
    border-bottom: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ff6600;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.modal-body img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.modal-body .product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(255, 102, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.modal-body .product-item img {
    width: 100px;
    height: auto;
    border-radius: 8px;
}

.modal-body .product-item strong {
    font-size: 12px;
    color: #ffffff;
}

.quantity {
    width: 30px;
    margin-right: 10px;
    text-align: center;
    background: #eae4e4;
    border-radius: 6px;
    color: black;
}

.add-to-cart {
    width: 20%;
    color: #ffffff;
    background: linear-gradient(to right, #ff6600, #000000);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.add-to-cart:hover {
    background-color: #cc5200;
}

.total-price {
    font-weight: bold;
    font-size: 13px;
    color: #ffffff;
    margin-top: 10px;
}

#cart {
    position: fixed;
    bottom: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: linear-gradient(to right, #000000, #ff6600);
    padding: 15px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 1000;
    text-align: center;
    color: #ffffff;
}

#cart-icon {
    position: fixed;
    top: 10px;
    left: 10px;
    cursor: pointer;
    z-index: 1001;
    background: url('sepet.gif') no-repeat center center;
    background-size: contain;
    width: 50px;
    height: 44px;
    border: none;
    border-radius: 25%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #000000;
    padding: 10px;
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff6600;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

#cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

#cart-items li {
    padding: 5px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cart-total {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

#confirm-button {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: white;
    background-color: #ff6600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#confirm-button:hover {
    background-color: #cc5200;
}

#notification {
    position: fixed;
    top: 60px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: none;
    z-index: 1100;
}

.btn-primary {
    color: #000000 !important;
    background-color: #ff6600 !important;
    border-color: #000000 !important;
}

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #ff6600, #000000);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loading-screen img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
}

.quantity-dropdown {
    appearance: none;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    width: 47px;
    transition: all 0.3s ease;
    outline: none;
}

.quantity-dropdown:hover {
    background-color: #e0e0e0;
}

.quantity-dropdown:focus {
    border-color: #ff6600;
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.6);
}

.quantity-dropdown-container {
    display: inline-block;
    position: relative;
}

.quantity-dropdown-container::after {
    content: '\25BC';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
}

#garson-cagir-button {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1000;
    padding: 9px 5px;
    background-color: #ff6600;
    color: #000000;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#garson-cagir-button:hover {
    background-color: #cc5200;
}

.footer {
    background-color: #000000;
    color: #ff6600;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 12px;
}
.product-dropdown {
  width: 50%; /* Dropdown genişliği */
  height: 30px; /* Dropdown yüksekliği */
  font-size: 14px; /* Yazı boyutu */
  padding: 5px; /* İçerik boşluğu */
  border: 1px solid #ccc; /* Kenarlık */
  border-radius: 5px; /* Köşe yuvarlama */
  background-color: #ffffff; /* Arka plan rengi */
  color: #000000; /* Yazı rengi */
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Etkileşim efekti */
}

.product-dropdown:focus {
  outline: none; /* Focus'ta çerçeve kaldır */
  border-color: #ff6600; /* Odakta kenarlık rengi */
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.6); /* Hafif gölge */
}

.product-dropdown:hover {
  background-color: #f3f3f3; /* Hover'da açık gri arka plan */
}
