* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #FFD700;
  --secondary-gold: #FFA500;
  --bg-primary: #ffffff;
  --bg-secondary: #CDD8E3;
  --bg-glass: rgba(255, 255, 255, 0.1);
  --text-primary: #333333;
  --text-secondary: #666666;
  --accent-color: #006633;
  --border-color: #e0e0e0;
  --card-bg: #ffffff;
  --error-color: #c70101;
  --shadow: 0px 4px 8px 0px rgba(0,0,0,0.24);
}

.dark-theme {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1e1e1e;
  --bg-glass: rgba(255, 255, 255, 0.1);
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --accent-color: #006633;
  --border-color: #2c2c2c;
  --card-bg: #1a1a1a;
  --shadow: 0px 1px 8px 0px rgb(0, 0, 0);
}

@keyframes vibrate {
  0% {
    transform: scale(1); /* Start at normal size */
  }
  20% {
    transform: scale(2); /* Scale up to 2x without rotating */
  }
  40% {
    transform: scale(2) rotate(30deg); /* Rotate to 30 degrees while at 2x */
  }
  60% {
    transform: scale(2) rotate(-30deg); /* Rotate to -30 degrees while at 2x */
  }
  80% {
    transform: scale(2) rotate(0deg); /* Rotate back to 0 degrees while at 2x */
  }
  100% {
    transform: scale(1) rotate(0deg); /* Scale back down to normal size with no rotation */
  }
}
.vibrate {
  animation: vibrate 0.3s linear;
}

#paniercheck {
  display: none;
}
#paniercheck:checked ~ .panier {
  right: 0 !important;
}

#contactcheck {
  display: none;
}
#contactcheck:checked ~ .contact-wrraper {
  z-index: 10;
  opacity: 1;
}
#contactcheck:checked ~ body {
  pointer-events: none;
}

.contact-toggle {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 7vh;
  background-color: var(--bg-glass);
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0.5rem;
  z-index: 2;
}
.contact-toggle label {
  width: 150px;
  text-align: center;
  background-color: #154745;
  display: block;
  border: none;
  padding: 0.2rem 1rem;
  border-radius: 100vw;
  color: white;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-transform: capitalize;
  border: 2px solid #154745;
  transition: all 300ms ease-in-out;
}
.contact-toggle label:hover {
  background-color: white;
  color: #154745;
}
.contact-toggle a {
  text-decoration: none;
  color: #000000;
  font-size: 1.25rem;
}
.contact-toggle a:first-child {
  color: #1877F2;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.15) 0%, transparent 50%), linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  min-height: 100vh;
}

/* Animated background orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  animation: float 20s ease-in-out infinite;
}

.bg-orb:nth-child(1) {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bg-orb:nth-child(2) {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
  top: 60%;
  right: 20%;
  animation-delay: -7s;
}

.bg-orb:nth-child(3) {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.2) 0%, transparent 70%);
  bottom: 20%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  33% {
    transform: translateY(-30px) translateX(20px) scale(1.1);
  }
  66% {
    transform: translateY(20px) translateX(-20px) scale(0.9);
  }
}
/* Enhanced light beam */
.light-beam {
  position: fixed;
  top: 0;
  left: -200px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.1) 30%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 215, 0, 0.1) 70%, transparent 100%);
  animation: sweepLight 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  transform: rotate(15deg);
}

