.products {
  background-color: #ddc896;
}

.product-card {
  background: rgb(227.2374100719, 210.0899280576, 169.2625899281);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 350px;
  margin: 1rem;
  color: #536f2c;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-card .product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card .product-image:hover img {
  transform: scale(1.05);
}

.product-card .product-details {
  padding: 1.5rem;
}

.product-card .product-details h3 {
  color: #536f2c;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-card .product-details .product-description {
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-card .product-details .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card .product-details .product-footer .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ddc896;
}

.product-card .product-details .product-footer .readmore {
  background: #ddc896;
  color: #536f2c;
  border: solid 1px #536f2c;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.product-card .product-details .product-footer .readmore:hover {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
}

@media (max-width: 768px) {
  .product-card {
    margin: 0.5rem 0;
    max-width: 100%;
  }
}

.services {
  background-color: #ddc896;
}

.service-card {
  background: rgb(227.2374100719, 210.0899280576, 169.2625899281);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  max-width: 350px;
  margin: 1rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-card .product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.service-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card .product-image:hover img {
  transform: scale(1.05);
}

.service-card .service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #536f2c;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-card .service-description {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card .readmore {
  background: #ddc896;
  color: #536f2c;
  border: solid 1px #536f2c;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.service-card .readmore:hover {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
}

.service-card .btn-learn-more {
  background: #ddc896;
  color: #fff;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.service-card .btn-learn-more:hover {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
}

@media (max-width: 768px) {
  .service-card {
    margin: 0.5rem 0;
    max-width: 100%;
  }
}

section.product-detail-page {
  padding: 2rem 1rem;
  background: #ddc896;
}

section.product-detail-page button {
  font-family: "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  background-color: #ddc896;
  color: #536f2c;
  border: 1px solid #536f2c;
  padding: 0.75rem 1.5rem;
}

section.product-detail-page .price-label {
  color: #536f2c !important;
}

@media (max-width: 768px) {
  section.product-detail-page {
    padding: 1rem;
  }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ddc896;
  color: #536f2c;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
}

.back-link:hover {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
}

.product-detail-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: #ddc896;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }
}

.product-images .gallery-title {
  margin-bottom: 1rem;
  color: #ddc896;
}

.image-gallery .main-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-gallery .main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-gallery .thumbnail-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
}

.image-gallery .thumbnail-container .thumbnail {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.image-gallery .thumbnail-container .thumbnail:hover {
  border-color: #ddc896;
  transform: scale(1.05);
}

.image-gallery .thumbnail-container .thumbnail.active {
  border-color: #ddc896;
  box-shadow: 0 0 8px rgba(221, 200, 150, 0.5);
}

.image-gallery .thumbnail-container .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: solid 1px #ddd;
}

.product-info .product-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #536f2c;
}

.product-info .product-price-container {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-info .product-price-container .price-label {
  font-size: 1rem;
  color: #999;
}

.product-info .product-price-container .product-price {
  font-size: 2rem;
  font-weight: bold;
  color: #ddc896;
}

.product-info .product-description {
  margin-bottom: 2rem;
}

.product-info .product-description h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #ddc896;
}

.product-info .product-description p {
  line-height: 1.8;
  color: #536f2c;
  white-space: pre-line;
}

.product-info .btn-buy {
  width: 100%;
  padding: 1rem 2rem;
  background: #ddc896;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.product-info .btn-buy:hover {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(221, 200, 150, 0.3);
}

.error-message {
  text-align: center;
  padding: 3rem;
  font-size: 1.25rem;
  color: #999;
}

.ar .thumbnail-container {
  direction: rtl;
}

* {
  box-sizing: border-box;
  white-space: pre-wrap;
}

.expanded-image-section {
  width: 100%;
  padding: 2rem 1rem;
  background: #ddc896;
  text-align: center;
}

.expanded-image-section .expanded-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 8px;
  font-size: 1.2rem;
  animation: pulse 1.5s infinite;
  z-index: 10;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.home {
  background-color: #ddc896;
}

