@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "roboto", "cairo";
}

/* 14866D */
:root {
  --main-color: #14866D;
  --black-color: #000;
  --white-color: #fff;
  --text-color: #4a5565;
  --bg-color: #f1f5f9;
  --bg_2-color: #101e3a;
  --border-color: #e7e7e7;

  /* New */
  --new-bg: #eff6ff;
  --new-color: #4a8bff;
  --new-border: #b2d3ff;

  /* Success */
  --success-bg: #eafff1;
  --success-color: #2bc958;
  --success-border: #b4ffcd;

  /* Danger */
  --danger-bg: #ffeef3;
  --danger-color: #DD0E1C;
  --danger-border: #ffcbda;

  /* Pending */
  --pending-bg: #fff8dd;
  --pending-color: #f6b107;
  --pending-border: #fdeba2;
}


body {
  background-color: var(--bg-color);
  direction: rtl;
}

body.landing-body {
  background: linear-gradient(135deg, #1a1a1d, #2c3e50);
  background-size: 500% 500%;
  animation: animatedGradient 5s ease infinite;
  min-height: 100vh;
  direction: rtl;
}

@keyframes animatedGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.required {
  color: red;
}

.loading {
  opacity: .5;
  pointer-events: none;
}

.order-color-one {
  background-color: var(--pending-bg);
  color: var(--pending-color);
  border: 1px solid var(--pending-border);
  padding: 3px 10px;
  border-radius: 5px;
}

.order-color-two {
  background-color: var(--success-bg);
  color: var(--success-color);
  border: 1px solid var(--success-border);
  padding: 3px 10px;
  border-radius: 5px;
}

.order-color-three {
  background-color: #28b463;
  color: var(--white-color);
  padding: 5px 10px;
  border-radius: 5px;
}

.order-color-four {
  background-color: var(--danger-bg);
  color: var(--danger-color);
  border: 1px solid var(--danger-border);
  padding: 3px 10px;
  border-radius: 5px;
}

/* :: Styling Table :: */
.table-container {
  width: 100%;
  padding: 20px;
  overflow-x: auto;
  background-color: var(--white-color);
  border-radius: 10px;
}

.table-container table {
  border-collapse: collapse;
  width: 100%;
}

.table-container table thead tr td {
  color: var(--black-color);
  font-weight: 600;
  padding: 0 10px 10px 10px;
  font-size: 16px;
}

.table-container table tbody tr td {
  padding: 10px;
  color: var(--text-color);
  font-size: 14px;
}

.table-container table tbody tr td .action-button {
  text-decoration: none;
  border: none;
  outline: none;
  background-color: transparent;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: 0.2s;

  i {
    color: var(--text-color);
    font-size: 17px;
  }
}

.table-container table tbody tr td .action-button:hover {
  background-color: var(--hover-color);
}

.table-container table tbody tr {
  transition: 0.2s;
}

@media(max-width: 570px) {
  .table-container table {
    width: max-content;
  }
}

.page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-content {
  min-height: 61vh;
}

.page-content .box-title {
  margin: 0 auto;
  font-size: 25px;
  position: relative;
  width: fit-content;
  z-index: 1;

  span {
    color: var(--main-color);
  }
}

.page-content .box-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
  z-index: -1;
}


/* :: Styling Header :: */
.header .disabled-header {
  text-align: center;
  background-color: var(--main-color);
  padding: 10px 0;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  font-size: 15px;
}

@media(max-width: 570px) {
  .header .disabled-header {
    font-size: 14px;
  }
}

.header .header-content {
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.03);
  padding: 10px 0;
  position: relative;
}

.header .header-content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0;
}

@media(max-width: 570px) {
  .header .header-content .container {
    padding: 0 !important;
  }
}

.header .header-content .left-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .header-content .left-header .cart-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-color);
  border: none;
  outline: none;
  color: var(--text-color);
  position: relative;

  span {
    position: absolute;
    top: -3px;
    right: -1px;
    width: 16px;
    height: 16px;
    font-size: 11px;
    background-color: var(--main-color);
    border-radius: 50%;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
  }

  a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    width: 100%;
    height: 100%;
  }
}

