
h2 {
    font-size: 1.5em; /* Yazı boyutunu küçültün */
    font-weight: bold; /* Yazı kalınlığını ayarlayın (örneğin normal, bold vb.) */
    color: #333; /* Renk ekleyin */
}

.small-heading {
    font-size: 1.8em; /* Küçük bir boyut seçin */
    font-weight: bold; /* Kalınlık ayarı */
    color: #333; /* Renk ekleyin */
}

.slogan {
	/* font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif"; */
    font-size: 1.2em; /* Küçük bir boyut seçin */
    font-weight: bold; /* Yazı kalınlığını ayarlayın (örneğin normal, bold vb.) */
    color: #333; /* Renk ekleyin */
}


/* Pop-up pencere stil */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; /* Genişlik */
    height: auto;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow: auto;
}

/* Pop-up içeriği */
.modal-content {
    position: relative;
    padding: 20px;
    border: 1px solid #ddd;
}

/* Kapatma düğmesi */
#closeModal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Form düzeni */
.form-container {
    display: flex;
    gap: 30px;  /* Sütunlar arasındaki boşluk */
	
}

/* Sol ve Sağ Sütun Stilleri */
.left-column, .right-column {
    flex: 1;
    padding: 10px;
}

/* Label ve input alanlarının düzeni */
label {
    display: block;
    font-size: 14px;  /* Yazı boyutu */
    margin-bottom: 5px;
	font-weight: bold;
}

input, textarea, select, button {
    width: 100%;
    padding: 5px;
    margin-bottom: 15px;
    font-size: 14px;
	border-radius: 4px;
}

input, textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Listbox düzeni */
.listbox-container {
    position: relative;
}

.listbox-header {
    display: flex;
    justify-content: space-between;
    background: #f1f1f1;
    padding: 5px;
	font-weight: bold;
}

select#orderList {
    width: 100%;
    height: 150px;
}

/* Eylem butonları düzeni */
.action-buttons button {
    width: 48%;
    margin-right: 2%;
    margin-bottom: 10px; 
	border-radius: 4px;
}

/* Gönderme düğmesi */
#sendOrderBtn {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#sendOrderBtn:hover {
    background-color: #0056b3;
}

/* Form alt kısmındaki butonlar */
.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cart-icon {
  display: flex;
  justify-content: flex-end; /* Sayıyı sola yerleştir */
/*  align-items: center; */
  font-size: 34px;
}

#cart-count {
  margin-right: 10px; /* Sayı ile ikon arasındaki mesafe */
}


/* Responsive Tasarım İçin Medya Sorguları */
@media (max-width: 768px) {
    .form-content {
        flex-direction: column; /* Sütunları alt alta yerleştir */
    }
    .left-column, .right-column {
        flex: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    #orderFormPopup {
        width: 100%;
        height: 100%;
        padding: 10px;
    }
    .form-header h2 {
        font-size: 18px;
    }
    .close-btn {
        font-size: 20px;
    }
}