.aboutus {
  background-color: #ddc896;
}

.app-container {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ddc896;
  min-height: 100vh;
  color: #536f2c;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  direction: ltr;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.app-container.ar {
  direction: rtl;
  text-align: right;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 0.5rem 1rem;
  background: #ddc896;
  color: #536f2c;
  width: 100%;
  box-sizing: border-box;
}

.main-nav {
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}

.main-nav .hamburger {
  display: none;
  width: 2rem;
  height: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  z-index: 1002;
  cursor: pointer;
  color: #000000;
}

.main-nav .hamburger span {
  display: block;
  width: 2rem;
  height: 0.25rem;
  margin: 0.3rem 0;
  background: #000000;
  border-radius: 2px;
  transition: 0.3s;
}

.main-nav .hamburger.open span:nth-child(1) {
  transform: translateY(0.55rem) rotate(45deg);
}

.main-nav .hamburger.open span:nth-child(2) {
  opacity: 0;
}

.main-nav .hamburger.open span:nth-child(3) {
  transform: translateY(-0.55rem) rotate(-45deg);
}

.main-nav .menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav .menu-list.en {
  justify-content: flex-start;
}

.main-nav .menu-list.ar {
  justify-content: flex-start;
}

.main-nav .menu-list li {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  color: #536f2c;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border-radius: 4px;
  line-height: 1.5;
}

.main-nav .menu-list li.active {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
}

.main-nav .menu-list li:hover {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
  color: rgb(55.6903225806, 74.4774193548, 29.5225806452);
}

.main-nav .menu-list li.submenu-container {
  padding: 0;
  background: transparent;
}

.main-nav .menu-list li.submenu-container:hover {
  background: transparent;
}

.main-nav .menu-list li.submenu-container.active {
  background: transparent;
}

@media (max-width: 768px) {
  .main-nav .hamburger {
    display: flex;
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    right: auto;
    outline: none;
    box-shadow: none;
    background: transparent !important;
    border: none !important;
    padding: 0;
    z-index: 1300;
  }

  .app-container.ar .main-nav .hamburger {
    left: auto;
    right: 1rem;
  }

  .main-nav .menu-list {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: auto;
    height: auto;
    min-height: 220px;
    width: 70vw;
    max-width: 320px;
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1rem 1rem 1rem;
    z-index: 1200;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    background: #ddc896 !important;
    border-radius: 12px;
    transform: translateX(-100%);
  }

  .main-nav .menu-list li {
    width: 100%;
    text-align: left;
    padding: 0.75rem 2rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
  }

  .main-nav .menu-list li .submenu-trigger {
    padding: 0;
  }

  .main-nav .menu-list.ar li {
    text-align: right;
    padding: 0.75rem 2rem;
  }

  .main-nav .menu-list.open.en {
    display: flex;
    left: 1rem;
    right: auto;
    transform: translateX(0);
  }

  .main-nav .menu-list.open.ar {
    display: flex;
    left: auto;
    right: 1rem;
    transform: translateX(0);
  }

  .main-nav .submenu-container {
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
  }

  .main-nav .submenu-container .submenu-trigger {
    width: 100%;
    text-align: left;
    padding: 0.75rem 2rem;
    margin-bottom: 0;
    border-radius: 6px;
  }

  .main-nav .submenu-container .submenu-list {
    position: static;
    background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
    box-shadow: none;
    margin-top: 0.25rem;
    margin-left: 1rem;
    min-width: auto;
    width: calc(100% - 1rem);
    border-radius: 4px;
  }

  .main-nav .submenu-container .submenu-list li {
    padding: 0.5rem 1rem;
  }

  .app-container.ar .main-nav .submenu-container .submenu-list {
    margin-left: 0;
    margin-right: 1rem;
  }
}

h1 {
  white-space: pre-wrap;
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}

.submenu-container {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}

