@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600&display=swap');

.logo-block {
    text-align: center;
    max-width: 90%;
}

.logo-block img {
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Adjust max-height as needed */
}

@media (max-width: 768px) {
    .logo-block img {
        max-height: 150px; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .logo-block img {
        max-height: 100px; /* Adjust for mobile screens */
    }
}
button {
    padding: 12px 24px;
    background: #d4af37; /* light gold */
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #b89b30; /* darker gold */
}

.popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.popup.show {
    transform: translateY(0);
}

.popup h2 {
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.popup p {
    color: #777;
    text-align: center;
    margin: 0 20px;
    font-size: 1rem;
}

.close-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: #4a4a4a;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #b89b30; /* gold highlight */
}

form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 5px;
}

select, input, textarea {
    width: 90%;
    padding: 12px;
    border: none;
    text-align: center;
    border-radius: 12px;
    background: #f4f4f4;
    font-size: 14px;
    color: #4a4a4a;
}

select:focus, input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 8px #d4af37;
}

.quantity-control {
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    background: #f4f4f4;
    border: 1px solid #d4af37;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-control button:hover {
    background: #f2e6d9;
}

.checkbox-group {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f4f4f4;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkbox-group label:hover {
    background: #f4f4f4;
}

textarea {
    resize: none;
    height: 80px;
}


input[type="checkbox"] {
    padding: 8px;
}
/* Remove outline and add shadow to the checkbox square */
input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 8px #d4af37;
}

/* Style for the checked state */
input[type="checkbox"] {
    appearance: none; /* Hide the default checkbox styling */
    width: 15px; /* Set size */
    height: 15px;
    border: 2px solid #d4af37;
    border-radius: 4px; /* Optional: rounded corners */
    background-color: transparent;
    position: relative;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #d4af37; /* Gray inside when ticked */
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    width: 6px;
    height: 12px;
    border: solid #f4f4f4; /* Gold checkmark */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.card {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 10%;
    max-width: 400px;
    width: 80%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.card p {
    text-align: center;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 239, 213, 0.3), transparent);
    z-index: -1;
    border-radius: 24px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #b16a00;
}

.order-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-item {
    background: #fff8e1;
    border: 1px solid #ffd966;
    border-radius: 16px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #4a4a4a;
}