@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Regular.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Bold.ttf') format('truetype');
  font-weight: bold;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  direction: rtl;
}
*{
  font-family: 'Cairo';
}
.container {
  padding: 15px;
  max-width: 500px;
  margin: auto;
}

.carousel {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.carousel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-img.active {
  opacity: 1;
  z-index: 1;
}

h1 {
  font-size: 24px;
  text-align: center;
}

.desc {
  text-align: center;
  margin: 10px 0;
}



.options {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: space-around;
}

.option-btn {
  padding: 10px;
  background: #eee;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.2s all linear;
  color: #1e1e1e;
  font-size: 18px;
  border: 1px solid #1e1e1e;
}
.options-active{
    border: 1px solid #2e8b57 !important;
    background-color: #2e8b57 !important;
    color: white !important;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  width: 95%;
}

.summary {
  font-size: 16px;
  margin: 10px 0;
}

button[type="submit"] {
  padding: 12px;
  background-color: #2e8b57;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
#order-form{
    border: 1px solid;
    color: black;
    padding: 15px;
}
.summary p{
    margin: 0;
}
.countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.segment {
  background-color: #2e8b57; /* Green */
  color: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  text-align: center;
  min-width: 60px;
}

.segment .label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.segment .value {
  font-size: 20px;
  font-weight: bold;
}
.top-header h1{
    box-shadow: 0px 0px 9px 0px gray;
    margin: 0;
    padding: 10px;
}
.bottom-footer p{
    margin: 0;
    text-align: center;
    padding: 4px;
    background-color: #2e8b57;
    color: white;
    box-shadow: 0px 0px 5px 0px gray;
}