/* ============================
   Base Style
   ============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  direction: rtl;
}

body {
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ============================
   Order Registration Box
   ============================ */
.order-registration-box {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 15px;
  margin: 20px auto;
  padding: 15px;
  width: 95%;
  max-width: 900px;
  animation: pop 0.5s ease forwards;
}
@keyframes pop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.order-registration-title h4 {
  color: #000;
  padding-bottom: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  font-size: 18px;
}

.description-title p,
.description-section-title h3,
.description-section-text {
  max-width: 800px;
  width: 100%;
  margin: 10px auto;
  color: #555;
}
.description-section-text svg {
  margin: 0px 10px;
  color: blue;
}

/* ============================
   Highlight Boxes
   ============================ */
.description-center-title {
  font-weight: bold;
  color: black;
  text-align: center;
  margin: 10px auto;
}

.description-center-title-P {
  text-align: center;
  padding: 5px 15px;
  background: #f7ff2b;
  border-radius: 10px;
  margin: 10px auto;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* ============================
   Social Buttons
   ============================ */
.description-section-social-media {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#social-media,  
#social-media-T {
  background: #537ee2;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  margin: 10px;
  transition: 0.3s;
}

#social-media:hover,
#social-media-T:hover {
  background-color: blue;
}

/* ============================
   Error Box
   ============================ */
.description-error {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 15px;
  margin: 20px auto;
  padding: 60px 20px;
  width: 95%;
  max-width: 600px;
  text-align: center;
}

.description-error h3 {
  font-size: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid red;
}

/* ============================
   SweetAlert Buttons
   ============================ */
.swal-confirm-button,
.swal2-cancel-button {
  display: inline-block;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  color: white;
  cursor: pointer;
}

.swal-confirm-button {
  background: red;
}
.swal-confirm-button:hover {
  box-shadow: 0 0 10px red;
}

.swal2-cancel-button {
  background: green;
}
.swal2-cancel-button:hover {
  box-shadow: 0 0 10px green;
}

/* ============================
   Footer
   ============================ */
footer {
  background: #636e72;
  color: white;
  margin-top: 40px;
}

.right-footer,
.right-footer2,
.left-footer {
  padding: 20px;
}

.left-footer {
  background: white;
  color: black;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.socials a {
  color: black;
  font-size: 26px;
  transition: 0.2s;
}
.socials a:hover {
  transform: scale(1.2);
}

.bottom-footer {
  text-align: center;
  background: #2d3436;
  padding: 15px;
  color: #fff;
}

/* ============================
   Loading Screen
   ============================ */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s;
}

#loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid rgba(0,0,0,0.2);
  border-top: 6px solid #00ffcc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================
   Mobile Responsive
   ============================ */
.menu-wrapper { display: none; }

@media (max-width: 768px) {
  .menu-wrapper {
    display: block;
  }

  .description-title p,
  .description-section-text,
  .description-section-text li {
    max-width: 95%;
  }

  #social-media {
    width: 90%;
    display: block;
    position: unset;
  }
}