.submenu-container .submenu-trigger {
  background: transparent;
  border: none;
  color: #536f2c;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
  margin: 0;
  border-radius: 4px;
  line-height: 1.5;
}

.submenu-container .submenu-trigger .arrow {
  display: inline-block;
  transition: transform 0.3s;
  font-size: 0.75rem;
}

.submenu-container .submenu-trigger .arrow.open {
  transform: rotate(180deg);
}

.submenu-container .submenu-trigger:hover {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
  color: rgb(55.6903225806, 74.4774193548, 29.5225806452);
}

.submenu-container .submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgb(214.7625899281, 189.9100719424, 130.7374100719);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 1100;
}

.submenu-container .submenu-list li {
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.submenu-container .submenu-list li:hover {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
}

.submenu-container .submenu-list li.active {
  background: rgb(202.2877697842, 169.7302158273, 92.2122302158);
}

.app-container.ar .submenu-container .submenu-list {
  left: auto;
  right: 0;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 1.5rem !important;
  cursor: default !important;
  background: transparent !important;
}

.lang-switch:hover {
  background: transparent !important;
}

.lang-switch button {
  background: #343a40;
  color: #000;
  border: none;
  margin: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  width: 40px;
  height: 28px;
  min-width: 40px;
  min-height: 28px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  font-size: 0.75rem;
  font-weight: 600;
  box-sizing: border-box;
}

.lang-switch button.active {
  background: rgb(202.2877697842, 169.7302158273, 92.2122302158);
  color: #1e7e34;
  opacity: 1;
}

.lang-switch button:not(.active) {
  color: #f8f9fa;
  background: rgb(237.7064220183, 238.8990825688, 239.7935779817);
  color: #000;
  opacity: 0.7;
}

main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
}

@media (max-width: 768px) {
  main {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
  }
}

section {
  background: #000000;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  min-width: 0;
  max-width: 100%;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  section {
    padding: 1rem;
  }
}

section h2 {
  color: #ddc896;
  margin-bottom: 0.5rem;
}

section h3 {
  color: #ddc896;
  margin-bottom: 1rem;
  margin-top: 0;
}

section p {
  color: #536f2c;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}

section a {
  color: #536f2c;
  text-decoration: none;
  transition: opacity 0.2s;
}

section a:hover {
  color: #000000;
}

section .map-link {
  display: inline-block;
  background: #ddc896;
  color: #536f2c;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 500;
}

section .map-link:hover {
  background: rgb(208.5251798561, 179.8201438849, 111.4748201439);
}

.products-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

@media (max-width: 768px) {

  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.footer {
  background: #ddc896;
  color: #536f2c;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}

.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer .footer-content h3 {
  color: #536f2c;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer .footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.footer .footer-content .contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer .footer-content .contact-info {
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 2rem;
  }
}

.footer .footer-content .contact-info .contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
  flex: 0 0 calc(50% - 0.5rem);
}

@media (min-width: 768px) {
  .footer .footer-content .contact-info .contact-item {
    flex: 1;
    gap: 0.5rem;
  }
}

.footer .footer-content .contact-info .contact-item:nth-child(3) {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .footer .footer-content .contact-info .contact-item:nth-child(3) {
    flex: 1;
  }
}

.footer .footer-content .contact-info .contact-item .contact-label {
  font-weight: 600;
  color: #536f2c;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer .footer-content .contact-info .contact-item .contact-label {
    font-size: 1rem;
  }
}

.footer .footer-content .contact-info .contact-item .contact-value {
  color: #536f2c;
  font-size: 0.8rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .footer .footer-content .contact-info .contact-item .contact-value {
    font-size: 0.95rem;
  }
}

.footer .footer-content .contact-info .contact-item .contact-value:hover {
  opacity: 0.8;
}

.footer .footer-content .contact-info .contact-item a.contact-value {
  cursor: pointer;
}

.footer .footer-content .contact-info .contact-item a.contact-value:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */