* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --back-nav: #dc969e4a;
  --hover: rgba(172, 0, 0, 0.188);
  --color-text: #fff;
  --color-price: #0fd850;
}
html {
  scroll-behavior: smooth;
}
body {
  padding-top: 80px;
  background: radial-gradient(#7a0000 0%, #3a0000 35%, #000 100%) fixed;
}
.container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
header nav {
  position: fixed;
  top: 5px;
  width: 100%;
  background: rgba(0, 0, 0, 0.524);
  color: var(--color-text);
  z-index: 9999;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
}
nav ul {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  padding: 10px;
}
.cat {
  text-align: center;
  padding: 10px 15px;
  margin: 5px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s ease;
}
.cat.active {
  background: red;
  color: black;
  cursor: pointer;
  transform: scale(1);
  border-radius: 50px;
  font-weight: bold;
  transition: 1s ease;
}
.sections ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  list-style: none;
  background-color: var(--back-nav);
  border-radius: 50px;
  z-index: 2;
  width: 100%;
}
li a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}
.sections ul li {
  padding: 15px;
  text-align: center;
}
.sections ul li:hover {
  background: var(--hover);
  border-radius: 50px;
  cursor: pointer;
  transition: 1s ease;
  transform: scale(1.2);
}
.openList ul,
.closeList ul {
  padding: 0;
  padding-top: 10px;
  position: absolute;
  top: 50px;
  right: 20px;
  height: 350px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  overflow: hidden;
  animation: open 1.5s ease-in-out alternate;
  transition: all 1s ease-in-out;
  z-index: 2;
}
.closeList ul {
  height: 0;
  animation: none;
  transform: translateX(100px);
  z-index: 2;
}
.openList ul li,
.closeList ul li {
  position: relative;
  background-color: var(--hover);
  width: 200px;
  transform: rotateY(30deg) rotateX(-20deg) translateZ(15px);
  font-size: 20px;
  font-weight: bold;
}
@keyframes open {
  0% {
    transform: translateX(100px);
    height: 0;
  }
  100% {
    transform: translateX(0);
    height: 300px;
  }
}
#langSwitch {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--back-nav);
  border: none;
  color: var(--color-text);
  cursor: pointer;
}
#langSwitch option {
  background-color: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
}
.cart-icon i {
  font-size: 20px;
  color: gold;
  cursor: pointer;
}
.cart-icon {
  position: relative;
}
#cart-count {
  position: absolute;
  background-color: red;
  color: var(--color-text);
  border-radius: 50%;
  font-size: 12px;
  padding: 2px 5px;
  position: absolute;
  top: -15px;
}
.video {
  position: relative;
  top: -80px;
  height: 100vh;
}
video {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  object-fit: cover;
  height: 100%;
}
.overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.textSell {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  bottom: -50px;
  padding: 10px;
  background: var(--back-nav);
  color: var(--color-text);
  border-radius: 50px;
  width: fit-content;
  margin: auto;
  margin-top: 200px;
}
.boxMoreSell {
  display: flex;
  justify-content: center;
  align-items: center;
}
.moreSell {
  position: relative;
  width: 400px;
  height: 400px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card {
  position: absolute;
  width: 150px;
  height: 200px;
  background: var(--back-nav);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  transition: 0.5s;
  transform-style: preserve-3d;
  opacity: 1;
  cursor: pointer;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.center {
  transform: translateZ(130px) scale(1.2);
  opacity: 1;
  transition: 0.5s ease-in-out;
}
.left {
  position: absolute;
  transform: translateX(-160px) rotateY(-30deg);
  width: 120px;
  height: 100px;
  transition: 0.5s ease-in-out;
}
.right {
  transform: translateX(160px) rotateY(-30deg);
  width: 100px;
  height: 100px;
  transition: 0.5s ease-in-out;
}
.hidden {
  transform: translateZ(-300px) scale(0.5);
  opacity: 0;
  pointer-events: none;
}
.boxShop {
  display: flex;
  justify-content: center;
  align-items: center;
}
.textShop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 100px;
  width: 300px;
  padding: 10px 5px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
}
.textShop p {
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  color: var(--color-text);
  width: 300px;
  margin: auto;
}
.textShop button {
  position: relative;
  font-weight: bold;
  font-size: x-large;
  padding: 10px 20px;
  background: fixed;
  border: none;
  color: var(--color-text);
  margin: 0 10px;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  transform: translateY(10px);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 7px 5px 5px rgb(0 0 0 10);
  transform: translateY(-5px);
  animation: gg 1s ease-in-out infinite alternate;
}
@keyframes gg {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.textShop button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #0fd850 0%, #f9f047 100%);
  transition: all 0.3s ease;
  z-index: -1;
  animation-name: gradient;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
@keyframes gradient {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.contactUs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 0;
  gap: 20px;
}
.contactUs p {
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  color: var(--color-text);
  width: 300px;
  margin: auto;
}
.contactUs .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 30px;
}
.contactUs .links .fa-brands {
  font-size: 20px;
  line-height: 20px;
  color: var(--color-text);
  transform: 0.3;
}
.links a {
  width: 30px;
  height: 30px;
  font-weight: bold;
  background: rgb(96, 42, 42);
  text-align: center;
  transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(0, 0);
  transition-timing-function: linear;
  box-shadow: -20px 10px 10px rgb(0, 0, 0);
  writing-mode: vertical-lr;
}
.links a:hover {
  transition: 0.5s;
  transform: perspective(1000px) rotate(-30deg) skew(25deg)
    translate(10px, -10px);
  box-shadow: -20px 10px 10px rgb(0, 0, 0);
}
.whatSapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  font-size: 30px;
  z-index: 10000;
}
.whatSapp i {
  cursor: pointer;
  color: var(--color-price);
  width: fit-content;
}
footer {
  position: relative;
  top: 100px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.524);
  color: var(--color-text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  z-index:1;
}
.we {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}
.we i {
  cursor: pointer;
}
.weIcons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
.icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.whoWe {
  width: 300px;
}
.dividingLine {
  position: absolute;
  right: 50%;
  height: 60%;
}
.footerSections ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  list-style: none;
}
.footerSections ul li a {
  cursor: pointer;
  text-decoration: underline;
}
.devoloper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
.devoloper ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  list-style: none;
}
.devoloper ul li {
  cursor: pointer;
  text-decoration: none;
}
.scroll-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.disTitle {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  bottom: 10px;
  padding: 10px;
  background: var(--back-nav);
  color: var(--color-text);
  border-radius: 50px;
  width: fit-content;
  margin: 10px auto;
}
#displayProduct {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: autoScroll 20s linear infinite;
}
.disCard {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.disCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
[dir="rtl"] #displayProduct,
body[style*="direction:rtl"] #displayProduct {
  animation: autoScrollRTL 20s linear infinite;
}
[dir="rtl"] #displayProduct:hover,
body[style*="direction:rtl"] #displayProduct {
  animation-play-state: paused;
}
@keyframes autoScrollRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
.cardShop {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 50px 0;
}
.cardBuying {
  width: 300px;
  height: 550px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
}
.cardBuying img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.shopName {
  color: var(--color-text);
  font-size: 20px;
  font-weight: bold;
  padding: 0 10px;
}
.shopOffer,
.shopPrice {
  color: #e74c3c;
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
  padding: 0 10px;
}
.shopOffer {
  text-decoration: line-through;
  color: #888;
  font-size: 16px;
}
.boxSize {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}
.addToCart {
  width: fit-content;
}
.addToCart:hover i {
  color: gold;
}
.addToCart i {
  font-size: x-large;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.856);
  cursor: pointer;
}
.size {
  position: relative;
  width: 100px;
  color: #fff;
  background: rgba(0, 0, 0, 0.193);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  text-align: center;
  padding: 5px 0;
}
.cardBuying {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}
.cardBuying:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.imgSlider img {
  transition: transform 0.4s ease;
  height: 100%;
}
.cardBuying:hover .imgSlider img {
  transform: scale(1.06);
}
.addToCart:hover i {
  color: gold;
  transition: color 0.2s;
}
.imgSlider {
  position: relative;
  width: 100%;
  height: 70%;
  overflow: hidden;
}
.imgSlider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.imgSlider img.active {
  opacity: 1;
}
.sliderBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 2;
}
.sliderBtn.prev {
  left: 8px;
}
.sliderBtn.next {
  right: 8px;
}
.sliderDots {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.dot.active {
  background: #fff;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}
.modal-overlay.open {
  display: flex;
}
.modal-card {
  background: #1a1a1a;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
}
.modal-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.modal-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info {
  padding: 16px 20px;
}
.modal-name {
  padding-top: 30px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}
.modal-offer {
  text-decoration: line-through;
  color: #888;
  font-size: 16px;
  position: relative;
}
.modal-price {
  color: #e74c3c;
  font-size: 22px;
  font-weight: bold;
  margin: 4px 0 16px;
}
.addToCart-btn {
  background: gold;
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 12px;
}
.addToCart-btn:hover {
  background: #f0c000;
}
.cart-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 50px 0;
}
.emptyCart {
  color: var(--color-text);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  margin: 10px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.cart-item .cardBuyingCart {
  width: 200px;
  height: fit-content;
  margin: 10px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cardBuyingCart img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.cart-item p {
  margin: 8px 0;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}
.modal-content {
  position: relative;
  top: 30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}
.disPrints {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}
.print-item {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.close {
  position: fixed;
  font-size: xxx-large;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}
.print-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.print-item img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}
.select-print-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 5px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 12px;
}
.select-print-btn:hover {
  background-color: #218838;
}
.selected-print-display {
  margin-top: 8px;
  font-size: 13px;
  padding: 5px;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.193);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
}
.selected-print-display span {
  color: #e74c3c;
  font-weight: bold;
}
.print-name-text {
  color: #888;
  transition: all 0.3s ease;
}
.spanPrintBtn {
  position: absolute;
  padding: 0 30px;
  width: fit-content;
}
.print-btn {
  width: 100px;
  color: #fff;
  background: rgba(0, 0, 0, 0.193);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 5px;
}
.cartName {
  color: var(--color-text);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.cartSize {
  color: var(--color-text);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}
.cartPrice {
  color: var(--color-price);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}
.cartTotal {
  color: gold;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}
.quantity {
  position: relative;
  width: 100px;
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.193);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  text-align: center;
  padding: 5px 0;
  display: flex;
  justify-content: space-evenly;
}
.quantity button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: 20px;
  font-weight: bold;
}
.quantity span {
  color: var(--color-text);
  font-size: 20px;
  font-weight: bold;
  padding: 5px 0;
}
.cartBtnDelete {
  position: relative;
  width: 100px;
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.193);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  text-align: center;
  padding: 5px 0;
  margin: 10px 0;
  cursor: pointer;
}
.totalPrice {
  position: relative;
  color: gold;
  background: rgba(0, 0, 0, 0.193);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  text-align: center;
  padding: 5px 0;
  margin: 10px 5px;
  width: fit-content;
  font-size: 20px;
  font-weight: bold;
}
#codeOffer {
  background: rgba(0, 0, 0, 0.494);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  color: white;
  font-size: 16px;
  margin: 0 10px;
  padding: 10px;
}
#btnCode {
  background: #000;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 10px;
}
.checkout-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
  color: white;
}
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: rgba(0, 0, 0, 0.193);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  color: white;
  font-size: 16px;
}
.location-box {
  margin: 15px 0;
}
#locationBtn {
  background: #555;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.whatsapp-btn {
  width: 100%;
  padding: 15px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.whatsapp-btn:hover {
  background-color: #128c7e;
}
@media (min-width: 1270px) {
  .continer {
    font-size: 20px;
  }
  #list {
    position: absolute;
    right: 10px;
    cursor: pointer;
    display: none;
    font-size: x-large;
  }
}
@media (min-width: 992px) {
  .continer {
    font-size: 18px;
  }
  #list {
    position: absolute;
    right: 10px;
    cursor: pointer;
    display: none;
    font-size: x-large;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .continer {
    font-size: 16px;
  }
  #list {
    position: absolute;
    right: 10px;
    cursor: pointer;
    display: none;
    font-size: x-large;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .continer {
    font-size: 16px;
  }
  #list {
    position: absolute;
    right: 10px;
    cursor: pointer;
    display: none;
    font-size: x-large;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .continer {
    font-size: 15px;
  }
  .sections {
    display: none;
  }
  #list {
    position: absolute;
    right: 10px;
    top: 20px;
    cursor: pointer;
    display: block;
    font-size: x-large;
  }
  .cat.active {
    background: red;
  }
  footer {
    position: relative;
    top: 100px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.524);
    color: #fff;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
  }
  .we {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .we i {
    cursor: pointer;
  }
  .weIcons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .whoWe {
    width: 300px;
  }
  .dividingLine {
    display: none;
  }
  .footerSections ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    list-style: none;
  }
  .footerSections ul li a {
    cursor: pointer;
    text-decoration: underline;
  }
  .devoloper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .devoloper ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    list-style: none;
  }
  .devoloper ul li {
    cursor: pointer;
    text-decoration: none;
  }
}
@media (max-width: 575px) {
  .continer {
    font-size: 14px;
  }
  .modal-card {
    display: grid;
  }
  .sections {
    display: none;
  }
  #list {
    position: absolute;
    right: 10px;
    top: 20px;
    cursor: pointer;
    display: block;
  }
  .cat.active {
    background: red;
  }
  footer {
    position: relative;
    top: 100px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.524);
    color: #fff;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
  }
  .we {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .we i {
    cursor: pointer;
  }
  .weIcons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .whoWe {
    width: 300px;
  }
  .dividingLine {
    display: none;
  }
  .footerSections ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    list-style: none;
  }
  .footerSections ul li a {
    cursor: pointer;
    text-decoration: underline;
  }
  .devoloper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .devoloper ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    list-style: none;
  }
  .devoloper ul li {
    cursor: pointer;
    text-decoration: none;
  }
}
@media (max-width: 430px) {
  .continer {
    font-size: 12px;
  }
  .modal-card {
    display: grid;
  }
  .sections {
    display: none;
  }
  #list {
    position: absolute;
    right: 10px;
    top: 20px;
    cursor: pointer;
    display: block;
  }
  .cat.active {
    background: red;
  }
  .center {
    transform: translateZ(10px) scale(1);
    opacity: 1;
  }
  .left {
    position: absolute;
    transform: translateX(-125px) rotateY(-40deg);
    width: 120px;
    height: 100px;
  }
  .right {
    transform: translateX(122px) rotateY(-40deg);
    width: 100px;
    height: 100px;
  }
  .hidden {
    transform: translateZ(-300px) scale(0.5);
    opacity: 0;
    pointer-events: none;
  }
  footer {
    position: relative;
    top: 100px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.524);
    color: #fff;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
  }
  .we {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .we i {
    cursor: pointer;
  }
  .weIcons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .whoWe {
    width: 300px;
  }
  .dividingLine {
    display: none;
  }
  .footerSections ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    list-style: none;
  }
  .footerSections ul li a {
    cursor: pointer;
    text-decoration: underline;
  }
  .devoloper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .devoloper ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    list-style: none;
  }
  .devoloper ul li {
    cursor: pointer;
    text-decoration: none;
  }
}
.toast {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  color: var(--color-text);
  z-index: 10000;
  transition: top 0.5s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.toast.show {
  top: 20px;
}
.toast.success {
  background-color: var(--back-nav);
}
.toast.error {
  background-color: #dc3545;
}
#add-product-form {
  display: none;
  border: 2px solid #2ecc71;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
}
.add-product-btn {
  display: none;
}
.delete-btn {
  display: none;
  background-color: #ff4d4d;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  width: 100%;
}
.add-product {
  background-color: #000;
  display: flex;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.add-product input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
}
.add-product button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.card .delete-btn-admin {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red !important;
  color: white !important;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 9999 !important;
  transform: translateZ(150px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