.header .header-content .left-header .search-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-color);
  border: none;
  outline: none;
  color: var(--text-color);
}

.header .header-content .left-header .search-bar {
  position: absolute;
  top: 150%;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  left: 0;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  transition: .1s;
}

.header .header-content .left-header .search-bar.show {
  top: 100%;
  pointer-events: all;
  opacity: 1;
  z-index: 10;
}

.header .header-content .left-header .search-bar form {
  background-color: var(--white-color);
  padding: 0 10px;
  border-radius: 4px;
}

.header .header-content .left-header .search-bar input {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 14px;
}

.header .header-content .left-header .search-bar button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  background-color: transparent;
  border: none;
  outline: none;
}

.header .header-content .right-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header .header-content .right-header .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 50px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.header .header-content .right-header .links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .header-content .right-header .links li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: .2s ease-in-out;
}

.header .header-content .right-header .links li a:hover {
  color: var(--main-color);
}

@media (max-width: 768px) {

  /* Tablet */
  .header .header-content .left-header .search-bar {
    padding: 8px 20px;
  }

}

@media (max-width: 570px) {

  /* Mobile */
  .header .header-content .right-header .logo {
    display: none;
  }

  .header .header-content {
    padding: 10px 20px;
  }
}


/* :: Styling Index Page :: */

/* Banner Container Styles */
.home-page .slider-banners .banner-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  /* aspect-ratio: 16 / 9; */
  /* Ensures responsive height */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 16 / 9) {
  .home-page .slider-banners .banner-container {
    height: auto;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
  }

  .home-page .slider-banners .banner-container img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* Banner Image Styles */
.home-page .slider-banners .banner-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Banner Navigation Buttons */
.home-page .slider-banners .banner-container button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: var(--white-color);
  outline: none;
  cursor: pointer;
  z-index: 10;
  border: none;
  border-radius: 5px;
  transition: 0.2s;
}

/* Prev & Next Button Positioning */
.home-page .slider-banners .banner-container .custom-prev-banner {
  left: 10px;
}

.home-page .slider-banners .banner-container .custom-next-banner {
  right: 10px;
}

/* Tablet */
@media (max-width: 768px) {
  .home-page .slider-banners .banner-container button {
    width: 30px;
    height: 30px;
  }

  .home-page .slider-banners .banner-container button i {
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 425px) {
  .home-page .slider-banners .banner-container button {
    width: 20px;
    height: 20px;
  }

  .home-page .slider-banners .banner-container button i {
    font-size: 12px;
  }
}



.home-page .store-properties .property {
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: .2s;
  height: 100%;
}

.home-page .store-properties .property .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 30px;
  opacity: .2;
  position: relative;
  transition: .2s;
}

.home-page .store-properties .property:hover {
  transform: translateY(-10px);

  .icon {
    opacity: 1;
    color: var(--main-color);
  }
}

.home-page .store-properties .property .icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #bbb;
  left: -20px;
  top: 0;
}

.home-page .store-properties .property .info {
  text-align: center;
  color: var(--black-color);
}

.home-page .store-properties .property span {
  color: var(--text-color);
  font-size: 14px;
  text-align: center;
  display: block;
}

@media (max-width: 570px) {
  /* Mobile */

  .home-page .store-properties {
    display: none;
  }

  .container {
    padding: 0 20px !important;
  }

  .home-page .store-properties .property {
    flex-direction: column;
    height: 100%;
  }

  .home-page .store-properties .property .icon::before {
    display: none;
  }
}

.home-page .category-box .category {
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  transition: .2s;
}

.home-page .category-box .category:hover {
  transform: translateY(-10px);

  .category-name {
    color: var(--main-color);
  }
}