@keyframes sweepLight {
  0%, 100% {
    transform: translateX(-300px) rotate(15deg);
    opacity: 0;
  }
  20%, 80% {
    opacity: 1;
  }
  50% {
    transform: translateX(calc(100vw + 300px)) rotate(15deg);
    opacity: 1;
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 8vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-glass);
  padding-inline: 0.5rem;
  gap: 0.5rem;
}
header .logo {
  height: 70%;
  font-family: "Poppins";
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #19A952;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo img {
  height: 100%;
  width: auto;
  display: block;
}
header ul {
  width: 40%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
}
header ul li {
  list-style-type: none;
}
header ul li a {
  font-size: 0.825rem;
  text-transform: capitalize;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #000000;
}
header #searchForm {
  width: 40%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.5rem;
  padding-inline-end: 1rem;
  background-color: var(--bg-glass);
  border-radius: 100vw;
  overflow: hidden;
}
header #searchForm img {
  width: 16px;
  height: auto;
  display: block;
}
header #searchForm input {
  width: 70%;
  padding: 0.5rem;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--text-primary);
}
header #searchForm input::-moz-placeholder {
  font-family: "Cairo", sans-serif;
  text-transform: capitalize;
  color: #A1A1A1;
  font-weight: 500;
}
header #searchForm input::placeholder {
  font-family: "Cairo", sans-serif;
  text-transform: capitalize;
  color: #A1A1A1;
  font-weight: 500;
}
header #searchForm button {
  font-size: 1rem;
  color: #5B5B5B;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
header #searchForm button:hover {
  color: #A1A1A1;
}
header .togels {
  width: 25px;
  height: 20px;
}
header .togels .cliked .bar-1 {
  transform: rotate(-45deg) !important;
}
header .togels .cliked .bar-3 {
  transform: rotate(45deg) !important;
}
header .togels .cliked .bar-2, header .togels .cliked .bar-4 {
  width: 0 !important;
}
header .togels label {
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}
header .togels label .bar {
  width: 90%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 100vw;
  transition: all 300ms linear;
}
header .togels label .bar-1 {
  position: absolute;
  top: calc(50% - 1px);
  transform: rotate(0);
}
header .togels label .bar-3 {
  transform: rotate(0);
}

.filter {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.0588235294);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

#menu {
  display: none;
}
#menu:checked ~ .menu {
  height: 10vh;
}
#menu:checked ~ .menu a {
  transform: translateY(0) !important;
}
#menu:checked ~ .filter {
  z-index: 2;
  display: block;
}

.menu {
  position: fixed;
  right: 0;
  top: 7vh;
  z-index: 5;
  width: 100vw;
  height: 0;
  background-color: var(--bg-glass);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.menu a {
  position: relative;
  width: 30%;
  padding: 0.2rem;
  text-align: center;
  text-decoration: none;
  color: var(--bg-primary);
  text-transform: capitalize;
  font-family: "Cairo", sans-serif;
  font-weight: 600;
  font-size: 0.925rem;
  transform: translateY(-200%);
  transition: transform 500ms ease-in-out;
  background-color: rgba(238, 238, 238, 0.5176470588);
  border-radius: 0.2rem;
}
.menu a i {
  color: #333;
  margin-right: 0.2rem;
}
.menu a::after {
  content: "";
  display: block;
  position: absolute;
  right: 25%;
  bottom: 0;
  width: 50%;
  height: 1px;
  background-color: rgb(62, 62, 62);
}
.menu a:nth-child(1) {
  transition-delay: 0s !important;
}
.menu a:nth-child(2) {
  transition-delay: 0.05s !important;
}

@media screen and (max-width: 550px) {
  header ul {
    display: none;
  }
  header #searchForm {
    width: 80%;
  }
}
nav {
  position: sticky;
  top: calc(7vh + 0.5rem);
  left: 1rem;
  z-index: 2;
  width: calc(100% - 2rem);
  height: 7vh;
  background-color: var(--bg-glass);
  margin: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 2px 2px 13px -6px rgba(0, 0, 0, 0.72);
  -webkit-box-shadow: 2px 2px 13px -6px rgba(0, 0, 0, 0.72);
  -moz-box-shadow: 2px 2px 13px -6px rgba(0, 0, 0, 0.72);
}
nav img {
  width: 16px;
  height: auto;
  display: block;
}
nav h3 {
  margin-left: 0.5rem;
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
}
nav ul {
  width: 95%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-inline: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
}
nav ul li {
  list-style-type: none;
  min-width: 10ch;
  width: 5%;
  text-transform: capitalize;
  font-family: "Cairo", sysytem-ui, sans-serif;
  cursor: pointer;
  text-align: center;
  position: relative;
  font-weight: 400;
  font-size: 0.825rem;
  color: #fff;
}
nav ul li::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -2px;
  transform: translateX(50%);
  width: 0%;
  height: 2px;
  border-radius: 5rem;
  transition: all 300ms ease-in-out;
  display: block;
  background-color: #fff;
}
nav .nav-panier-label {
  width: 5%;
  height: 100%;
  background-color: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
nav .nav-panier-label:hover label i {
  color: #a1a1a1;
}
nav .nav-panier-label label {
  height: 80%;
  aspect-ratio: 1;
  border-radius: 100vw;
  background-color: var(--text-primary);
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
nav .nav-panier-label label i {
  transition: all 300ms ease-in-out;
  color: var(--text-primary);
}
nav .nav-panier-label p {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-50%, -20%);
  background-color: var(--primary-gold);
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-family: "Cairo", system-ui;
  font-weight: 600;
  border-radius: 100vw;
  font-size: 0.825rem;
}

@media screen and (max-width: 930px) {
  nav ul {
    width: 90%;
  }
  nav .nav-panier-label {
    width: 10%;
  }
}
@media screen and (max-width: 550px) {
  nav {
    height: 5vh;
  }
  nav ul {
    width: 85%;
  }
  nav .nav-panier-label {
    width: 15%;
  }
}
.pub {
  width: 70vw;
  height: 70vh;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: none;
}
.pub .carousel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease-in-out;
}
.pub .carousel-inner .carousel-item {
  min-width: 100%;
  transition: opacity 0.5s ease;
}
.pub .carousel-inner .carousel-item img {
  width: 100%;
  display: block;
}
.pub .prev-btn, .pub .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.627);
  border: none;
  color: white;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pub .prev-btn img, .pub .next-btn img {
  width: 30%;
  height: auto;
  display: block;
}
.pub .prev-btn {
  left: 0.1rem;
}
.pub .next-btn {
  right: 0.1rem;
}
.pub .next-btn img {
  transform: rotate(180deg);
}
.pub .carousel-item:not(.active) {
  display: none;
}

