@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;
  margin-bottom: 42px;
}
*{
  font-family: 'Cairo';
}
.container {
  padding: 15px;
  max-width: 500px;
  margin: auto;
}

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

.carousel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  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;
  margin-top: 0px;
}

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



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

.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;
  width: 47%;
}
.option-btn:nth-child(3) {
    width: 100% !important;
}
.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;
}



/*thankyou page*/
body {
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
  background-color: #f6f9f8;
  direction: rtl;
}

.thank-you-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.thank-you-box {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 40px 20px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.thank-you-box h1 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #28a745;
}

.thank-you-box p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #333;
}

.checkmark {
  font-size: 48px;
  color: #28a745;
  margin-bottom: 25px;
}

.home-button {
  display: inline-block;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.home-button:hover {
  background-color: #218838;
}

.footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 5px 0px gray;
    padding: 5px 0px;
}
.footer-links a{
    color: #1e1e1e;
    text-decoration: none;
}
/*adding the code for the contact us page */
.contact-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.contact-form {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 30px 20px;
  max-width: 600px;
  width: 100%;
}

.contact-form h1 {
  font-size: 24px;
  color: #28a745;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form label {
  font-size: 15px;
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: 'Cairo', sans-serif;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #218838;
}
.bottom-button-fixed{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100000;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #1e1e1e;
    padding: 10px 0px;
    height: 42px;
}
.bottom-button-fixed button{
    background-color: #2e8b57;
    color: white;
    border-radius: 5px;
    box-shadow: none;
    border: 0;
    padding: 5px 14px;
    font-size: 16px;
    font-weight: bold;
    
}
.tot-divider{
    width: 100%;
    height: 1px;
    background-color: black;
    margin-top: 7px;
}
.highlight-price {
  color: #FFD700; /* Yellow gold color */
  font-weight: bold;
}