.home-page .category-box .category .category-image {
  width: 50px;
  height: 50px;
  margin: 0 auto;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;

  }
}

.home-page .category-box .category .category-name {
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 10px;
}

@media(max-width: 570px) {
  .home-page .category-box .category {
    padding: 10px;
  }

  .home-page .category-box .category .category-image {
    display: none;
  }

  .home-page .category-box .category .category-name {
    font-size: 14px;
    margin: 0;
  }
}

.products-box .product {
  background-color: var(--white-color);
  border-radius: 10px;
  display: block;
  transition: .2s;
  border: 1px solid var(--white-color);
  text-decoration: none;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.products-box .quick-view-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  padding: 20px;

  .quick-view-popup {
    max-width: 800px;
    width: 100%;
    max-height: 550px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--white-color);
    border-radius: 10px;
    z-index: 1000;
    margin: 200px auto 0 auto;
    transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
  }

  .quick-view-popup .title {
    width: 100%;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px dashed var(--border-color);
  }

  .quick-view-popup .title button {
    background-color: transparent;
    border: none;
    color: var(--danger-color);
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
  }

  .quick-view-popup .images {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: sticky;
    top: 10px;
  }

  .quick-view-popup .images .img-preview {
    width: 100%;
    height: 100%;
    margin: 0 auto 10px auto;
    display: block;
    border: 1px solid var(--border-color);
    border-radius: 10px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .2s;
      border-radius: 10px;
    }
  }

  .quick-view-popup .images .other-images-box {
    width: 100%;
    display: block;
    position: relative;
  }

  .quick-view-popup .images .other-images-box .swiper-slide img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: .2s;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
  }

  .quick-view-popup .images .other-images-box .swiper-slide img:hover {
    border-color: var(--main-color);
  }

  .quick-view-popup .images .other-images-box .custom-button {
    background-color: var(--main-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;

    i {
      color: var(--border-color);
      font-size: 13px;
    }

  }

  .quick-view-popup .images .other-images-box .custom-button.custom-prev {
    left: -2px;
  }

  .quick-view-popup .images .other-images-box .custom-button.custom-next {
    right: -10px;
  }

  .quick-view-popup .product-date-summary .product-name {
    font-size: 17px;
    color: var(--black-color);
  }

  .quick-view-popup .product-date-summary .product-pricing {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;

    .new-price {
      color: var(--main-color);
      font-size: 25px;
      font-weight: 600;
    }

    .old-price {
      color: var(--text-color);
      font-size: 17px;
      text-decoration: line-through;
    }
  }

  .discription {
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.5;
    padding: 10px 20px 20px 20px;
    border-top: 1px solid var(--border-color);
  }

}

.products-box .quick-view-container.show {
  opacity: 1;
  pointer-events: all;
  backdrop-filter: blur(10px);

  .quick-view-popup {
    margin: 20px auto 0 auto;
    opacity: 1;
    pointer-events: all;
  }

}

.products-box .product .has-offer {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.products-box .product .product-image {
  width: 100%;
  height: 300px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-color);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  img:hover {
    transform: scale(1.05);
  }
}

@media(max-width:767px) {
  .products-box .product .product-image {
    height: 200px;
  }
}

.products-box .product .quick-view {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  outline: none;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: reverse;

  i {
    color: var(--white-color);
    font-size: 13px;
  }
}

.products-box .product .product-info {
  padding: 20px;
}

.products-box .product .product-info .product-name {
  color: var(--text-color);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media(max-width: 570px) {
  .products-box .product .product-info {
    padding: 10px;
  }

  .products-box .product .product-info .product-name {
    font-size: 14px;
  }
}

.products-box .product .product-info .product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 10px 0;
}

.products-box .product .product-info .product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  .old-price {
    color: var(--text-color);
    text-decoration: line-through;
    font-size: 15px;
  }

  .new-price {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
  }

  @media(max-width:767px) {

    .old-price,
    .new-price {
      font-size: 12px;
    }
  }

}