@media screen and (max-width: 1000px) {
  .pub {
    height: 50vh;
    width: 95vw;
  }
}
@media screen and (max-width: 650px) {
  .pub {
    height: 40vh;
  }
}
@media screen and (max-width: 550px) {
  .pub {
    height: 30vh;
  }
  .pub .prev-btn, .pub .next-btn {
    width: 30px;
  }
}
@media screen and (max-width: 550px) {
  .pub {
    height: 20vh;
  }
  .pub .prev-btn, .pub .next-btn {
    width: 30px;
  }
}
.cont-body {
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.5rem;
  margin-bottom: 3rem;
}
.cont-body .orders {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 1rem;
  row-gap: 2rem;
}
.cont-body .orders .order {
  position: relative;
  width: min(390px, 90vw);
  height: 400px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
}
.cont-body .orders .order::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1rem;
}
.cont-body .orders .order:hover .order-control .addToPanier, .cont-body .orders .order:hover .order-control .seemore {
  display: flex;
}
.cont-body .orders .order:hover::before {
  opacity: 1;
}
.cont-body .orders .order .order-pic {
  width: 100%;
  height: 80%;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
  border-bottom: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cont-body .orders .order .order-pic:hover img {
  scale: 1.05;
}
.cont-body .orders .order .order-pic img {
  border-radius: 0.725rem;
  scale: 1;
  transition: all 250ms ease-in-out;
  height: 90%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.cont-body .orders .order .order-infos {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: none;
  border-top: none;
}
.cont-body .orders .order .order-infos .product-infos-header {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.5rem;
}
.cont-body .orders .order .order-infos .product-infos-header .order-name {
  width: 100%;
  font-family: "Cairo", sans-serif;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cont-body .orders .order .order-infos .product-infos-header .order-likes {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(20%, -50%);
  padding: 0.2rem;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Cairo", sans-serif;
  text-transform: capitalize;
  background-color: var(--bg-glass);
  border-radius: 100vw;
  color: var(--text-secondary);
  text-align: right;
  font-weight: 500;
}
.cont-body .orders .order .order-infos .product-infos-header .order-likes i {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-right: 0.2rem;
}
.cont-body .orders .order .order-infos .product-infos-body {
  width: 100%;
  height: 70%;
  display: none;
  align-items: center;
  direction: rtl;
}
.cont-body .orders .order .order-infos .product-infos-body .order-title {
  color: white;
  font-size: 0.825rem;
  font-family: system-ui;
  text-transform: capitalize;
  padding-inline-start: 0.5rem;
}
.cont-body .orders .order .order-control {
  background-color: var(--bg-glass);
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.5rem;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}
.cont-body .orders .order .order-control .order-price {
  color: #ffffff;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  font-family: "Cairo", sans-serif;
  font-size: 1.125rem;
}
.cont-body .orders .order .order-control .addToPanier {
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 0.2rem;
  background-color: transparent;
  height: 25px;
  width: 25px;
  aspect-ratio: 1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.cont-body .orders .order .order-control .addToPanier img {
  width: auto;
  height: 80%;
  display: block;
}
.cont-body .orders .order .order-control .seemore {
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  padding: 0.2rem;
  background-color: var(--bg-glass);
  border-radius: 100vw;
  color: #000000;
  height: 25px;
  width: 25px;
  aspect-ratio: 1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
  transition: all 300ms ease-in-out;
}
.cont-body .orders .order .order-control .seemore img {
  width: auto;
  height: 80%;
  display: block;
}
.cont-body .orders .order .order-control .seemore:hover {
  background-color: #000000;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .cont-body {
    gap: 0.1rem;
  }
  .cont-body .orders {
    gap: 0.1rem;
    row-gap: 2rem;
    justify-content: space-around;
  }
  .cont-body .orders .order {
    width: 45vw;
    height: 35vh;
  }
  .cont-body .orders .order .order-infos {
    line-height: 100% !important;
  }
  .cont-body .orders .order .order-infos .product-infos-header {
    padding-inline: 0.2rem;
  }
  .cont-body .orders .order .order-infos .product-infos-header .order-name {
    font-size: 0.825rem;
  }
}
.panier {
  position: fixed;
  right: -35vw;
  top: 0;
  z-index: 30;
  width: 35vw;
  height: 100vh;
  transition: all 250ms linear;
  background-color: var(--bg-glass);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.panier img {
  width: 16px;
  display: block;
}
.panier .count {
  display: none;
}
.panier .total-price {
  display: none;
}
.panier-header {
  width: 100%;
  height: 5%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.5rem;
}
.panier-header label {
  cursor: pointer;
}
.panier #latest-product {
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  overflow-y: auto;
  padding-top: 1rem;
}
.panier #latest-product .product {
  width: 90%;
  height: 30vh;
  min-height: 30vh;
  display: flex;
  background-color: transparent;
  border-radius: 1rem;
  padding: 0.5rem;
}
.panier #latest-product .product .product-image {
  width: 40%;
  height: 100%;
}
.panier #latest-product .product .product-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.panier #latest-product .product .product-panier-infos {
  width: 60%;
  height: 40%;
  position: relative;
  direction: rtl;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 0.5rem;
}
.panier #latest-product .product .product-panier-infos-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.5rem;
}
.panier #latest-product .product .product-panier-infos-header .product-name {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 1;
  text-transform: capitalize;
  color: var(--bg-primary);
}
.panier #latest-product .product .product-panier-infos-header .product-price {
  font-size: 1rem;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  color: var(--bg-primary);
}
.panier #latest-product .product .product-panier-infos-footer {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.panier #latest-product .product .product-panier-infos-footer input {
  width: 50px;
  background-color: var(--bg-secondary);
  border: none;
  border-radius: 100vw;
  padding: 0.2rem 0.5rem;
  margin-inline-end: 1rem;
  color: var(--text-primary);
}
.panier #latest-product .product .product-panier-infos-footer .deletea {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(70%, -70%);
  width: 18px;
  height: 18px;
  aspect-ratio: 1;
  background-color: #D60F0F;
  border-radius: 0.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panier #latest-product .product .product-panier-infos-footer .deletea i {
  color: white;
}
.panier-checkout-wrraper {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  gap: 0.5rem;
}
.panier-checkout-wrraper input {
  width: 90%;
  height: 100%;
  background-color: var(--bg-secondary);
  outline: none;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 100vw;
  direction: rtl;
}
.panier-checkout-wrraper input::-moz-placeholder {
  color: #9D9D9D;
  font-family: "Cairo", sans-serif;
  text-transform: capitalize;
  font-weight: 600;
}
.panier-checkout-wrraper input::placeholder {
  color: #9D9D9D;
  font-family: "Cairo", sans-serif;
  text-transform: capitalize;
  font-weight: 600;
}
.panier-checkout-wrraper button {
  background-color: var(--primary-gold);
  display: block;
  border: none;
  padding: 0.2rem 1rem;
  border-radius: 100vw;
  color: var(--bg-primary);
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-transform: capitalize;
  border: 2px solid var(--secondary-gold);
  transition: all 300ms ease-in-out;
}
.panier-checkout-wrraper button:hover {
  background-color: var(--secondary-gold);
  color: var(--bg-secondary);
}