.products-box .product:hover {
  transform: translateY(-10px);
  border-color: var(--main-color);

  .product-image {
    border-bottom-color: var(--main-color);
  }

  .product-name {
    color: var(--main-color);
  }

}

/* :: Styling Footer :: */
.footer {
  background-color: var(--white-color);
  padding: 20px 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.footer .pages-footer .links {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.footer .footer-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-color);
}

.footer .pages-footer .links li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  transition: .2s ease-in-out;
}

.footer .pages-footer .links li a:hover {
  color: var(--main-color);
  padding-right: 8px;
}

.footer .logo-footer .logo {
  width: 100px;
  height: 30px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.footer .logo-footer .more {
  color: var(--text-color);
  font-size: 14px;
  margin-top: 10px;
}

.footer .contact-footer .links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}

.footer .contact-footer .links li a {
  color: var(--bg_2-color);
  text-decoration: none;
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  border-radius: 5px;
}

.footer .development {
  color: var(--text-color);
  font-size: 14px;
  margin-top: 10px;
}

.void-result {
  font-size: 20px;
  color: var(--text-color);
  margin-top: 20px;

  img {
    max-width: 300px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
  }
}

/* :: Styling tracking Order :: */
.tracking-page .tracking-form {
  background-color: var(--white-color);
  border-radius: 10px;
}

.tracking-page .tracking-form .group {
  padding: 20px;
}

.tracking-page .tracking-form .group label {
  display: flex;
  margin-bottom: 5px;
  color: var(--text-color);
  gap: 5px;
}

.tracking-page .tracking-form .submit-group {
  border-top: 1px solid var(--border-color);
}

/* :: Product Page :: */
.product-page .images-box {
  position: sticky;
  top: 10px;
}

.product-page .images-box .other-images-box {
  max-height: 500px;
  height: 100%;
  overflow: hidden;
  position: relative;

  .swiper-slide {
    border-radius: 10px;
    height: 100% !important;
    width: 100% !important;
    padding: 5px;
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    transition: .2s;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

  }

  .swiper-slide.active {
    border-color: var(--main-color);
  }

  .swiper-slide:hover {
    border-color: var(--main-color);
  }

  .custom-prev {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    border: 3px solid var(--border-color);
    outline: none;
    cursor: pointer;

    i {
      font-size: 14px;
    }

  }

  .custom-next {
    position: absolute;
    z-index: 1000;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    border: 3px solid var(--border-color);
    outline: none;
    cursor: pointer;

    i {
      font-size: 14px;
    }

  }
}

@media (max-width: 768px) {

  .product-page .images-box .other-images-box {
    height: 300px;
  }

}

.product-page .images-box .image-preview {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  background-color: var(--white-color);
  padding: 20px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

}

.product-page .product-box .date-box .date-item {
  background-color: var(--white-color);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  .date-number {
    color: var(--main-color);
    font-size: 20px;
  }

  .date-text {
    color: var(--text-color);
    font-size: 13px;
  }

}

.product-page .product-box .product-name {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  width: fit-content;
}

.product-page .product-box .product-name::after {
  position: absolute;
  content: '';
  width: 50%;
  height: 4px;
  background-color: var(--main-color);
  right: 0;
  bottom: 0;
}

.product-page .product-box .product-price {
  display: flex;
  align-items: center;
  gap: 10px;

  .price {
    color: var(--main-color);
    font-size: 25px;
    font-weight: 600;
  }

  .old-price {
    text-decoration: line-through;
    color: var(--text-color);
  }

}

.product-page .product-box .hint {
  text-align: center;
  font-size: 18px;
  color: var(--black-color);
  font-weight: 600;
}

.product-page .product-box form {
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 10px;
}

.product-page .product-box form .title-label {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 600;
}

.product-page .product-box form .option-box {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.product-page .product-box form .option-box input {
  display: none;
}

.product-page .product-box form .option-box label {
  border: 1px solid var(--border-color);
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0;
  cursor: pointer;
  transition: .2s;
  user-select: none;
  font-size: 15px;
}

.product-page .product-box form .option-box label:hover {
  border-color: var(--main-color);
}

.product-page .product-box form .option-box input:checked~.option-value {
  background-color: var(--main-color);
  color: var(--white-color);
}

.product-page .product-box form .options-available {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  input {
    display: none;
  }

  input:checked+.label-control {
    background-color: var(--main-color);
    color: var(--white-color);
  }

  .label-control {
    width: 40px;
    height: 40px;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
  }

}

.product-page .product-box .shipping-options-box h6 {
  font-size: 20px;
}

.product-page .product-box .shipping-options-box .options {
  padding: 0;
  margin: 0;
  list-style: none;

  li {
    padding: 10px 5px;
    border-radius: 5px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    border: 1px dashed var(--border-color);
    gap: 5px;
    cursor: pointer;
    transition: .2s;
  }

  li:hover {
    background-color: var(--bg-color);
  }

  li label {
    width: 100%;
    cursor: pointer;
    color: var(--text-color);
    font-size: 15px;
    user-select: none;
  }

  input {
    margin-bottom: 3px;
  }

  span {
    color: var(--main-color);
    font-weight: 600;
  }

}

.product-page .product-box form .input-group {
  display: flex;
  align-items: center;
  gap: 5px;

  input::-webkit-inner-spin-button {
    display: none;
  }
}

.product-page .product-box form .btn-qty {
  width: 30px;
  height: 30px;
  border: none;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: 5px !important;
}

.product-page .product-box .summary-order {
  border-radius: 10px;
  border-top: 1px dashed var(--border-color);

  .order-summary-item {
    width: 100%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
  }

  .order-summary-item:not(:last-child) {
    border-bottom: 1px dashed var(--border-color);
  }

  .item-label {
    color: var(--black-color);
    font-weight: 500;
    font-size: 15px;
  }

  .item-value {
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    gap: 5px;

    span {
      display: inline-flex;
      background-color: var(--main-color);
      color: var(--white-color);
      padding: 0 5px;
      border-radius: 3px;
    }
  }

}

.product-page .product-box .product-description .description {
  padding: 20px 40px;
  background-color: var(--white-color);
  border-radius: 10px;
}

@media(max-width: 570px) {}

/* :: Styling Thankyou Page :: */

.thankyou-page .admin-message {
  background-color: var(--white-color);
  color: var(--text-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px dashed var(--border-color);
}

.thankyou-page .shop-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-color);
  font-size: 15px;

  .code-tracking {
    color: var(--main-color);
    cursor: pointer;
    user-select: none;
  }

  a {
    text-decoration: none;
    color: var(--main-color);
  }
}

.thankyou-page .summary-order {
  border-top: 2px solid var(--main-color);

  .hint {
    font-size: 16px;
    color: var(--white-color);
    background-color: var(--main-color);
    width: fit-content;
    padding: 5px;
    border-radius: 0 0 5px 5px;
    margin: 0 auto;
  }

  .order-summary-item {
    width: 100%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
  }

  .order-summary-item:not(:last-child) {
    border-bottom: 1px dashed var(--border-color);
  }

  .item-label {
    color: var(--black-color);
    font-weight: 500;
    font-size: 15px;
  }

  .item-value {
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    gap: 5px;

    span {
      display: inline-flex;
      background-color: var(--main-color);
      color: var(--white-color);
      padding: 0 5px;
      border-radius: 3px;
    }
  }

}

/* :: Styling Cart :: */
.cart-page .cart-content table thead .td-name {
  width: 250px;
}

.cart-page .cart-content table tbody .td-actions .action-button {
  text-decoration: none;
  border: none;
  outline: none;
  background-color: transparent;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: 0.2s;

  i {
    color: var(--text-color);
    font-size: 17px;
  }
}

.cart-page .cart-content table tbody .td-actions .action-button:hover {
  background-color: var(--bg-color);
}

.cart-page .cart-content table tbody .td-image a {
  display: block;
  width: 60px;
  height: 60px;

  img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }

}

.cart-page .cart-content table tbody .td-name a {
  width: 250px;
  color: var(--text-color);
}

.cart-page .cart-content table tbody .td-name a:hover {
  color: var(--main-color);
}

.cart-page .cart-content table tbody .td-actions .popup-container {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-page .cart-content table tbody .td-actions .popup-container.show {
  opacity: 1;
  pointer-events: all;

  form {
    opacity: 1;
    pointer-events: all;
    margin: 20px auto 0 auto;
  }
}

.cart-page .cart-content table tbody .td-actions .popup-container form {
  background-color: var(--white-color);
  width: 400px;
  margin: 400px auto 0 auto;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  .form-title {
    font-size: 20px;
    padding: 10px 20px;
    color: var(--black-color);
    border-bottom: 1px solid var(--border-color);
  }

  .form-group {
    padding: 10px 20px;
  }

  .form-group label {
    color: var(--text-color);
    font-size: 15px;
  }

}

@media(max-width:450px) {
  .cart-page .cart-content table tbody .td-actions .popup-container form {
    width: 90%;
  }
}

.cart-page .summary-box {
  background-color: var(--white-color);
  border-radius: 10px;
}

.cart-page .summary-box .summary-box-body {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;

  .summary-box-title {
    color: var(--black-color);
    font-weight: 600;
    font-size: 17px;
  }

  .summary-box-price {
    color: var(--main-color);
    font-weight: 600;
    font-size: 17px;
  }

}

.cart-page .summary-box .summary-box-footer {
  padding: 15px 20px;
}

/* :: Styling Checkout Page :: */
.checkout-page .box {
  background-color: var(--white-color);
  border-radius: 10px;
}

.checkout-page .box .title {
  font-size: 20px;
  padding: 10px 20px;
  color: var(--black-color);
  border-bottom: 1px dashed var(--border-color);
}

.checkout-page .products-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 10px 20px;
  border-bottom: 1px dashed var(--border-color);
}

.checkout-page .products-box ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.checkout-page .products-box ul li .left-erea {
  display: flex;
  align-items: center;
  gap: 5px;
}

.checkout-page .products-box ul li .thumbnail {
  width: 70px;
  height: 70px;

  img {
    width: 70px;
    height: 70px;
    object-fit: cover;
  }

}

.checkout-page .products-box ul li .product-name {
  color: var(--text-color);
  font-size: 15px;
  width: 170px;

  a {
    display: block;
    color: var(--text-color);
  }

  a:hover {
    color: var(--main-color);
  }

  .option-button {
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 5px;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    border: none;
  }

}

.checkout-page .products-box ul li .right-erea {
  display: flex;
  align-items: center;
  gap: 5px;

  .qty,
  .price {
    font-size: 14px;
    color: var(--text-color);
  }

}

.checkout-page .products-box .summary {

  .summary-body {
    padding: 10px 20px;
    border-bottom: 1px dashed var(--border-color);

    .group {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;

    }

    .summary-title {
      color: var(--black-color);
      font-size: 15px;
      font-weight: 500;
    }

    .summary-price {
      color: var(--main-color);
      font-size: 15px;
      font-weight: 500;
    }
  }

  .summary-footer {
    padding: 20px;
  }

}

.checkout-page .checkout-box .form-checkout {
  padding: 20px;

  label {
    color: var(--text-color);
    font-size: 17px;
  }

  .shipping-option-box {
    display: none;
  }

}


/* :: Landing Page :: */
.landing-page {
  width: 50%;
  padding: 20px;
  background-color: var(--white-color);
  margin: 20px auto 0 auto;
  border-radius: 10px;
}

@media(max-width:767px) {
  .landing-page {
    width: 90%;
  }
}