@media screen and (max-width: 1150px) {
  .panier {
    width: 50vw;
    right: -50vw;
  }
}
@media screen and (max-width: 830px) {
  .panier {
    width: 80vw;
    right: -80vw;
  }
}
@media screen and (max-width: 500px) {
  .panier {
    width: 100vw;
    right: -100vw;
  }
  .panier #latest-product .product {
    height: 20vh;
    min-height: 20vh;
  }
}
.contact-wrraper {
  position: fixed;
  z-index: -100;
  opacity: 0;
  left: 2.5%;
  top: 15vh;
  width: 95vw;
  height: 75vh;
  background-color: #ffffff;
  outline: 2px solid #E9E9E9;
  border-radius: 0.5rem;
  box-shadow: 0px 1px 400px 200px rgba(0, 0, 0, 0.86);
  -webkit-box-shadow: 0px 1px 400px 200px rgba(0, 0, 0, 0.86);
  -moz-box-shadow: 0px 1px 400px 200px rgba(0, 0, 0, 0.86);
}
.contact-wrraper .contact-header {
  width: 100%;
  height: 30px;
  margin-bottom: 10px;
  padding: 0.5rem;
  background-color: #eee;
}
.contact-wrraper .contact-header label {
  cursor: pointer;
  height: 100%;
  color: #154745;
}
.contact-wrraper .msgs-wraper {
  width: 100%;
  height: calc(100% - 115px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 10px;
  overflow-y: auto;
}
.contact-wrraper .msgs-wraper .msg-box {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 90%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #E9E9E9;
  border-radius: 0.5rem;
  padding: 0.5rem;
  font-size: 1rem;
  font-family: "Cairo", system-ui;
  line-height: 100%;
}
.contact-wrraper .msgs-wraper .me {
  align-self: flex-end;
  background-color: #154745;
  color: white;
}
.contact-wrraper .sending {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  background-color: #E9E9E9;
  border-radius: 100vw;
  overflow: hidden;
  padding-inline: 1rem;
}
.contact-wrraper .sending input {
  width: calc(100% - 50px);
  height: 100%;
  padding: 0.5rem;
  border: none;
  outline: none;
  background-color: transparent;
}
.contact-wrraper .sending input::-moz-placeholder {
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  color: #A1A1A1;
  font-weight: 500;
}
.contact-wrraper .sending input::placeholder {
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  color: #A1A1A1;
  font-weight: 500;
}
.contact-wrraper .sending button {
  font-size: 1rem;
  color: #5B5B5B;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  width: 50px;
}
.contact-wrraper .sending button:hover {
  color: #A1A1A1;
}

.hide {
  display: none !important;
}

.active::after {
  width: 100%;
}/*# sourceMappingURL=products.css.map */