.landing-page .title-wrapper {
  background: linear-gradient(90deg, blue, red, blue);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 10px auto 0 auto;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: gradientMove 6s linear infinite;
  background-size: 200% auto;
}

.landing-page .title {
  font-size: 30px;
  font-weight: bold;
  color: white;
  /* Text now visible */
  margin: 0;
}


@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/*  */

.landing-page .info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.landing-page .info-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--white-color);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px dashed var(--border-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  flex: 1 1 250px;
  transition: transform 0.3s ease;
}

.landing-page .info-box:hover {
  transform: translateY(-5px);
}

.landing-page .info-box .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  color: var(--white-color);
  font-size: 26px;
  margin-right: 20px;
  box-shadow: 0 4px 12px rgba(78, 84, 200, 0.3);
}

.landing-page .info-box:nth-child(2) .icon {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  /* orange-yellow */
  box-shadow: 0 4px 12px rgba(247, 151, 30, 0.3);
}

.landing-page .info-box:nth-child(3) .icon {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  /* green-cyan */
  box-shadow: 0 4px 12px rgba(67, 233, 123, 0.3);
}

.landing-page .info-box:nth-child(4) .icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}


.landing-page .info-box .details {
  flex-grow: 1;
}

.landing-page .info-box .key {
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.landing-page .info-box .value {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-top: 5px;
}

.landing-page .info-box .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.landing-page .info-box .new-price {
  color: #d10000;
  font-size: 20px;
  font-weight: bold;
}

.landing-page .form-container {
  padding: 10px 0;
}

.landing-page .form-container .hint {
  color: var(--black-color);
  font-size: 15px;
  text-decoration: underline double;
  font-weight: 600;
}

.landing-page .shipping-options-box {
  width: 100%;
}

.landing-page .shipping-options-box .hint {
  color: var(--black-color);
  font-size: 15px;
  text-decoration: underline double;
  font-weight: 600;
  margin-bottom: 10px;
}

.landing-page .shipping-options-box .options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-page .shipping-options-box .options li {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.landing-page .shipping-options-box .options li:has(input:checked) {
  background-color: #dbe7ff;
  border: 1px solid var(--main-color, #4e54c8);
}


.landing-page .shipping-options-box .options li:hover {
  background-color: #eef1ff;
}

.landing-page .shipping-options-box .form-check-input {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  accent-color: var(--main-color, #4e54c8);
  /* modern color for checked state */
}

.landing-page .shipping-options-box label {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.landing-page .shipping-options-box label span {
  color: #777;
  font-size: 15px;
  margin-right: 5px;
}


/* Quantity Box Wrapper */
.landing-page .form-container form .qty-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Quantity Input */
.landing-page .form-container form .qty-box input[type="number"] {
  width: 150px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

@media(max-width:580px) {
  .landing-page .form-container form .qty-box input[type="number"] {
    width: 75% !important;
  }
}

.landing-page .form-container form .qty-box input[type="number"]:focus {
  border-color: var(--main-color);
  outline: none;
  box-shadow: 0 0 5px rgba(78, 84, 200, 0.3);
}

/* + / - Buttons */
.landing-page .form-container form .qty-box .btn-qty {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, var(--main-color), #4e54c8);
  color: white;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(78, 84, 200, 0.2);
  transition: all 0.3s ease;
}

.landing-page .form-container form .qty-box .btn-qty:hover {
  background: var(--main-color);
  transform: scale(1.05);
}

/* Order Button */
.landing-page .form-container form .upload-order {
  font-size: 18px;
  font-weight: 600;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--main-color), #4e54c8);
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border: none;
  transition: all 0.3s ease;
}

.landing-page .form-container form .upload-order:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Responsive Fix */
@media (max-width: 576px) {
  .landing-page .form-container form .qty-box {
    flex-direction: row;
    gap: 8px;
  }

  .landing-page .form-container form .qty-box input[type="number"] {
    width: 70px;
    font-size: 18px;
  }

  .landing-page .form-container form .qty-box .btn-qty {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}