@charset "UTF-8";
.button-custom {
  color: #ffffff !important;
  background: #e75d0d;
  border: solid 1px #e75d0d;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 25px;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  width: fit-content !important;
  height: fit-content;
  text-align: center;
}
.button-custom-secondary {
  background: none !important;
  border: solid 1px #e75d0d;
}
.button-custom-secondary:hover {
  border: solid 1px #e75d0d !important;
  background-color: #e75d0d !important;
}
.button-custom:hover {
  border: solid 1px #ffffff;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

header {
  width: 100%;
}
@media screen and (max-width: 768px) {
  header {
    padding-top: 15px;
  }
}
header .header-icons {
  position: relative;
}
header .header-account-link {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 200;
  white-space: nowrap;
  margin-top: 4px;
  position: absolute;
  bottom: -40px;
  right: 0;
}
header .header-account-link:hover {
  color: #e75d0d;
}
header.front-page {
  position: absolute;
  top: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, #141c36 0%, rgba(20, 28, 54, 0) 100%);
  padding-bottom: 200px;
}
header.front-page.is-product-page, header.front-page.is-shop-process-page, header.front-page.is-account-page {
  position: relative !important;
  background-color: #23315f;
  padding-bottom: 0px !important;
}
@media screen and (max-width: 970px) {
  header.front-page.is-product-page, header.front-page.is-shop-process-page, header.front-page.is-account-page {
    padding-bottom: 10px !important;
  }
}
@media screen and (max-width: 970px) {
  header.front-page {
    background: linear-gradient(to bottom, #141c36 0%, rgba(20, 28, 54, 0) 100%);
    padding-bottom: 100px;
  }
}
header.front-page .main-menu {
  border-bottom: solid 1px #ffffff;
}
header.front-page .main-menu-secondary {
  font-weight: 300;
}
header.front-page .main-menu a:not(.button-custom),
header.front-page .main-menu-secondary a:not(.button-custom) {
  text-transform: uppercase;
}
header.front-page .main-menu a:not(.button-custom):hover,
header.front-page .main-menu-secondary a:not(.button-custom):hover {
  color: #e75d0d !important;
}
header.front-page .main-menu a:not(.button-custom).active,
header.front-page .main-menu-secondary a:not(.button-custom).active {
  color: #e75d0d !important;
  font-weight: 500;
}
header.front-page .my-menu-item {
  position: relative;
}
header.front-page .my-menu-item.has-submenu > a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-bottom: 2px;
}
header.front-page .my-menu-item .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #141c36;
  padding: 10px 0;
  min-width: 200px;
  list-style: none;
  z-index: 9999;
  border-radius: 0 0 5px 5px;
}
header.front-page .my-menu-item .submenu li {
  padding: 0;
}
header.front-page .my-menu-item .submenu li a {
  display: block;
  padding: 8px 20px;
  white-space: nowrap;
  font-size: 0.85rem;
}
header.front-page .my-menu-item .submenu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header.front-page .my-menu-item:hover .submenu {
  display: block;
}
header.front-page .has-submenu-mobile > a {
  display: inline;
}
header.front-page .submenu-toggle {
  display: inline-block;
  cursor: pointer;
  margin-left: 8px;
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  position: relative;
}
header.front-page .submenu-toggle::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
header.front-page .submenu-toggle.open::after {
  transform: rotate(-135deg);
}
header.front-page .submenu-mobile {
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
  display: none;
}
header.front-page .submenu-mobile.open {
  display: block;
}
header.front-page .submenu-mobile li a {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.8;
}
header.front-page .burger-menu {
  width: fit-content !important;
}
header.front-page .burger-menu .burger {
  cursor: pointer;
}
header.front-page .burger-menu svg {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
header.front-page .burger-menu .active svg {
  transform: rotate(90deg);
}
header.front-page .burger-menu path {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
header.front-page .burger-menu path:nth-child(1) {
  transform-origin: 36% 40%;
}
header.front-page .burger-menu path:nth-child(2) {
  stroke-dasharray: 29 299;
}
header.front-page .burger-menu path:nth-child(3) {
  transform-origin: 35% 63%;
}
header.front-page .burger-menu path:nth-child(4) {
  stroke-dasharray: 29 299;
}
header.front-page .burger-menu path:nth-child(5) {
  transform-origin: 61% 52%;
}
header.front-page .burger-menu path:nth-child(6) {
  transform-origin: 62% 52%;
}
header.front-page .burger-menu .active path:nth-child(1) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}
header.front-page .burger-menu .active path:nth-child(2) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}
header.front-page .burger-menu .active path:nth-child(3) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}
header.front-page .burger-menu .active path:nth-child(4) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}
header.front-page .burger-menu .active path:nth-child(5) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}
header.front-page .burger-menu .active path:nth-child(6) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}
header.front-page .menu-mobile {
  position: fixed;
  background-color: rgba(231, 93, 13, 0.9);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 6666;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
header.front-page .menu-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}
header.front-page .menu-mobile.is-closing {
  opacity: 0;
  pointer-events: none;
}
header.front-page .menu-mobile .cross {
  position: absolute;
  right: 10px;
  top: 50px;
  cursor: pointer;
}
header.front-page .menu-mobile hr {
  width: 100%;
  height: 1px;
  color: white;
  background: white;
  opacity: 1;
}
header.front-page .menu-mobile .main-menu-mobile,
header.front-page .menu-mobile .main-menu-secondary-mobile {
  flex-direction: column;
}
header.front-page .menu-mobile .main-menu-mobile a,
header.front-page .menu-mobile .main-menu-secondary-mobile a {
  font-size: 25px;
  font-weight: 800;
}
header.front-page .menu-mobile li {
  text-transform: uppercase;
}
header.front-page .menu-mobile .button-custom-secondary {
  background-color: #23315f !important;
}
header .menu-page ul {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
header .menu-page .main-menu,
header .menu-page .main-menu-secondary {
  min-height: 90px;
}

footer {
  background-color: #23315f;
  /* Conteneur global */
}
footer #partners-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
footer {
  /* Piste */
}
footer #partners-slider .slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem; /* équivalent de g-4 (1.5rem) */
  animation: partners-scroll 30s linear infinite;
}
footer {
  /* Slide */
}
footer #partners-slider .slide {
  flex: 0 0 auto;
}
footer #partners-slider .slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer {
  /* Image */
}
footer #partners-slider .slide img {
  max-height: 80px;
  width: auto;
  pointer-events: none; /* non cliquable */
  user-select: none;
}
footer {
  /* Responsive : 1 / 3 / 6 */
}
@media (max-width: 767.98px) {
  footer {
    /* Mobile : 1 par "ligne" → 100% */
  }
  footer #partners-slider .slide {
    width: calc(50% - 1.5rem); /* on compense un peu le gap */
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  footer {
    /* Tablette : 3 → 33.333% */
  }
  footer #partners-slider .slide {
    width: calc(33.3333333333% - 1rem); /* on compense un peu le gap */
  }
}
@media (min-width: 1200px) {
  footer {
    /* Desktop : 6 → ~16.666% */
  }
  footer #partners-slider .slide {
    width: calc(16.6666666667% - 1.25rem); /* visuellement très proche du row-cols-6 g-4 */
  }
}
footer {
  /* Animation infinie :
    On scrolle sur 50% de la largeur de la piste, 
    et comme on la dupliquera en JS, 50% = un cycle complet. */
}
@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
footer #partners-slider:hover .slider-track {
  animation-play-state: paused;
}
footer .line:not(.first) {
  width: 100%;
}
footer .line {
  height: 2px;
  background: #ffffff;
}
footer p {
  margin: 0;
}
footer p a {
  font-size: 16px;
}
@media screen and (max-width: 992px) and (min-width: 576px) {
  footer .logo {
    max-width: 600px;
  }
}
footer .menu_footer li {
  text-align: center;
}
footer .menu_footer li a {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
footer .menu_footer li a:hover {
  color: #e75d0d;
}
footer .follow-us p {
  font-weight: bold;
  color: #e75d0d;
  font-size: 20px;
}
footer .follow-us .socials {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 200px;
}
@media (max-width: 768px) {
  footer .follow-us .socials {
    justify-content: center;
  }
}
footer .follow-us .socials .social img {
  width: 45px;
  aspect-ratio: 1/1;
  transition: transform 0.3s ease;
}
footer .follow-us .socials .social img:hover {
  transform: scale(1.15);
}
footer .copyright a {
  color: #e75d0d;
  font-weight: bold;
}

.hero {
  min-height: 600px;
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 400px;
  }
}
.hero {
  width: 100vw;
  box-sizing: content-box;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero--bande::after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 30%;
  height: 30px;
  pointer-events: none;
  z-index: 3;
}
.hero--bande-droite::after {
  right: 0;
  background: linear-gradient(to left, #e8632b, transparent);
}
.hero--bande-gauche::after {
  left: 0;
  background: linear-gradient(to right, #e8632b, transparent);
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .contentTitle {
  background-color: #141c36;
  padding: 15px 120px;
  position: relative;
}
.hero .contentTitle::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -20px;
  width: 140px;
  height: 16px;
  background-color: #e75d0d;
}
.hero .contentTitle::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -20px;
  width: 140px;
  height: 16px;
  background-color: #e75d0d;
}
.hero .contentTitle h1 {
  margin: 0;
}

.hero-home {
  min-height: 800px;
  width: 100%;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .hero-home {
    background-position: top;
    min-height: 500px;
  }
}
.hero-home {
  position: relative;
  z-index: 1;
}
.hero-home--bande::before {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 30%;
  height: 30px;
  pointer-events: none;
  z-index: 3;
}
.hero-home--bande-droite::before {
  right: 0;
  background: linear-gradient(to left, #e8632b, transparent);
}
.hero-home--bande-gauche::before {
  left: 0;
  background: linear-gradient(to right, #e8632b, transparent);
}
.hero-home::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
  z-index: 1;
}
.hero-home .hero-home-titles {
  position: absolute;
  bottom: 250px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}
.hero-home .hero-home-titles.visible {
  transform: translateX(-50%) translateY(0);
}
@media screen and (max-width: 768px) {
  .hero-home .hero-home-titles {
    bottom: 150px;
  }
}
@media screen and (max-width: 576px) {
  .hero-home .hero-home-titles {
    bottom: 200px;
    width: 90%;
  }
}
.hero-home .hero-home-title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 3.5rem;
  line-height: 1.1;
  padding: 0.15em 0.4em;
  margin: 0;
  display: inline-block;
  white-space: nowrap;
}
.hero-home .hero-home-title--blue {
  background: linear-gradient(to right, #2c3e6b, transparent);
}
.hero-home .hero-home-title--orange {
  background: linear-gradient(to left, #e8632b, transparent);
}
@media screen and (max-width: 768px) {
  .hero-home .hero-home-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .hero-home .hero-home-title {
    font-size: 1.6rem;
    white-space: normal;
  }
}
.hero-home .scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.hero-home .scroll-indicator .mouse-scroll {
  color: white; /* hérite de la couleur du parent */
}
.hero-home .scroll-indicator .mouse-wheel {
  animation: wheel-move 1.4s ease-in-out infinite;
}
@keyframes wheel-move {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.hero-promo {
  background-color: #23315f;
  position: relative;
}
.hero-promo--bande::before {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 30%;
  height: 30px;
  pointer-events: none;
  z-index: 3;
}
.hero-promo--bande-droite::before {
  right: 0;
  background: linear-gradient(to left, #e8632b, transparent);
}
.hero-promo--bande-gauche::before {
  left: 0;
  background: linear-gradient(to right, #e8632b, transparent);
}
.hero-promo .content li {
  color: #ffffff;
  position: relative;
  padding-left: 20px;
  width: fit-content;
}
.hero-promo .content li::before {
  content: "-";
  color: #e75d0d;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.figures-with-image {
  background-color: #141c36;
  position: relative;
}
.figures-with-image--bande::before {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 30%;
  height: 30px;
  pointer-events: none;
  z-index: 999999;
}
.figures-with-image--bande-droite::before {
  right: 0;
  background: linear-gradient(to left, #e8632b, transparent);
}
.figures-with-image--bande-gauche::before {
  left: 0;
  background: linear-gradient(to right, #e8632b, transparent);
}
.figures-with-image .figure {
  display: flex;
  flex-direction: column;
  border: solid 1px #ffffff;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}
.figures-with-image .figure img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
.figures-with-image .figure p {
  font-size: 30px;
  font-weight: bold;
  margin-top: 10px;
}
.figures-with-image .img-bg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
}
.figures-with-image .img-bg::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 100%;
  background-image: url(../../assets/img/deco.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: -130px;
  top: 0;
  z-index: 9999;
}
@media screen and (max-width: 992px) {
  .figures-with-image .img-bg::before {
    display: none;
  }
}

.last-actus {
  background-color: #23315f;
}
.last-actus .title-line .line {
  height: 2px;
  background-color: #cfd3e2; /* couleur du trait dans ta maquette */
  margin-bottom: 9px; /* pour l'aligner visuellement avec le titre */
}
.last-actus .title-line .line.line_footer {
  margin-bottom: 18px; /* pour l'aligner visuellement avec le titre */
}
.last-actus .card-actu {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 576px) {
  .last-actus .card-actu {
    aspect-ratio: 2/1.5 !important;
  }
}
@media screen and (max-width: 991px) {
  .last-actus .card-actu {
    aspect-ratio: 2/1.5;
  }
}
.last-actus .card-actu {
  border-radius: 44px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.last-actus .card-actu a {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  height: 100%;
}
.last-actus .card-actu a .content {
  z-index: 9999;
}
.last-actus .card-actu a .content h4 {
  font-weight: 600;
}
.last-actus .card-actu a .content .date {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
}
.last-actus .card-actu a .content .link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}
.last-actus .card-actu a .content .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: #e75d0d;
  transition: width 0.3s ease;
}
.last-actus .card-actu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  opacity: 0.7;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.last-actus .card-actu:hover::after {
  opacity: 1;
}
.last-actus .card-actu:hover a .link::after {
  width: 100%;
}

.w-fit {
  width: fit-content;
}

.four-blocks {
  background-color: #23315f;
  position: relative;
}
.four-blocks--bande::before {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 30%;
  height: 30px;
  pointer-events: none;
  z-index: 3;
}
.four-blocks--bande-droite::before {
  right: 0;
  background: linear-gradient(to left, #e8632b, transparent);
}
.four-blocks--bande-gauche::before {
  left: 0;
  background: linear-gradient(to right, #e8632b, transparent);
}
.four-blocks .content {
  border: solid 2px #ffffff;
  padding: 0px 20px;
  min-height: 250px;
  max-width: 90%;
}
.four-blocks .content .for-center {
  padding-top: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.four-blocks .content .for-center img {
  max-width: 140px;
}
.four-blocks .content .for-center p {
  text-align: center;
}

.texte-with-image {
  background-color: #141c36;
}
.texte-with-image .right-content {
  position: relative;
  z-index: 1;
}
.texte-with-image .right-content::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 100%;
  background-image: url(../../assets/img/deco.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: 0px;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .texte-with-image .right-content::before {
    display: none;
  }
}
.texte-with-image .img-bg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
}

.bureau {
  background-color: #23315f;
}
.bureau .title-line .line {
  height: 2px;
  background-color: #cfd3e2; /* couleur du trait dans ta maquette */
  margin-bottom: 9px; /* pour l'aligner visuellement avec le titre */
}
.bureau .title-line .line.line_footer {
  margin-bottom: 18px; /* pour l'aligner visuellement avec le titre */
}
.bureau .card-bureau {
  aspect-ratio: 1/1.3;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}
.bureau .card-bureau img {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.bureau .card-bureau::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  opacity: 0.7;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.bureau .card-bureau::before {
  content: "";
  position: absolute;
  border: solid 2px #ffffff;
  width: 80%;
  height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.bureau .card-bureau:hover::after {
  opacity: 1;
}
.bureau .card-bureau .content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 999;
  position: relative;
}
.bureau .card-bureau .content p {
  line-height: normal;
  margin: 0;
}
.bureau .card-bureau .content p.firstname {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.bureau .card-bureau .content p.lastname {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
}
.bureau .card-bureau .content p.role {
  font-size: 16px;
  font-weight: 600;
  color: #e75d0d;
  text-transform: uppercase;
}

.trials {
  background-color: #141c36;
}
.trials .withBorder {
  border-left: solid 1px #e75d0d;
  border-right: solid 1px #e75d0d;
  position: relative;
  z-index: 1;
}
.trials .withBorder::before {
  content: url(../../assets/img/deco.svg);
  width: 500px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: -1;
}
.trials .img-cote .content-img {
  width: 100%;
  height: 100%;
  margin-left: 60px;
  background-size: cover;
  background-position: center center;
}
.trials .content-day-pair .img-cote .content-img {
  margin-left: -60px;
  margin-right: auto;
}
.trials .content-day {
  display: flex;
  flex-direction: column;
}
.trials .content-day-pair {
  align-items: flex-end;
}
.trials .content-day-pair .day {
  padding: 20px 110px 20px 40px !important;
  margin-right: -70px !important;
  margin-left: 0 !important;
}
.trials .content-day-pair .row {
  flex-direction: row-reverse;
}
.trials .content .day {
  background-color: #e75d0d;
  width: fit-content;
  padding: 20px 40px 20px 110px;
  margin-left: -70px;
}
.trials .content .day p {
  font-weight: 500;
  color: black;
  text-transform: uppercase;
  margin: 0;
}
.trials .content p {
  margin-bottom: 0;
}
.trials .content .desc {
  font-style: italic;
}
.trials .content .hour {
  color: #e75d0d;
  font-weight: bold;
}
.trials .content .trial-detail {
  padding: 10px 0;
  border-bottom: solid 1px #ffffff;
  width: 100%;
}
.trials .content .natation {
  margin-bottom: 5px !important;
  font-weight: bold;
  padding-left: 85px;
  position: relative;
  height: 30px;
  display: flex;
  align-items: flex-end;
}
.trials .content .natation::after {
  content: url("../../assets/img/nageur.png");
  left: 0;
  top: 0;
  position: absolute;
}
.trials .content .velo {
  margin-bottom: 5px !important;
  font-weight: bold;
  padding-left: 85px;
  position: relative;
  height: 50px;
  display: flex;
  align-items: flex-end;
}
.trials .content .velo::after {
  content: url("../../assets/img/cycliste.png");
  width: 50px;
  height: 50px;
  left: 0;
  top: 0;
  position: absolute;
}
.trials .content .cap {
  margin-bottom: 5px !important;
  font-weight: bold;
  padding-left: 85px;
  position: relative;
  height: 50px;
  display: flex;
  align-items: flex-end;
}
.trials .content .cap::after {
  content: url("../../assets/img/coureur.png");
  width: 50px;
  height: 50px;
  left: 0;
  top: 0;
  position: absolute;
}

.licences-first {
  background-color: #141c36;
}
.licences-first .title {
  width: fit-content;
  position: relative;
  padding: 15px 0;
}
.licences-first .title::before {
  content: "";
  position: absolute;
  width: 50%;
  bottom: 0;
  height: 4px;
  background-color: #e75d0d;
}
.licences-first .content {
  width: 100%;
  border: solid 1px #ffffff;
  height: 450px;
}
@media screen and (max-width: 576px) {
  .licences-first .content {
    height: 550px;
  }
}
.licences-first .content {
  position: relative;
}
.licences-first .content .content-div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  cursor: pointer;
}
.licences-first .content .content-div .name {
  font-size: 25px;
  font-weight: 600;
}
.licences-first .content .content-div .secteur {
  font-size: 25px;
  font-weight: 600;
  color: #e75d0d;
}
.licences-first .content .content-div .line {
  height: 4px;
  width: 50%;
  background-color: #e75d0d;
}
.licences-first .content .first-content {
  background-color: #141c36;
  transition: opacity 0.4s ease;
}
.licences-first .content .second-content {
  background-color: #ffffff;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: start !important;
  padding: 20px;
}
.licences-first .content .second-content .name {
  color: #141c36;
}
.licences-first .content .second-content p {
  color: #141c36;
}
.licences-first .content:hover .second-content {
  opacity: 1;
}
.licences-first .border-left {
  border-left: solid 1px #e75d0d;
}
.licences-first .tarifs .title-tarifs {
  background-color: #e75d0d;
  width: fit-content;
  padding: 20px 40px 20px 110px;
  margin-left: -70px;
}
.licences-first .tarifs .title-tarifs h4 {
  font-weight: 500;
  color: black;
  text-transform: uppercase;
  margin: 0;
}
.licences-first .tarifs .cat {
  font-weight: bold;
  color: #e75d0d;
  text-transform: uppercase;
  margin-bottom: 0;
}
.licences-first .tarifs .type {
  font-weight: bold;
  margin-bottom: 0;
}
.licences-first .tarifs .licence-item {
  font-size: 20px;
  color: #ffffff;
  margin: 10px 0;
}
.licences-first .tarifs .licence-item .label {
  font-weight: 400;
}
.licences-first .tarifs .licence-item .label p {
  margin-bottom: 0;
}
.licences-first .tarifs .licence-item .price {
  white-space: nowrap;
  color: #e75d0d;
  font-weight: bold;
  margin-left: 10px;
}
.licences-first .tarifs .licence-item .dots {
  border-bottom: 2px dotted rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  height: 0.6em;
}

.contact {
  background-color: #23315f;
}
.contact .contact-form-wrapper {
  display: none;
}
.contact .contact-form-wrapper.active {
  display: block;
}
.contact .form-toggle.active {
  color: #fff;
}
.contact .contact-content {
  background-color: #141c36;
  border: solid 1px #ffffff;
}
.contact .contact-content .separator {
  width: 200px;
  height: 4px;
  background-color: #e75d0d;
}
.contact .contact-content p {
  margin-bottom: 0;
}
.contact .contact-content .wpcf7 br {
  display: none !important;
}
.contact .contact-content .contact-form label {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  display: block;
}
.contact .contact-content .contact-form input {
  padding: 5px;
  font-size: 14px !important;
}
.contact .contact-content .contact-form .form-control {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
  height: 45px;
  padding: 8px 12px;
  font-size: 18px;
  margin-top: 0;
}
.contact .contact-content .contact-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #e75d0d;
}
.contact .contact-content .contact-form .submit-btn .wpcf7-spinner {
  display: none;
}
.contact .contact-content .contact-form textarea.form-control {
  height: auto;
}
.contact .contact-content .contact-form .button-custom {
  padding: 5px 50px;
}
.contact .wpcf7-response-output {
  color: #ffffff;
}

.faq button:focus,
.faq button:active,
.faq button:focus-visible {
  outline: none;
  box-shadow: none;
}
.faq {
  background-color: #23315f;
}
.faq .accordion-item,
.faq .accordion-button {
  background: none !important;
  color: #ffffff;
  border: none !important;
}
.faq .accordion-button {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: none !important;
}
.faq .accordion-button::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #fff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.faq .accordion-button:not(.collapsed) {
  color: #e75d0d !important;
}
.faq .accordion-button:not(.collapsed)::after {
  background-color: #e75d0d;
  transform: rotate(180deg);
}
.faq .accordion-item {
  border-bottom: solid 1px #ffffff !important;
  border-radius: 0 !important;
}

.show-document {
  background-color: #23315f;
}
.show-document .separator {
  width: 200px;
  height: 4px;
  background-color: #e75d0d;
}

.download-document {
  background-color: #23315f;
}
.download-document .separator {
  width: 200px;
  height: 4px;
  background-color: #e75d0d;
}
.download-document .link-pdf img {
  margin-right: 10px;
}

.last-actus {
  background-color: #23315f;
}
.last-actus .title-line .line {
  height: 2px;
  background-color: #cfd3e2; /* couleur du trait dans ta maquette */
  margin-bottom: 9px; /* pour l'aligner visuellement avec le titre */
}
.last-actus .title-line .line.line_footer {
  margin-bottom: 18px; /* pour l'aligner visuellement avec le titre */
}
.last-actus .card-actu {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 576px) {
  .last-actus .card-actu {
    aspect-ratio: 2/1.5 !important;
  }
}
@media screen and (max-width: 991px) {
  .last-actus .card-actu {
    aspect-ratio: 2/1.5;
  }
}
.last-actus .card-actu {
  border-radius: 44px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.last-actus .card-actu a {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  height: 100%;
}
.last-actus .card-actu a .content {
  z-index: 9999;
}
.last-actus .card-actu a .content h4 {
  font-weight: 600;
}
.last-actus .card-actu a .content .date {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
}
.last-actus .card-actu a .content .link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  cursor: pointer;
}
.last-actus .card-actu a .content .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: #e75d0d;
  transition: width 0.3s ease;
}
.last-actus .card-actu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  opacity: 0.7;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.last-actus .card-actu:hover::after {
  opacity: 1;
}
.last-actus .card-actu:hover a .link::after {
  width: 100%;
}

.w-fit {
  width: fit-content;
}

.practical-infos {
  background-color: #23315f;
}
.practical-infos .title-line {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.practical-infos .line {
  flex: 1;
  height: 2px;
  background-color: #ffffff;
}
.practical-infos .calendar,
.practical-infos .ping {
  position: relative;
  width: 20px;
}
.practical-infos .calendar img,
.practical-infos .ping img {
  margin-left: 10px;
  margin-right: 5px;
  width: 12px;
}
.practical-infos .date-limit {
  color: #e75d0d;
  text-transform: uppercase;
  margin-bottom: 0;
}
.practical-infos .date-limit.first {
  font-weight: bold;
}

.hero-promo-image {
  background-color: #23315f;
  position: relative;
}
.hero-promo-image--bande::before {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 30%;
  height: 30px;
  pointer-events: none;
  z-index: 3;
}
.hero-promo-image--bande-droite::before {
  right: 0;
  background: linear-gradient(to left, #e8632b, transparent);
}
.hero-promo-image--bande-gauche::before {
  left: 0;
  background: linear-gradient(to right, #e8632b, transparent);
}
.hero-promo-image .content .title {
  border-bottom: solid 1px #ffffff;
}
.hero-promo-image .content .event p {
  margin-bottom: 5px !important;
  font-weight: bold;
  padding-left: 25px;
  position: relative;
}
.hero-promo-image .content .event p.ping::after {
  content: url("../../assets/img/ping.svg");
}
.hero-promo-image .content .event p::after {
  content: url("../../assets/img/calendar.svg");
  width: 15px;
  height: 15px;
  left: 0;
  top: 0;
  position: absolute;
}
.hero-promo-image .content li {
  color: #ffffff;
  position: relative;
  padding-left: 20px;
  width: fit-content;
}
.hero-promo-image .content li::before {
  content: "-";
  color: #e75d0d;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.products-listing-block {
  padding: 60px 0 80px;
  background-color: #f4f6fb;
}
.products-listing-block .plb-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.products-listing-block .plb-filters .plb-filter {
  padding: 8px 22px;
  border: 2px solid #23315f;
  border-radius: 30px;
  background: transparent;
  color: #23315f;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.products-listing-block .plb-filters .plb-filter:hover, .products-listing-block .plb-filters .plb-filter.active {
  background: #23315f;
  color: #ffffff;
}
.products-listing-block .plb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .products-listing-block .plb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .products-listing-block .plb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .products-listing-block .plb-grid {
    grid-template-columns: 1fr;
  }
}
.products-listing-block .plb-card .plb-card-inner {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(35, 49, 95, 0.18);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.products-listing-block .plb-card .plb-card-inner:hover {
  box-shadow: 0 8px 28px rgba(35, 49, 95, 0.13);
  transform: translateY(-3px);
}
.products-listing-block .plb-card .plb-card-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  color: #23315f;
  opacity: 0.35;
}
.products-listing-block .plb-card .plb-card-icon svg {
  width: 100%;
  height: 100%;
}
.products-listing-block .plb-card .plb-card-image-link {
  display: block;
  padding: 28px 20px 16px;
  flex-shrink: 0;
}
.products-listing-block .plb-card .plb-card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
}
@media (max-width: 575px) {
  .products-listing-block .plb-card .plb-card-img {
    height: 160px;
  }
}
.products-listing-block .plb-card .plb-card-body {
  padding: 0 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}
.products-listing-block .plb-card .plb-card-title {
  font-family: "Hartwell Alt", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #23315f;
}
.products-listing-block .plb-card .plb-card-title a {
  color: #23315f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.products-listing-block .plb-card .plb-card-title a:hover {
  color: #e75d0d;
}
.products-listing-block .plb-card .plb-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.products-listing-block .plb-card .plb-card-price {
  font-family: "Hartwell Alt", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e75d0d;
}
.products-listing-block .plb-card .plb-card-price .woocommerce-Price-amount,
.products-listing-block .plb-card .plb-card-price bdi {
  color: #e75d0d;
}
.products-listing-block .plb-card .plb-card-atc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #e75d0d;
  color: #ffffff;
  border-radius: 20px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.products-listing-block .plb-card .plb-card-atc svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.products-listing-block .plb-card .plb-card-atc:hover {
  background: rgb(192.3737704918, 77.4491803279, 10.8262295082);
  color: #ffffff;
}
.products-listing-block .plb-no-products {
  grid-column: 1/-1;
  text-align: center;
  color: #23315f;
  padding: 60px 0;
  opacity: 0.6;
}

.image-centrale {
  background-color: #23315f;
}

.galerie-photo {
  padding: 80px 0;
  background-color: #23315f;
}
.galerie-photo__header {
  margin-bottom: 50px;
}
.galerie-photo__description {
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
  margin: 15px auto 0;
}
.galerie-photo__item {
  margin-bottom: 24px;
}
.galerie-photo__link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.galerie-photo__link img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.galerie-photo__link:hover img {
  transform: scale(1.05);
}
.galerie-photo__link:hover .galerie-photo__overlay {
  opacity: 1;
}
.galerie-photo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 54, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
}

.galerie-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.galerie-lightbox.active {
  display: flex;
}
.galerie-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.galerie-lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.galerie-lightbox__close:hover {
  color: #e75d0d;
}
.galerie-lightbox__prev, .galerie-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #ffffff;
  background: rgba(35, 49, 95, 0.5);
  border: none;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 4px;
}
.galerie-lightbox__prev:hover, .galerie-lightbox__next:hover {
  background: #e75d0d;
}
.galerie-lightbox__prev {
  left: 20px;
}
.galerie-lightbox__next {
  right: 20px;
}

.contenu-texte {
  background-color: #23315f;
  padding: 60px 0;
  position: relative;
}
.contenu-texte--bande::before {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 30%;
  height: 30px;
  pointer-events: none;
  z-index: 3;
}
.contenu-texte--bande-droite::before {
  right: 0;
  background: linear-gradient(to left, #e8632b, transparent);
}
.contenu-texte--bande-gauche::before {
  left: 0;
  background: linear-gradient(to right, #e8632b, transparent);
}
.contenu-texte__body {
  margin-top: 20px;
}
.contenu-texte__body p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
}
.contenu-texte__body ul {
  padding-left: 0;
}
.contenu-texte__body ul li {
  color: #ffffff;
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.contenu-texte__body ul li::before {
  content: "-";
  color: #e75d0d;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.contenu-texte__body a {
  color: #e75d0d;
  text-decoration: underline;
}
.contenu-texte__body a:hover {
  color: rgb(243.5450819672, 121.9467213115, 51.4549180328);
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.woocommerce-error.is-dismissing,
.woocommerce-message.is-dismissing,
.woocommerce-info.is-dismissing {
  opacity: 0;
  transform: translateY(-8px);
}

.product-breadcrumb-section {
  background-color: #141c36;
  padding: 14px 0;
}
.product-breadcrumb-section .woocommerce-breadcrumb {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 0;
}
.product-breadcrumb-section .woocommerce-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}
.product-breadcrumb-section .woocommerce-breadcrumb a:hover {
  color: #e75d0d;
}

.wp-block-woocommerce-coming-soon {
  background-color: #23315f;
}

#product-main {
  overflow-x: hidden;
  max-width: 100vw;
}

.product-main-section {
  background-color: #23315f;
  padding: 60px 0 70px;
}
.product-main-section .onsale {
  background-color: #e75d0d;
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-gallery-wrapper {
  max-width: 100%;
  overflow: hidden;
}
.product-gallery-wrapper .woocommerce-product-gallery {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.product-gallery-wrapper .woocommerce-product-gallery .flex-viewport {
  overflow: hidden;
}
.product-gallery-wrapper .woocommerce-product-gallery__trigger {
  display: none !important;
}
.product-gallery-wrapper .woocommerce-product-gallery__image a {
  display: block;
  background-color: #141c36;
  border-radius: 10px;
  overflow: hidden;
}
.product-gallery-wrapper .woocommerce-product-gallery__image img {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 991px) {
  .product-gallery-wrapper .woocommerce-product-gallery__image img {
    height: 340px;
  }
}
@media (max-width: 575px) {
  .product-gallery-wrapper .woocommerce-product-gallery__image img {
    height: 260px;
  }
}
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  border: 2px solid transparent;
  display: block;
  transition: border-color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  opacity: 0.65;
}
.product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs li img.flex-active, .product-gallery-wrapper .woocommerce-product-gallery .flex-control-thumbs li img:hover {
  border-color: #e75d0d;
  opacity: 1;
}

.product-summary-wrapper .product_title {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.2;
}
.product-summary-wrapper .product_title::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background-color: #e75d0d;
  margin-top: 14px;
}
.product-summary-wrapper .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.product-summary-wrapper .woocommerce-product-rating .star-rating {
  color: #e75d0d;
  font-size: 15px;
}
.product-summary-wrapper .woocommerce-product-rating .woocommerce-review-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  font-size: 14px;
}
.product-summary-wrapper .woocommerce-product-rating .woocommerce-review-link:hover {
  color: #ffffff;
}
.product-summary-wrapper .price {
  margin-bottom: 20px;
}
.product-summary-wrapper .price bdi,
.product-summary-wrapper .price .woocommerce-Price-amount {
  color: #e75d0d;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
.product-summary-wrapper .price del {
  opacity: 0.55;
  margin-right: 8px;
}
.product-summary-wrapper .price del .woocommerce-Price-amount {
  color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
}
.product-summary-wrapper .price ins {
  text-decoration: none;
}
.product-summary-wrapper .woocommerce-product-details__short-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.product-summary-wrapper .woocommerce-product-details__short-description p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}
.product-summary-wrapper .product-simple-attributes {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}
.product-summary-wrapper .product-simple-attributes .simple-attribute-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-summary-wrapper .product-simple-attributes .simple-attribute-label {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
}
.product-summary-wrapper .product-simple-attributes .simple-attribute-select {
  background-color: #141c36;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 10px 38px 10px 14px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  min-width: 190px;
  width: fit-content;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e75d0d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}
.product-summary-wrapper .product-simple-attributes .simple-attribute-select:focus {
  border-color: #e75d0d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 93, 13, 0.25);
}
.product-summary-wrapper .product-simple-attributes .simple-attribute-select option {
  background-color: #141c36;
  color: #ffffff;
}
.product-summary-wrapper .stock {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-summary-wrapper .stock.in-stock {
  color: #5cba6e;
}
.product-summary-wrapper .stock.out-of-stock {
  color: #e05c5c;
}
.product-summary-wrapper .variations_form .variations {
  width: 100%;
  border: none;
  margin-bottom: 22px;
}
.product-summary-wrapper .variations_form .variations tbody {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-summary-wrapper .variations_form .variations tr {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-summary-wrapper .variations_form .variations .label label {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}
.product-summary-wrapper .variations_form .variations .value {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product-summary-wrapper .variations_form .variations .value select {
  background-color: #141c36;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 10px 38px 10px 14px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  min-width: 190px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e75d0d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}
.product-summary-wrapper .variations_form .variations .value select:focus {
  border-color: #e75d0d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 93, 13, 0.25);
}
.product-summary-wrapper .variations_form .variations .value select option {
  background-color: #141c36;
  color: #ffffff;
}
.product-summary-wrapper .variations_form .variations .value .reset_variations {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  text-decoration: underline;
  font-size: 13px;
  transition: color 0.3s ease;
}
.product-summary-wrapper .variations_form .variations .value .reset_variations:hover {
  color: #e75d0d;
}
.product-summary-wrapper .variations_form .woocommerce-variation-price {
  margin-bottom: 18px;
}
.product-summary-wrapper .variations_form .woocommerce-variation-price .price bdi,
.product-summary-wrapper .variations_form .woocommerce-variation-price .price .woocommerce-Price-amount {
  color: #e75d0d;
  font-size: 28px;
  font-weight: 700;
}
.product-summary-wrapper .variations_form .woocommerce-variation-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 14px;
}
.product-summary-wrapper .variations_form .woocommerce-variation-description p {
  color: rgba(255, 255, 255, 0.8);
}
.product-summary-wrapper .variations_form .woocommerce-variation-availability .stock {
  font-size: 13px;
}
.product-summary-wrapper .cart {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.product-summary-wrapper .cart .product-simple-attributes {
  flex: 0 0 100%;
}
.product-summary-wrapper .cart .quantity {
  display: flex;
  align-items: center;
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  overflow: hidden;
}
.product-summary-wrapper .cart .quantity .qty {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 18px;
  font-weight: 600;
  width: 58px;
  text-align: center;
  padding: 10px 5px;
}
.product-summary-wrapper .cart .quantity .qty:focus {
  outline: none;
}
.product-summary-wrapper .cart .quantity .qty::-webkit-inner-spin-button, .product-summary-wrapper .cart .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.product-summary-wrapper .cart .single_add_to_cart_button {
  color: #ffffff !important;
  background: #e75d0d;
  border: solid 1px #e75d0d;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  flex: 1;
}
.product-summary-wrapper .cart .single_add_to_cart_button:hover {
  border-color: #ffffff;
  background: transparent;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.product-summary-wrapper .cart .single_add_to_cart_button.disabled, .product-summary-wrapper .cart .single_add_to_cart_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.product-summary-wrapper .product_meta {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  margin-top: 20px;
}
.product-summary-wrapper .product_meta span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-bottom: 5px;
  font-size: 13px;
}
.product-summary-wrapper .product_meta span .label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.product-summary-wrapper .product_meta span a {
  color: #e75d0d;
  text-decoration: none;
  font-size: 13px;
}
.product-summary-wrapper .product_meta span a:hover {
  color: #ffffff;
}

.product-tabs-section {
  background-color: #141c36;
  padding: 60px 0 70px;
}
.product-tabs-section .woocommerce-tabs .tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  gap: 0;
}
.product-tabs-section .woocommerce-tabs .tabs li {
  margin-bottom: -2px;
}
.product-tabs-section .woocommerce-tabs .tabs li a {
  display: block;
  padding: 14px 28px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.product-tabs-section .woocommerce-tabs .tabs li a:hover {
  color: #ffffff;
  border-bottom-color: rgba(231, 93, 13, 0.5);
}
.product-tabs-section .woocommerce-tabs .tabs li.active a {
  color: #ffffff;
  border-bottom-color: #e75d0d;
}
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.85);
}
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
}
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background-color: #e75d0d;
  margin-top: 12px;
}
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
}
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes th,
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  text-align: left;
}
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes th {
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  width: 30%;
}
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes tr:last-child td,
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes tr:last-child th {
  border-bottom: none;
}
.product-tabs-section .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.04);
}
.product-tabs-section #reviews #comments {
  margin-bottom: 40px;
}
.product-tabs-section #reviews #comments h2 {
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 25px;
}
.product-tabs-section #reviews #comments h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background-color: #e75d0d;
  margin-top: 12px;
}
.product-tabs-section #reviews #comments .commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-tabs-section #reviews #comments .commentlist li .comment_container {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.product-tabs-section #reviews #comments .commentlist li .comment_container img.avatar {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
}
.product-tabs-section #reviews #comments .commentlist li .comment_container .comment-text {
  flex: 1;
}
.product-tabs-section #reviews #comments .commentlist li .comment_container .comment-text .star-rating {
  color: #e75d0d;
  margin-bottom: 8px;
}
.product-tabs-section #reviews #comments .commentlist li .comment_container .comment-text .woocommerce-review__author {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}
.product-tabs-section #reviews #comments .commentlist li .comment_container .comment-text .woocommerce-review__published-date {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}
.product-tabs-section #reviews #comments .commentlist li .comment_container .comment-text .description p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}
.product-tabs-section #reviews #review_form_wrapper h3 {
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
}
.product-tabs-section #reviews #review_form_wrapper h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background-color: #e75d0d;
  margin-top: 12px;
}
.product-tabs-section #reviews #review_form_wrapper .comment-notes,
.product-tabs-section #reviews #review_form_wrapper .comment-form-rating label,
.product-tabs-section #reviews #review_form_wrapper .comment-form-comment label,
.product-tabs-section #reviews #review_form_wrapper .comment-form-author label,
.product-tabs-section #reviews #review_form_wrapper .comment-form-email label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
  display: block;
}
.product-tabs-section #reviews #review_form_wrapper .stars a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 22px;
  text-decoration: none;
  font-size: 22px;
  transition: color 0.2s ease;
}
.product-tabs-section #reviews #review_form_wrapper .stars a:hover, .product-tabs-section #reviews #review_form_wrapper .stars a.active {
  color: #e75d0d;
}
.product-tabs-section #reviews #review_form_wrapper input[type=text],
.product-tabs-section #reviews #review_form_wrapper input[type=email],
.product-tabs-section #reviews #review_form_wrapper textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  padding: 11px 14px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  width: 100%;
  margin-bottom: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-tabs-section #reviews #review_form_wrapper input[type=text]:focus,
.product-tabs-section #reviews #review_form_wrapper input[type=email]:focus,
.product-tabs-section #reviews #review_form_wrapper textarea:focus {
  outline: none;
  border-color: #e75d0d;
  box-shadow: 0 0 0 3px rgba(231, 93, 13, 0.2);
}
.product-tabs-section #reviews #review_form_wrapper input[type=text]::placeholder,
.product-tabs-section #reviews #review_form_wrapper input[type=email]::placeholder,
.product-tabs-section #reviews #review_form_wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.product-tabs-section #reviews #review_form_wrapper .form-submit .submit {
  color: #ffffff !important;
  background: #e75d0d;
  border: solid 1px #e75d0d;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 30px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Hartwell Alt", sans-serif;
  transition: all 0.3s ease;
}
.product-tabs-section #reviews #review_form_wrapper .form-submit .submit:hover {
  border-color: #ffffff;
  background: transparent;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.woocommerce-single-product .related.products,
.woocommerce-single-product .upsells.products {
  padding: 60px 0 0;
}
.woocommerce-single-product .related.products > h2,
.woocommerce-single-product .upsells.products > h2 {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.woocommerce-single-product .related.products > h2::after,
.woocommerce-single-product .upsells.products > h2::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background-color: #e75d0d;
  margin-top: 12px;
}
.woocommerce-single-product .related.products ul.products,
.woocommerce-single-product .upsells.products ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-single-product .related.products ul.products li.product,
.woocommerce-single-product .upsells.products ul.products li.product {
  background-color: #23315f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.woocommerce-single-product .related.products ul.products li.product:hover,
.woocommerce-single-product .upsells.products ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.woocommerce-single-product .related.products ul.products li.product a,
.woocommerce-single-product .upsells.products ul.products li.product a {
  text-decoration: none;
}
.woocommerce-single-product .related.products ul.products li.product img,
.woocommerce-single-product .upsells.products ul.products li.product img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
}
.woocommerce-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
.woocommerce-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  padding: 14px 14px 6px;
  margin: 0;
}
.woocommerce-single-product .related.products ul.products li.product .price,
.woocommerce-single-product .upsells.products ul.products li.product .price {
  padding: 0 14px 12px;
}
.woocommerce-single-product .related.products ul.products li.product .price bdi,
.woocommerce-single-product .related.products ul.products li.product .price .woocommerce-Price-amount,
.woocommerce-single-product .upsells.products ul.products li.product .price bdi,
.woocommerce-single-product .upsells.products ul.products li.product .price .woocommerce-Price-amount {
  color: #e75d0d;
  font-size: 19px;
  font-weight: 700;
}
.woocommerce-single-product .related.products ul.products li.product .add_to_cart_button,
.woocommerce-single-product .related.products ul.products li.product .button,
.woocommerce-single-product .upsells.products ul.products li.product .add_to_cart_button,
.woocommerce-single-product .upsells.products ul.products li.product .button {
  display: block;
  margin: 0 14px 14px;
  color: #ffffff !important;
  background: #e75d0d;
  border: 1px solid #e75d0d;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 18px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Hartwell Alt", sans-serif;
  transition: all 0.3s ease;
}
.woocommerce-single-product .related.products ul.products li.product .add_to_cart_button:hover,
.woocommerce-single-product .related.products ul.products li.product .button:hover,
.woocommerce-single-product .upsells.products ul.products li.product .add_to_cart_button:hover,
.woocommerce-single-product .upsells.products ul.products li.product .button:hover {
  background: transparent;
  border-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.woocommerce-single-product .related.products ul.products li.product .onsale,
.woocommerce-single-product .upsells.products ul.products li.product .onsale {
  background-color: #e75d0d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: "Hartwell Alt", sans-serif;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top: 3px solid #e75d0d;
  background: #141c36;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 0 0 6px 6px;
  margin-bottom: 18px;
  list-style: none;
  font-family: "Hartwell Alt", sans-serif;
  padding-left: 70px;
}
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: #e75d0d;
  font-size: 14px;
}
.woocommerce-message a:hover,
.woocommerce-info a:hover,
.woocommerce-error a:hover {
  color: #ffffff;
}
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  color: #ffffff !important;
  background: #e75d0d;
  border: 1px solid #e75d0d;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 18px;
  text-transform: uppercase;
  font-family: "Hartwell Alt", sans-serif;
  transition: all 0.3s ease;
}
.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
  background: transparent;
  border-color: #ffffff;
}

@media (max-width: 991px) {
  .product-main-section {
    padding: 40px 0 50px;
  }
  .product-gallery-wrapper {
    margin-bottom: 36px;
  }
  .product-summary-wrapper .product_title {
    font-size: 26px;
  }
  .product-summary-wrapper .price bdi,
  .product-summary-wrapper .price .woocommerce-Price-amount {
    font-size: 24px;
  }
  .woocommerce-tabs .tabs li a {
    padding: 10px 18px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .product-summary-wrapper .cart {
    flex-direction: column;
    align-items: stretch;
  }
  .product-summary-wrapper .cart .single_add_to_cart_button {
    width: 100%;
  }
  .product-summary-wrapper .variations_form .variations .value select {
    min-width: 100%;
    width: 100%;
  }
  .related.products ul.products,
  .upsells.products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cart-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) and (min-width: 769px) {
  .cart-icon-link {
    justify-content: flex-end;
    margin-top: 10px;
  }
}
.cart-icon-link svg {
  display: block;
}
.cart-icon-link:hover {
  opacity: 0.75;
}
.cart-icon-link .cart-icon-count {
  position: absolute;
  top: -5px;
  right: -6px;
  background-color: #e75d0d;
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-order-received,
body.woocommerce-account {
  background-color: #23315f;
}
body.woocommerce-cart .entry-content,
body.woocommerce-cart .page-content,
body.woocommerce-cart #primary,
body.woocommerce-cart .site-main,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .page-content,
body.woocommerce-checkout #primary,
body.woocommerce-checkout .site-main,
body.woocommerce-order-received .entry-content,
body.woocommerce-order-received .page-content,
body.woocommerce-order-received #primary,
body.woocommerce-order-received .site-main,
body.woocommerce-account .entry-content,
body.woocommerce-account .page-content,
body.woocommerce-account #primary,
body.woocommerce-account .site-main {
  background-color: #23315f;
}

.woocommerce h2,
.woocommerce h3 {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.woocommerce h2::after,
.woocommerce h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background-color: #e75d0d;
  margin-top: 10px;
  margin-bottom: 20px;
}
.woocommerce input[type=text],
.woocommerce input[type=email],
.woocommerce input[type=tel],
.woocommerce input[type=number],
.woocommerce input[type=password],
.woocommerce textarea,
.woocommerce select {
  background-color: #141c36;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.woocommerce input[type=text]:focus,
.woocommerce input[type=email]:focus,
.woocommerce input[type=tel]:focus,
.woocommerce input[type=number]:focus,
.woocommerce input[type=password]:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  border-color: #e75d0d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 93, 13, 0.2);
}
.woocommerce input[type=text]::placeholder,
.woocommerce input[type=email]::placeholder,
.woocommerce input[type=tel]::placeholder,
.woocommerce input[type=number]::placeholder,
.woocommerce input[type=password]::placeholder,
.woocommerce textarea::placeholder,
.woocommerce select::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.woocommerce select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e75d0d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 13px center !important;
  padding-right: 38px !important;
}
.woocommerce select option {
  background-color: #141c36;
  color: #ffffff;
}
.woocommerce label {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: block;
}
.woocommerce .button,
.woocommerce button[type=submit]:not(.single_add_to_cart_button) {
  color: #ffffff !important;
  background: #e75d0d !important;
  border: 1px solid #e75d0d !important;
  border-radius: 20px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 10px 28px !important;
  font-family: "Hartwell Alt", sans-serif !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.woocommerce .button:hover,
.woocommerce button[type=submit]:not(.single_add_to_cart_button):hover {
  background: transparent !important;
  border-color: #ffffff !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25) !important;
}

body.woocommerce-cart {
  background-color: #23315f;
}

body.woocommerce-cart table.shop_table,
body.woocommerce-cart table.shop_table td,
body.woocommerce-cart table.shop_table th {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

body.woocommerce-cart table.shop_table a {
  color: #ffffff !important;
}

.woocommerce-cart .woocommerce-cart-form {
  margin-bottom: 50px;
}
.woocommerce-cart .woocommerce-cart-form .shop_table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}
.woocommerce-cart .woocommerce-cart-form .shop_table thead tr {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.woocommerce-cart .woocommerce-cart-form .shop_table thead tr th {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0 12px 14px;
  text-align: left;
}
.woocommerce-cart .woocommerce-cart-form .shop_table thead tr th.product-remove, .woocommerce-cart .woocommerce-cart-form .shop_table thead tr th.product-thumbnail {
  width: 40px;
}
.woocommerce-cart .woocommerce-cart-form .shop_table thead tr th.product-subtotal {
  text-align: right;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item td {
  padding: 20px 12px;
  vertical-align: middle;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-size: 16px;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove a:hover {
  color: #ffffff;
  border-color: #e75d0d;
  background-color: #e75d0d;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-thumbnail img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name a {
  color: #ffffff !important;
  font-family: "Hartwell Alt", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name a:hover {
  color: #e75d0d;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name dl.variation,
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .wc-item-meta {
  margin-top: 6px;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name dl.variation dt,
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name dl.variation .wc-item-meta-label,
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .wc-item-meta dt,
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .wc-item-meta .wc-item-meta-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name dl.variation dd,
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name dl.variation p,
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .wc-item-meta dd,
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .wc-item-meta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  display: inline;
  margin: 0;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-price .woocommerce-Price-amount,
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-subtotal .woocommerce-Price-amount {
  color: #e75d0d;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-subtotal {
  text-align: right;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .quantity {
  display: flex;
  align-items: center;
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .quantity .qty {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 52px;
  text-align: center;
  padding: 8px 4px;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .quantity .qty:focus {
  outline: none;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .quantity .qty::-webkit-inner-spin-button, .woocommerce-cart .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .actions {
  padding: 24px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .actions .coupon {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .actions .coupon label {
  display: none;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .actions .coupon input[type=text] {
  width: auto !important;
  min-width: 200px;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .actions button[name=update_cart] {
  margin-left: auto;
}
.woocommerce-cart .cart-collaterals {
  display: flex;
  justify-content: flex-end;
}
.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
  max-width: 420px;
  background-color: #141c36;
  border-radius: 10px;
  padding: 30px;
}
.woocommerce-cart .cart-collaterals .cart_totals h2 {
  font-size: 20px;
  margin-bottom: 0;
}
.woocommerce-cart .cart-collaterals .cart_totals h2::after {
  margin-bottom: 24px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr:last-child {
  border-bottom: none;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table th {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 0;
  text-align: left;
  width: 40%;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table td {
  padding: 12px 0;
  text-align: right;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table td .woocommerce-Price-amount {
  color: #e75d0d;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.order-total .woocommerce-cart .cart-collaterals .cart_totals .shop_table td .woocommerce-Price-amount {
  font-size: 22px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table .order-total td .woocommerce-Price-amount {
  font-size: 22px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table .woocommerce-shipping-totals td {
  text-align: left;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table .woocommerce-shipping-totals .woocommerce-shipping-calculator {
  margin-top: 10px;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 16px !important;
  padding: 13px 28px !important;
}
@media (max-width: 767px) {
  .woocommerce-cart .shop_table thead th.product-price {
    display: none;
  }
  .woocommerce-cart .shop_table .product-price {
    display: none;
  }
  .woocommerce-cart .cart-collaterals {
    justify-content: stretch;
  }
  .woocommerce-cart .cart_totals {
    max-width: 100% !important;
  }
  .woocommerce-cart .actions {
    flex-direction: column;
    align-items: stretch !important;
  }
  .woocommerce-cart .actions .coupon {
    flex-direction: column;
  }
  .woocommerce-cart .actions .coupon input[type=text] {
    min-width: 100% !important;
  }
  .woocommerce-cart .actions button[name=update_cart] {
    width: 100% !important;
  }
}

.woocommerce-checkout .woocommerce {
  padding: 60px 0 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.woocommerce-checkout .woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .woocommerce-checkout .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.woocommerce-checkout .woocommerce-checkout .woocommerce-shipping-fields h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.woocommerce-checkout .woocommerce-checkout .woocommerce-shipping-fields h3 label {
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}
.woocommerce-checkout .woocommerce-checkout .woocommerce-shipping-fields h3 input[type=checkbox] {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  accent-color: #e75d0d;
  cursor: pointer;
}
.woocommerce-checkout .woocommerce-checkout .form-row {
  margin-bottom: 16px;
}
.woocommerce-checkout .woocommerce-checkout .form-row .optional {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
}
.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-invalid input {
  border-color: #e05c5c !important;
}
.woocommerce-checkout .woocommerce-checkout .form-row .woocommerce-error {
  color: #e05c5c;
  font-size: 13px;
  margin-top: 5px;
  background: none;
  border: none;
  padding: 0;
}
.woocommerce-checkout .woocommerce-checkout .woocommerce-additional-fields {
  margin-bottom: 40px;
}
.woocommerce-checkout .woocommerce-checkout .woocommerce-additional-fields textarea {
  min-height: 100px;
}
.woocommerce-checkout .woocommerce-checkout #order_review_heading {
  margin-bottom: 0;
}
.woocommerce-checkout .woocommerce-checkout #order_review {
  background-color: #141c36;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead th {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead th:last-child {
  text-align: right;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody tr td {
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  vertical-align: middle;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody tr td:last-child {
  text-align: right;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody tr td .woocommerce-Price-amount {
  color: #e75d0d;
  font-weight: 700;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody tr td .product-quantity {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot tr {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot tr th {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 0;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot tr td {
  text-align: right;
  padding: 12px 0;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot tr td .woocommerce-Price-amount {
  color: #e75d0d;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.woocommerce-checkout .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot tr.order-total td .woocommerce-Price-amount {
  font-size: 22px;
}
.woocommerce-checkout .woocommerce-checkout #payment {
  background-color: #141c36;
  border-radius: 10px;
  padding: 30px;
}
.woocommerce-checkout .woocommerce-checkout #payment .payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.woocommerce-checkout .woocommerce-checkout #payment .payment_methods li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}
.woocommerce-checkout .woocommerce-checkout #payment .payment_methods li:last-child {
  border-bottom: none;
}
.woocommerce-checkout .woocommerce-checkout #payment .payment_methods li label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-transform: none;
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
}
.woocommerce-checkout .woocommerce-checkout #payment .payment_methods li label img {
  max-height: 24px;
  width: auto;
}
.woocommerce-checkout .woocommerce-checkout #payment .payment_methods li input[type=radio] {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: none !important;
  accent-color: #e75d0d;
  cursor: pointer;
}
.woocommerce-checkout .woocommerce-checkout #payment .payment_methods li .payment_box {
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 14px;
  margin-top: 10px;
}
.woocommerce-checkout .woocommerce-checkout #payment .payment_methods li .payment_box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}
.woocommerce-checkout .woocommerce-checkout #payment #place_order {
  width: 100%;
  font-size: 17px !important;
  padding: 14px 28px !important;
}
.woocommerce-checkout .woocommerce-checkout #payment .woocommerce-privacy-policy-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  margin-top: 14px;
  text-align: center;
}
.woocommerce-checkout .woocommerce-checkout #payment .woocommerce-privacy-policy-text a {
  color: #e75d0d;
  font-size: 12px;
}

.woocommerce-order-received .woocommerce {
  padding: 60px 0 80px;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.woocommerce-order-received .woocommerce-thankyou-order-received {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 30px;
  background-color: #141c36;
  border-radius: 10px;
  border-left: 4px solid #e75d0d;
  margin-bottom: 40px;
}
.woocommerce-order-received .woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.woocommerce-order-received .woocommerce-order-overview li {
  background-color: #141c36;
  border-radius: 8px;
  padding: 18px 24px;
  flex: 1;
  min-width: 140px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-family: "Hartwell Alt", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.woocommerce-order-received .woocommerce-order-overview li strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-top: 6px;
  text-transform: none;
}
.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
  background-color: #141c36;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}
.woocommerce-order-received .woocommerce-order-details h2,
.woocommerce-order-received .woocommerce-customer-details h2 {
  font-size: 20px;
  margin-bottom: 0;
}
.woocommerce-order-received .woocommerce-order-details h2::after,
.woocommerce-order-received .woocommerce-customer-details h2::after {
  margin-bottom: 20px;
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table thead th,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table thead th {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table thead th:last-child,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table thead th:last-child {
  text-align: right;
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table tbody td,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table tbody td {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table tbody td:last-child,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table tbody td:last-child {
  text-align: right;
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table tbody td .woocommerce-Price-amount,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table tbody td .woocommerce-Price-amount {
  color: #e75d0d;
  font-weight: 700;
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table tfoot th,
.woocommerce-order-received .woocommerce-order-details .woocommerce-table tfoot td,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table tfoot th,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table tfoot td {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table tfoot td,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table tfoot td {
  text-align: right;
  color: #ffffff;
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table tfoot td .woocommerce-Price-amount,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table tfoot td .woocommerce-Price-amount {
  color: #e75d0d;
  font-size: 18px;
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-table tfoot .order-total td .woocommerce-Price-amount,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-table tfoot .order-total td .woocommerce-Price-amount {
  font-size: 22px;
}
.woocommerce-order-received .woocommerce-order-details address,
.woocommerce-order-received .woocommerce-customer-details address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
}

.cart-page-section {
  padding: 60px 0;
  background-color: #23315f;
}
.cart-page-section .cart-page-title {
  font-family: "Hartwell Alt", sans-serif;
  color: #23315f;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.cart-page-section .cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cart-page-section .cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
}
.cart-page-section .cart-item .cart-item-thumbnail {
  flex: 0 0 90px;
}
.cart-page-section .cart-item .cart-item-thumbnail img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
.cart-page-section .cart-item .cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-page-section .cart-item .cart-item-info .cart-item-name a {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cart-page-section .cart-item .cart-item-info .cart-item-name a:hover {
  color: #e75d0d;
}
.cart-page-section .cart-item .cart-item-info .cart-item-name dl.variation,
.cart-page-section .cart-item .cart-item-info .cart-item-name .wc-item-meta {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.cart-page-section .cart-item .cart-item-info .cart-item-price {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  margin-top: 6px;
}
.cart-page-section .cart-item .cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cart-page-section .cart-item .cart-item-actions .quantity {
  display: flex;
  align-items: center;
  background-color: #23315f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
}
.cart-page-section .cart-item .cart-item-actions .quantity .qty {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 48px;
  text-align: center;
  padding: 8px 4px;
}
.cart-page-section .cart-item .cart-item-actions .quantity .qty:focus {
  outline: none;
}
.cart-page-section .cart-item .cart-item-actions .quantity .qty::-webkit-inner-spin-button, .cart-page-section .cart-item .cart-item-actions .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.cart-page-section .cart-item .cart-item-actions .cart-item-subtotal {
  color: #e75d0d;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.cart-page-section .cart-item .cart-item-actions .cart-item-subtotal .woocommerce-Price-amount {
  color: inherit;
}
.cart-page-section .cart-item .cart-item-actions .cart-item-remove {
  color: rgba(255, 255, 255, 0.35);
  font-size: 22px;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s ease;
}
.cart-page-section .cart-item .cart-item-actions .cart-item-remove:hover {
  color: #e75d0d;
}
.cart-page-section .cart-form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-page-section .cart-form-actions .cart-coupon {
  display: flex;
  gap: 8px;
  flex: 1;
}
.cart-page-section .cart-form-actions .cart-coupon input {
  flex: 1;
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  padding: 9px 14px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
}
.cart-page-section .cart-form-actions .cart-coupon input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.cart-page-section .cart-form-actions .cart-coupon input:focus {
  outline: none;
  border-color: #e75d0d;
}
.cart-page-section .cart-form-actions .cart-coupon button {
  background-color: transparent;
  border: 1px solid #e75d0d;
  border-radius: 6px;
  color: #e75d0d;
  padding: 9px 18px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cart-page-section .cart-form-actions .cart-coupon button:hover {
  background-color: #e75d0d;
  color: #ffffff;
}
.cart-page-section .cart-form-actions .cart-update-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.55);
  padding: 9px 22px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cart-page-section .cart-form-actions .cart-update-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.cart-page-section .cart-summary {
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 28px;
  position: sticky;
  top: 100px;
}
.cart-page-section .cart-summary .cart_totals h2 {
  font-family: "Hartwell Alt", sans-serif;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.cart-page-section .cart-summary .cart_totals table {
  width: 100%;
  border-collapse: collapse;
}
.cart-page-section .cart-summary .cart_totals table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-page-section .cart-summary .cart_totals table tr th,
.cart-page-section .cart-summary .cart_totals table tr td {
  padding: 12px 0;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  vertical-align: middle;
}
.cart-page-section .cart-summary .cart_totals table tr th {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  text-align: left;
}
.cart-page-section .cart-summary .cart_totals table tr td {
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}
.cart-page-section .cart-summary .cart_totals table tr.order-total {
  border-bottom: none;
}
.cart-page-section .cart-summary .cart_totals table tr.order-total th,
.cart-page-section .cart-summary .cart_totals table tr.order-total td {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  padding-top: 18px;
}
.cart-page-section .cart-summary .cart_totals table tr.order-total .woocommerce-Price-amount {
  color: #e75d0d;
}
.cart-page-section .cart-summary .cart_totals .wc-proceed-to-checkout {
  margin-top: 22px;
}
.cart-page-section .cart-summary .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: block;
  text-align: center;
  background-color: #e75d0d;
  color: #ffffff !important;
  border: 1px solid #e75d0d;
  border-radius: 20px;
  padding: 13px 30px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cart-page-section .cart-summary .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background-color: transparent;
  border-color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.cart-page-section .cart-empty-wrapper {
  text-align: center;
  padding: 80px 20px;
}
.cart-page-section .cart-empty-wrapper .woocommerce-info {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 16px;
  margin-bottom: 28px;
  border: none;
  background: none;
  padding: 0;
}
.cart-page-section .cart-empty-wrapper .woocommerce-info::before {
  display: none;
}
.cart-page-section .cart-empty-wrapper .btn-return-shop {
  display: inline-block;
  background-color: #e75d0d;
  color: #ffffff !important;
  border: 1px solid #e75d0d;
  border-radius: 20px;
  padding: 12px 28px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cart-page-section .cart-empty-wrapper .btn-return-shop:hover {
  background-color: transparent;
  border-color: #ffffff;
}
@media (max-width: 767px) {
  .cart-page-section {
    padding: 40px 0;
  }
  .cart-page-section .cart-page-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .cart-page-section .cart-item {
    flex-wrap: wrap;
    gap: 14px;
  }
  .cart-page-section .cart-item .cart-item-thumbnail {
    flex: 0 0 70px;
  }
  .cart-page-section .cart-item .cart-item-thumbnail img {
    width: 70px;
    height: 70px;
  }
  .cart-page-section .cart-item .cart-item-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .cart-page-section .cart-form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cart-page-section .cart-form-actions .cart-coupon {
    flex-direction: row;
  }
  .cart-page-section .cart-form-actions .cart-update-btn {
    text-align: center;
  }
}

.checkout-page-section {
  padding: 60px 0;
  background-color: #23315f;
}
.checkout-page-section .checkout-page-title {
  font-family: "Hartwell Alt", sans-serif;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.checkout-page-section .checkout-login-required {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  margin-bottom: 24px;
}
.checkout-page-section .checkout-section {
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 20px;
}
.checkout-page-section .checkout-section h3 {
  font-family: "Hartwell Alt", sans-serif;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row {
  margin-bottom: 16px;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row label,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row label,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row label {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row label .required,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row label .required,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row label .required {
  color: #e75d0d;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=text],
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=email],
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=tel],
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=number],
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=password],
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row select,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row textarea,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=text],
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=email],
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=tel],
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=number],
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=password],
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row select,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row textarea,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=text],
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=email],
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=tel],
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=number],
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=password],
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row select,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row textarea {
  width: 100%;
  background-color: #23315f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color 0.2s ease;
  appearance: none;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=text]::placeholder,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=email]::placeholder,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=tel]::placeholder,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=number]::placeholder,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=password]::placeholder,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row select::placeholder,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row textarea::placeholder,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=text]::placeholder,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=email]::placeholder,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=tel]::placeholder,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=number]::placeholder,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=password]::placeholder,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row select::placeholder,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row textarea::placeholder,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=text]::placeholder,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=email]::placeholder,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=tel]::placeholder,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=number]::placeholder,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=password]::placeholder,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row select::placeholder,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=text]:focus,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=email]:focus,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=tel]:focus,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=number]:focus,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row input[type=password]:focus,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row select:focus,
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row textarea:focus,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=text]:focus,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=email]:focus,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=tel]:focus,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=number]:focus,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row input[type=password]:focus,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row select:focus,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row textarea:focus,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=text]:focus,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=email]:focus,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=tel]:focus,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=number]:focus,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row input[type=password]:focus,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row select:focus,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row textarea:focus {
  outline: none;
  border-color: #e75d0d;
  box-shadow: 0 0 0 3px rgba(231, 93, 13, 0.15);
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row select,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row select,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e75d0d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
  cursor: pointer;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row select option,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row select option,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row select option {
  background-color: #141c36;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row textarea,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row textarea,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row textarea {
  resize: vertical;
  min-height: 100px;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row .woocommerce-input-wrapper,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row .woocommerce-input-wrapper {
  display: block;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row.woocommerce-invalid input, .checkout-page-section .checkout-section .woocommerce-billing-fields .form-row.woocommerce-invalid select,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row.woocommerce-invalid input,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row.woocommerce-invalid select,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row.woocommerce-invalid input,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row.woocommerce-invalid select {
  border-color: #e05252;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .form-row .woocommerce-error,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .form-row .woocommerce-error,
.checkout-page-section .checkout-section .woocommerce-additional-fields .form-row .woocommerce-error {
  color: #e05252;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .woocommerce-form__label-for-checkbox,
.checkout-page-section .checkout-section .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox,
.checkout-page-section .checkout-section .woocommerce-additional-fields .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.checkout-page-section .checkout-section .woocommerce-billing-fields .woocommerce-form__label-for-checkbox input[type=checkbox],
.checkout-page-section .checkout-section .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox input[type=checkbox],
.checkout-page-section .checkout-section .woocommerce-additional-fields .woocommerce-form__label-for-checkbox input[type=checkbox] {
  accent-color: #e75d0d;
}
.checkout-page-section .checkout-summary {
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 28px;
  position: sticky;
  top: 100px;
}
.checkout-page-section .checkout-summary .checkout-summary-title {
  font-family: "Hartwell Alt", sans-serif;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table thead tr th {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody .cart_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody .cart_item td {
  padding: 12px 0;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  vertical-align: middle;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody .cart_item td.product-name .wc-item-meta,
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody .cart_item td.product-name dl.variation {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 4px 0 0;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody .cart_item td.product-total {
  text-align: right;
  color: #ffffff;
  font-weight: 700;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot tr th {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot tr td {
  padding: 10px 0;
  text-align: right;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot tr.order-total {
  border-bottom: none;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot tr.order-total th {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding-top: 16px;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot tr.order-total td {
  padding-top: 16px;
  font-size: 17px;
  font-weight: 700;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot tr.order-total .woocommerce-Price-amount {
  color: #e75d0d;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment {
  margin-top: 10px;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method {
  background-color: #23315f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method > label input[type=radio] {
  accent-color: #e75d0d;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method > label img {
  height: 24px;
  width: auto;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .payment_box {
  background-color: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  line-height: 1.6;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .payment_box input[type=text],
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .payment_box input[type=tel] {
  width: 100%;
  background-color: #23315f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ffffff;
  padding: 9px 12px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  margin-top: 8px;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .payment_box input[type=text]:focus,
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .payment_box input[type=tel]:focus {
  outline: none;
  border-color: #e75d0d;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-family: "Hartwell Alt", sans-serif;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .woocommerce-terms-and-conditions-wrapper a {
  color: #e75d0d;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input[type=checkbox] {
  accent-color: #e75d0d;
  margin-top: 2px;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment #place_order {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #e75d0d;
  color: #ffffff !important;
  border: 1px solid #e75d0d;
  border-radius: 20px;
  padding: 14px 30px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment #place_order:hover {
  background-color: transparent;
  border-color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment #place_order.disabled, .checkout-page-section .checkout-summary .woocommerce-checkout-review-order #payment #place_order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 767px) {
  .checkout-page-section {
    padding: 40px 0;
  }
  .checkout-page-section .checkout-page-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .checkout-page-section .checkout-section {
    padding: 20px;
  }
  .checkout-page-section .checkout-summary {
    padding: 20px;
    position: static;
  }
}
.checkout-page-section .woocommerce-order,
.checkout-page-section .woocommerce-order-overview,
.checkout-page-section .woocommerce-notice,
.checkout-page-section .woocommerce-thankyou-order-received,
.checkout-page-section .woocommerce-thankyou-order-details {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
}
.checkout-page-section .woocommerce-order li,
.checkout-page-section .woocommerce-order-overview li,
.checkout-page-section .woocommerce-notice li,
.checkout-page-section .woocommerce-thankyou-order-received li,
.checkout-page-section .woocommerce-thankyou-order-details li {
  color: #ffffff;
}
.checkout-page-section .woocommerce-order strong,
.checkout-page-section .woocommerce-order-overview strong,
.checkout-page-section .woocommerce-notice strong,
.checkout-page-section .woocommerce-thankyou-order-received strong,
.checkout-page-section .woocommerce-thankyou-order-details strong {
  color: #ffffff;
}
.checkout-page-section .woocommerce-order p,
.checkout-page-section .woocommerce-order-overview p,
.checkout-page-section .woocommerce-notice p,
.checkout-page-section .woocommerce-thankyou-order-received p,
.checkout-page-section .woocommerce-thankyou-order-details p {
  color: rgba(255, 255, 255, 0.7);
}
.checkout-page-section .woocommerce-order a,
.checkout-page-section .woocommerce-order-overview a,
.checkout-page-section .woocommerce-notice a,
.checkout-page-section .woocommerce-thankyou-order-received a,
.checkout-page-section .woocommerce-thankyou-order-details a {
  color: #e75d0d;
}
.checkout-page-section .woocommerce-order a:hover,
.checkout-page-section .woocommerce-order-overview a:hover,
.checkout-page-section .woocommerce-notice a:hover,
.checkout-page-section .woocommerce-thankyou-order-received a:hover,
.checkout-page-section .woocommerce-thankyou-order-details a:hover {
  color: #ffffff;
}
.checkout-page-section .thankyou-header {
  text-align: center;
  padding: 50px 20px 40px;
}
.checkout-page-section .thankyou-header .thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(231, 93, 13, 0.15);
  color: #e75d0d;
  margin-bottom: 20px;
}
.checkout-page-section .thankyou-header .thankyou-title {
  font-family: "Hartwell Alt", sans-serif;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.checkout-page-section .thankyou-header .thankyou-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
}
.checkout-page-section .thankyou-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.checkout-page-section .thankyou-overview .thankyou-overview-item {
  flex: 1 1 calc(50% - 1px);
  background-color: #141c36;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkout-page-section .thankyou-overview .thankyou-overview-item .label {
  color: rgba(255, 255, 255, 0.45);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.checkout-page-section .thankyou-overview .thankyou-overview-item strong {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.checkout-page-section .thankyou-overview .thankyou-overview-item strong.total-amount .woocommerce-Price-amount {
  color: #e75d0d;
}
.checkout-page-section .thankyou-section {
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}
.checkout-page-section .thankyou-section .thankyou-section-title {
  font-family: "Hartwell Alt", sans-serif;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.checkout-page-section .thankyou-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.checkout-page-section .thankyou-items .thankyou-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-thumbnail {
  flex: 0 0 60px;
}
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-info {
  flex: 1;
  min-width: 0;
}
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-info .thankyou-item-name a {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-info .thankyou-item-name a:hover {
  color: #e75d0d;
}
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-info .thankyou-item-name dl,
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-info .thankyou-item-name .wc-item-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 3px 0 0;
}
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-info .thankyou-item-qty {
  color: rgba(255, 255, 255, 0.45);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  margin-top: 3px;
}
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-total {
  color: #e75d0d;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.checkout-page-section .thankyou-items .thankyou-item .thankyou-item-total .woocommerce-Price-amount {
  color: inherit;
}
.checkout-page-section .thankyou-totals {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-page-section .thankyou-totals .thankyou-total-row {
  display: flex;
  justify-content: space-between;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.checkout-page-section .thankyou-totals .thankyou-total-row.order-total {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.checkout-page-section .thankyou-totals .thankyou-total-row.order-total .woocommerce-Price-amount {
  color: #e75d0d;
}
.checkout-page-section .thankyou-address-box {
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 16px;
}
.checkout-page-section .thankyou-address-box .thankyou-address-title {
  font-family: "Hartwell Alt", sans-serif;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.checkout-page-section .thankyou-address-box address {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}
.checkout-page-section .thankyou-failed {
  text-align: center;
  padding: 50px 20px;
}
.checkout-page-section .thankyou-failed .thankyou-failed-msg {
  color: #e05252;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 16px;
  margin-bottom: 24px;
}
.checkout-page-section .thankyou-failed .thankyou-failed-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.checkout-page-section .thankyou-failed .thankyou-failed-actions .btn-pay {
  background-color: #e75d0d;
  color: #ffffff !important;
  border: 1px solid #e75d0d;
  border-radius: 20px;
  padding: 11px 26px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.checkout-page-section .thankyou-failed .thankyou-failed-actions .btn-pay:hover {
  background-color: transparent;
  border-color: #ffffff;
}
.checkout-page-section .thankyou-failed .thankyou-failed-actions .btn-account {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 11px 26px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.checkout-page-section .thankyou-failed .thankyou-failed-actions .btn-account:hover {
  border-color: #ffffff;
  color: #ffffff !important;
}
.checkout-page-section .woocommerce-table--order-details td,
.checkout-page-section .woocommerce-table--order-details th {
  color: #ffffff;
}
.checkout-page-section address {
  color: #ffffff;
}
@media (max-width: 767px) {
  .checkout-page-section .thankyou-overview .thankyou-overview-item {
    flex: 1 1 100%;
  }
  .checkout-page-section .thankyou-header {
    padding: 30px 0 24px;
  }
  .checkout-page-section .thankyou-header .thankyou-title {
    font-size: 22px;
  }
}

.account-page-section {
  padding: 60px 0 80px;
  background-color: #23315f;
}
.account-page-section .account-content .woocommerce-ResetPassword .form-row input[type=text],
.account-page-section .account-content .woocommerce-ResetPassword .form-row input[type=email],
.account-page-section .account-content .woocommerce-ResetPassword .form-row input[type=password],
.account-page-section .account-content .lost_reset_password .form-row input[type=text],
.account-page-section .account-content .lost_reset_password .form-row input[type=email],
.account-page-section .account-content .lost_reset_password .form-row input[type=password], .account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=text],
.account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=email],
.account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=tel],
.account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=password],
.account-page-section .account-content .woocommerce-EditAccountForm .form-row select,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row textarea,
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=text],
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=email],
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=tel],
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=password],
.account-page-section .account-content .woocommerce-address-fields .form-row select,
.account-page-section .account-content .woocommerce-address-fields .form-row textarea,
.account-page-section .account-content .edit-account .form-row input[type=text],
.account-page-section .account-content .edit-account .form-row input[type=email],
.account-page-section .account-content .edit-account .form-row input[type=tel],
.account-page-section .account-content .edit-account .form-row input[type=password],
.account-page-section .account-content .edit-account .form-row select,
.account-page-section .account-content .edit-account .form-row textarea, .account-page-section .account-form-row input[type=text],
.account-page-section .account-form-row input[type=email],
.account-page-section .account-form-row input[type=password] {
  width: 100%;
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}
.account-page-section .account-content .woocommerce-ResetPassword .form-row input[type=text]::placeholder,
.account-page-section .account-content .woocommerce-ResetPassword .form-row input[type=email]::placeholder,
.account-page-section .account-content .woocommerce-ResetPassword .form-row input[type=password]::placeholder,
.account-page-section .account-content .lost_reset_password .form-row input[type=text]::placeholder,
.account-page-section .account-content .lost_reset_password .form-row input[type=email]::placeholder,
.account-page-section .account-content .lost_reset_password .form-row input[type=password]::placeholder, .account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=text]::placeholder,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=email]::placeholder,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=tel]::placeholder,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=password]::placeholder,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row select::placeholder,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row textarea::placeholder,
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=text]::placeholder,
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=email]::placeholder,
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=tel]::placeholder,
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=password]::placeholder,
.account-page-section .account-content .woocommerce-address-fields .form-row select::placeholder,
.account-page-section .account-content .woocommerce-address-fields .form-row textarea::placeholder,
.account-page-section .account-content .edit-account .form-row input[type=text]::placeholder,
.account-page-section .account-content .edit-account .form-row input[type=email]::placeholder,
.account-page-section .account-content .edit-account .form-row input[type=tel]::placeholder,
.account-page-section .account-content .edit-account .form-row input[type=password]::placeholder,
.account-page-section .account-content .edit-account .form-row select::placeholder,
.account-page-section .account-content .edit-account .form-row textarea::placeholder, .account-page-section .account-form-row input[type=text]::placeholder,
.account-page-section .account-form-row input[type=email]::placeholder,
.account-page-section .account-form-row input[type=password]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.account-page-section .account-content .woocommerce-ResetPassword .form-row input[type=text]:focus,
.account-page-section .account-content .woocommerce-ResetPassword .form-row input[type=email]:focus,
.account-page-section .account-content .woocommerce-ResetPassword .form-row input[type=password]:focus,
.account-page-section .account-content .lost_reset_password .form-row input[type=text]:focus,
.account-page-section .account-content .lost_reset_password .form-row input[type=email]:focus,
.account-page-section .account-content .lost_reset_password .form-row input[type=password]:focus, .account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=text]:focus,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=email]:focus,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=tel]:focus,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row input[type=password]:focus,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row select:focus,
.account-page-section .account-content .woocommerce-EditAccountForm .form-row textarea:focus,
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=text]:focus,
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=email]:focus,
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=tel]:focus,
.account-page-section .account-content .woocommerce-address-fields .form-row input[type=password]:focus,
.account-page-section .account-content .woocommerce-address-fields .form-row select:focus,
.account-page-section .account-content .woocommerce-address-fields .form-row textarea:focus,
.account-page-section .account-content .edit-account .form-row input[type=text]:focus,
.account-page-section .account-content .edit-account .form-row input[type=email]:focus,
.account-page-section .account-content .edit-account .form-row input[type=tel]:focus,
.account-page-section .account-content .edit-account .form-row input[type=password]:focus,
.account-page-section .account-content .edit-account .form-row select:focus,
.account-page-section .account-content .edit-account .form-row textarea:focus, .account-page-section .account-form-row input[type=text]:focus,
.account-page-section .account-form-row input[type=email]:focus,
.account-page-section .account-form-row input[type=password]:focus {
  outline: none;
  border-color: #e75d0d;
  box-shadow: 0 0 0 3px rgba(231, 93, 13, 0.15);
}
.account-page-section .account-auth-wrapper {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .account-page-section .account-auth-wrapper {
    grid-template-columns: 1fr;
  }
}
.account-page-section .woocommerce-table--order-details th,
.account-page-section .woocommerce-table--order-details td {
  color: #ffffff;
}
.account-page-section address,
.account-page-section label {
  color: #ffffff;
}
.account-page-section .woocommerce-PaymentBox {
  background-color: #23315f !important;
}
.account-page-section .account-form-box {
  width: 100%;
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px 32px;
}
@media (max-width: 575px) {
  .account-page-section .account-form-box {
    padding: 24px 20px;
  }
}
.account-page-section .account-form-box .woocommerce-message,
.account-page-section .account-form-box .woocommerce-info {
  background: rgba(231, 93, 13, 0.12);
  border: 1px solid rgba(231, 93, 13, 0.35);
  border-top: 3px solid #e75d0d;
  border-radius: 6px;
  padding: 14px 18px;
  padding-left: 18px;
  margin-bottom: 24px;
  color: #ffffff;
  list-style: none;
}
.account-page-section .account-form-box .woocommerce-error {
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.35);
  border-top: 3px solid #c0392b;
  border-radius: 6px;
  padding: 14px 18px;
  padding-left: 18px;
  margin-bottom: 24px;
  color: #ffffff;
  list-style: none;
}
.account-page-section .account-form-title {
  font-family: "Hartwell Alt", sans-serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.account-page-section .account-form-row {
  margin-bottom: 18px;
}
.account-page-section .account-form-row label {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 7px;
}
.account-page-section .account-form-row label .required {
  color: #e75d0d;
}
.account-page-section .account-form-row.account-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 0;
}
.account-page-section .account-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  cursor: pointer;
}
.account-page-section .account-remember input[type=checkbox] {
  accent-color: #e75d0d;
}
.account-page-section .btn-account-submit {
  background-color: #e75d0d;
  color: #ffffff;
  border: 1px solid #e75d0d;
  border-radius: 20px;
  padding: 10px 26px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.account-page-section .btn-account-submit:hover {
  background-color: transparent;
  border-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.account-page-section .account-lost-password {
  margin-top: 14px;
  margin-bottom: 0;
  text-align: right;
}
.account-page-section .account-lost-password a {
  color: rgba(255, 255, 255, 0.45);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.account-page-section .account-lost-password a:hover {
  color: #e75d0d;
}
.account-page-section .at-form-hint {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #e75d0d;
  border-radius: 0 6px 6px 0;
}
.account-page-section .at-form-back {
  margin-top: 20px;
  margin-bottom: 0;
}
.account-page-section .at-form-back a {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.account-page-section .at-form-back a:hover {
  color: #e75d0d;
}
.account-page-section .account-password-hint {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.account-page-section .account-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 991px) {
  .account-page-section .account-wrapper {
    grid-template-columns: 1fr;
  }
}
.account-page-section .account-sidebar .woocommerce-MyAccount-navigation {
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.account-page-section .account-sidebar .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.account-page-section .account-sidebar .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.account-page-section .account-sidebar .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: none;
}
.account-page-section .account-sidebar .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 13px 20px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.account-page-section .account-sidebar .woocommerce-MyAccount-navigation li a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
}
.account-page-section .account-sidebar .woocommerce-MyAccount-navigation li.is-active a, .account-page-section .account-sidebar .woocommerce-MyAccount-navigation li[class*=woocommerce-MyAccount-navigation-link--] a[aria-current=page] {
  color: #e75d0d;
  background-color: rgba(231, 93, 13, 0.08);
  border-left: 3px solid #e75d0d;
  padding-left: 17px;
}
.account-page-section .account-content {
  background-color: #141c36;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
}
@media (max-width: 575px) {
  .account-page-section .account-content {
    padding: 20px 16px;
  }
}
.account-page-section .account-content h2,
.account-page-section .account-content h3 {
  font-family: "Hartwell Alt", sans-serif;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
}
.account-page-section .account-content h2 {
  font-size: 18px;
}
.account-page-section .account-content h3 {
  font-size: 15px;
}
.account-page-section .account-content p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}
.account-page-section .account-content p a {
  color: #e75d0d;
}
.account-page-section .account-content p a:hover {
  color: #ffffff;
}
.account-page-section .account-content p strong {
  color: #ffffff;
}
.account-page-section .account-content .woocommerce-orders-table,
.account-page-section .account-content .woocommerce-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.account-page-section .account-content .woocommerce-orders-table thead th,
.account-page-section .account-content .woocommerce-table thead th {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}
.account-page-section .account-content .woocommerce-orders-table tbody tr,
.account-page-section .account-content .woocommerce-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.15s ease;
}
.account-page-section .account-content .woocommerce-orders-table tbody tr:hover,
.account-page-section .account-content .woocommerce-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.account-page-section .account-content .woocommerce-orders-table tbody tr:last-child,
.account-page-section .account-content .woocommerce-table tbody tr:last-child {
  border-bottom: none;
}
.account-page-section .account-content .woocommerce-orders-table tbody tr td,
.account-page-section .account-content .woocommerce-table tbody tr td {
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  vertical-align: middle;
}
.account-page-section .account-content .woocommerce-orders-table tbody tr td a,
.account-page-section .account-content .woocommerce-table tbody tr td a {
  color: #e75d0d;
  text-decoration: none;
  font-weight: 700;
}
.account-page-section .account-content .woocommerce-orders-table tbody tr td a:hover,
.account-page-section .account-content .woocommerce-table tbody tr td a:hover {
  color: #ffffff;
}
.account-page-section .account-content .woocommerce-orders-table tbody tr td .woocommerce-orders-table__cell-order-status,
.account-page-section .account-content .woocommerce-table tbody tr td .woocommerce-orders-table__cell-order-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}
.account-page-section .account-content .woocommerce-orders-table tbody tr td .woocommerce-orders-table__cell-order-status.wc-completed,
.account-page-section .account-content .woocommerce-table tbody tr td .woocommerce-orders-table__cell-order-status.wc-completed {
  background-color: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}
.account-page-section .account-content .woocommerce-orders-table tbody tr td .woocommerce-orders-table__cell-order-status.wc-processing,
.account-page-section .account-content .woocommerce-table tbody tr td .woocommerce-orders-table__cell-order-status.wc-processing {
  background-color: rgba(231, 93, 13, 0.15);
  color: #e75d0d;
}
.account-page-section .account-content .woocommerce-orders-table tbody tr td .woocommerce-orders-table__cell-order-status.wc-cancelled, .account-page-section .account-content .woocommerce-orders-table tbody tr td .woocommerce-orders-table__cell-order-status.wc-failed,
.account-page-section .account-content .woocommerce-table tbody tr td .woocommerce-orders-table__cell-order-status.wc-cancelled,
.account-page-section .account-content .woocommerce-table tbody tr td .woocommerce-orders-table__cell-order-status.wc-failed {
  background-color: rgba(224, 82, 82, 0.15);
  color: #e05252;
}
.account-page-section .account-content .woocommerce-Button,
.account-page-section .account-content .button,
.account-page-section .account-content .wp-element-button {
  display: inline-block;
  background-color: #e75d0d;
  color: #ffffff !important;
  border: 1px solid #e75d0d;
  border-radius: 20px;
  padding: 9px 22px;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.account-page-section .account-content .woocommerce-Button:hover,
.account-page-section .account-content .button:hover,
.account-page-section .account-content .wp-element-button:hover {
  background-color: transparent;
  border-color: #ffffff;
}
.account-page-section .account-content .woocommerce-EditAccountForm .form-row,
.account-page-section .account-content .woocommerce-address-fields .form-row,
.account-page-section .account-content .edit-account .form-row {
  margin-bottom: 16px;
}
.account-page-section .account-content .woocommerce-EditAccountForm .form-row label,
.account-page-section .account-content .woocommerce-address-fields .form-row label,
.account-page-section .account-content .edit-account .form-row label {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.account-page-section .account-content .woocommerce-EditAccountForm .form-row label .required,
.account-page-section .account-content .woocommerce-address-fields .form-row label .required,
.account-page-section .account-content .edit-account .form-row label .required {
  color: #e75d0d;
}
.account-page-section .account-content .woocommerce-EditAccountForm .form-row label em,
.account-page-section .account-content .woocommerce-address-fields .form-row label em,
.account-page-section .account-content .edit-account .form-row label em {
  color: rgba(255, 255, 255, 0.35);
  font-style: normal;
}
.account-page-section .account-content .woocommerce-EditAccountForm .form-row select,
.account-page-section .account-content .woocommerce-address-fields .form-row select,
.account-page-section .account-content .edit-account .form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e75d0d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
  cursor: pointer;
}
.account-page-section .account-content .woocommerce-EditAccountForm .form-row select option,
.account-page-section .account-content .woocommerce-address-fields .form-row select option,
.account-page-section .account-content .edit-account .form-row select option {
  background-color: #141c36;
}
.account-page-section .account-content .woocommerce-EditAccountForm .form-row textarea,
.account-page-section .account-content .woocommerce-address-fields .form-row textarea,
.account-page-section .account-content .edit-account .form-row textarea {
  resize: vertical;
  min-height: 90px;
}
.account-page-section .account-content .woocommerce-EditAccountForm .form-row .woocommerce-input-wrapper,
.account-page-section .account-content .woocommerce-address-fields .form-row .woocommerce-input-wrapper,
.account-page-section .account-content .edit-account .form-row .woocommerce-input-wrapper {
  display: block;
}
.account-page-section .account-content .woocommerce-EditAccountForm .form-row.woocommerce-invalid input,
.account-page-section .account-content .woocommerce-address-fields .form-row.woocommerce-invalid input,
.account-page-section .account-content .edit-account .form-row.woocommerce-invalid input {
  border-color: #e05252;
}
.account-page-section .account-content .woocommerce-EditAccountForm fieldset,
.account-page-section .account-content .woocommerce-address-fields fieldset,
.account-page-section .account-content .edit-account fieldset {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
.account-page-section .account-content .woocommerce-EditAccountForm fieldset legend,
.account-page-section .account-content .woocommerce-address-fields fieldset legend,
.account-page-section .account-content .edit-account fieldset legend {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 8px;
}
.account-page-section .account-content .woocommerce-EditAccountForm .woocommerce-form-row--first,
.account-page-section .account-content .woocommerce-EditAccountForm .woocommerce-form-row--last,
.account-page-section .account-content .woocommerce-address-fields .woocommerce-form-row--first,
.account-page-section .account-content .woocommerce-address-fields .woocommerce-form-row--last,
.account-page-section .account-content .edit-account .woocommerce-form-row--first,
.account-page-section .account-content .edit-account .woocommerce-form-row--last {
  display: inline-block;
  width: calc(50% - 8px);
}
.account-page-section .account-content .woocommerce-EditAccountForm .woocommerce-form-row--first.woocommerce-form-row--first,
.account-page-section .account-content .woocommerce-EditAccountForm .woocommerce-form-row--last.woocommerce-form-row--first,
.account-page-section .account-content .woocommerce-address-fields .woocommerce-form-row--first.woocommerce-form-row--first,
.account-page-section .account-content .woocommerce-address-fields .woocommerce-form-row--last.woocommerce-form-row--first,
.account-page-section .account-content .edit-account .woocommerce-form-row--first.woocommerce-form-row--first,
.account-page-section .account-content .edit-account .woocommerce-form-row--last.woocommerce-form-row--first {
  margin-right: 16px;
}
@media (max-width: 575px) {
  .account-page-section .account-content .woocommerce-EditAccountForm .woocommerce-form-row--first,
  .account-page-section .account-content .woocommerce-EditAccountForm .woocommerce-form-row--last,
  .account-page-section .account-content .woocommerce-address-fields .woocommerce-form-row--first,
  .account-page-section .account-content .woocommerce-address-fields .woocommerce-form-row--last,
  .account-page-section .account-content .edit-account .woocommerce-form-row--first,
  .account-page-section .account-content .edit-account .woocommerce-form-row--last {
    display: block;
    width: 100%;
  }
  .account-page-section .account-content .woocommerce-EditAccountForm .woocommerce-form-row--first.woocommerce-form-row--first,
  .account-page-section .account-content .woocommerce-EditAccountForm .woocommerce-form-row--last.woocommerce-form-row--first,
  .account-page-section .account-content .woocommerce-address-fields .woocommerce-form-row--first.woocommerce-form-row--first,
  .account-page-section .account-content .woocommerce-address-fields .woocommerce-form-row--last.woocommerce-form-row--first,
  .account-page-section .account-content .edit-account .woocommerce-form-row--first.woocommerce-form-row--first,
  .account-page-section .account-content .edit-account .woocommerce-form-row--last.woocommerce-form-row--first {
    margin-right: 0;
  }
}
.account-page-section .account-content .woocommerce-Address .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.account-page-section .account-content .woocommerce-Address .woocommerce-Address-title h3 {
  margin-bottom: 0;
}
.account-page-section .account-content .woocommerce-Address .woocommerce-Address-title .edit {
  color: #e75d0d;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.account-page-section .account-content .woocommerce-Address .woocommerce-Address-title .edit:hover {
  color: #ffffff;
}
.account-page-section .account-content .woocommerce-Address address {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}
.account-page-section .account-content .woocommerce-ResetPassword,
.account-page-section .account-content .lost_reset_password {
  max-width: 420px;
}
.account-page-section .account-content .woocommerce-ResetPassword p,
.account-page-section .account-content .lost_reset_password p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 20px;
}
.account-page-section .account-content .woocommerce-ResetPassword .form-row,
.account-page-section .account-content .lost_reset_password .form-row {
  margin-bottom: 16px;
}
.account-page-section .account-content .woocommerce-ResetPassword .form-row label,
.account-page-section .account-content .lost_reset_password .form-row label {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.account-page-section .account-content .woocommerce-ResetPassword .woocommerce-Button,
.account-page-section .account-content .lost_reset_password .woocommerce-Button {
  margin-top: 8px;
}

.shop-page-section {
  padding: 60px 0 80px;
}
.shop-page-section .shop-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.shop-page-section .shop-filters .shop-filter {
  padding: 8px 22px;
  border: 2px solid #23315f;
  border-radius: 30px;
  background: transparent;
  color: #23315f;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.shop-page-section .shop-filters .shop-filter:hover, .shop-page-section .shop-filters .shop-filter.active {
  background: #23315f;
  color: #ffffff;
}
.shop-page-section .shop-loop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.shop-page-section .shop-loop-header .woocommerce-result-count {
  color: rgba(35, 49, 95, 0.6);
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  margin: 0;
}
.shop-page-section .shop-loop-header .woocommerce-ordering select {
  background: #ffffff;
  border: 1px solid rgba(35, 49, 95, 0.2);
  border-radius: 6px;
  color: #23315f;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 13px;
  padding: 6px 12px;
  cursor: pointer;
}
.shop-page-section ul.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
@media (max-width: 1199px) {
  .shop-page-section ul.shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .shop-page-section ul.shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .shop-page-section ul.shop-grid {
    grid-template-columns: 1fr;
  }
}
.shop-page-section .shop-card .shop-card-inner {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(35, 49, 95, 0.18);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.shop-page-section .shop-card .shop-card-inner:hover {
  box-shadow: 0 8px 28px rgba(35, 49, 95, 0.13);
  transform: translateY(-3px);
}
.shop-page-section .shop-card .shop-card-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  color: #23315f;
  opacity: 0.35;
}
.shop-page-section .shop-card .shop-card-icon svg {
  width: 100%;
  height: 100%;
}
.shop-page-section .shop-card .shop-card-image-link {
  display: block;
  padding: 28px 20px 16px;
  flex-shrink: 0;
}
.shop-page-section .shop-card .shop-card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
}
@media (max-width: 575px) {
  .shop-page-section .shop-card .shop-card-img {
    height: 160px;
  }
}
.shop-page-section .shop-card .shop-card-body {
  padding: 0 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}
.shop-page-section .shop-card .shop-card-title {
  font-family: "Hartwell Alt", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.shop-page-section .shop-card .shop-card-title a {
  color: #23315f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.shop-page-section .shop-card .shop-card-title a:hover {
  color: #e75d0d;
}
.shop-page-section .shop-card .shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-page-section .shop-card .shop-card-price {
  margin-left: 0;
}
.shop-page-section .shop-card .shop-card-price .woocommerce-Price-amount,
.shop-page-section .shop-card .shop-card-price bdi {
  font-family: "Hartwell Alt", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #e75d0d;
}
.shop-page-section .shop-card .shop-card-price .woocommerce-Price-amount span,
.shop-page-section .shop-card .shop-card-price bdi span {
  color: #e75d0d !important;
  margin-left: 0;
  font-weight: 900;
  font-size: 24px;
}
.shop-page-section .shop-card .shop-card-atc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #e75d0d;
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.shop-page-section .shop-card .shop-card-atc svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.shop-page-section .shop-card .shop-card-atc:hover {
  background: #23315f;
  color: #ffffff;
}
.shop-page-section .woocommerce-pagination {
  display: flex;
  justify-content: center;
}
.shop-page-section .woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-page-section .woocommerce-pagination li .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(35, 49, 95, 0.2);
  border-radius: 6px;
  color: #23315f;
  font-family: "Hartwell Alt", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.shop-page-section .woocommerce-pagination li .page-numbers:hover, .shop-page-section .woocommerce-pagination li .page-numbers.current {
  background: #23315f;
  border-color: #23315f;
  color: #ffffff;
}
.shop-page-section .woocommerce-pagination li .page-numbers.dots {
  border: none;
  cursor: default;
}
.shop-page-section .shop-no-products {
  text-align: center;
  color: rgba(35, 49, 95, 0.5);
  padding: 60px 0;
  font-family: "Hartwell Alt", sans-serif;
}

body:not(.editor-styles-wrapper) {
  margin: 0;
  font-family: "Hartwell Alt", sans-serif !important;
}
body:not(.editor-styles-wrapper) a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-family: "Hartwell Alt", sans-serif !important;
}
body:not(.editor-styles-wrapper) ul,
body:not(.editor-styles-wrapper) li {
  text-decoration: none;
  list-style-type: none;
}
body:not(.editor-styles-wrapper) ul span,
body:not(.editor-styles-wrapper) li span {
  color: #ffffff;
  margin: 0 10px;
  font-weight: 200;
}
body:not(.editor-styles-wrapper) h1 {
  font-family: "Hartwell Alt", sans-serif !important;
}

img {
  max-width: 100%;
}

.fade-in,
.fade-load {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible,
.fade-load.visible {
  opacity: 1;
  transform: translateY(0);
}

body:not(.editor-styles-wrapper) h1,
body:not(.editor-styles-wrapper) h2,
body:not(.editor-styles-wrapper) h3,
body:not(.editor-styles-wrapper) h4,
body:not(.editor-styles-wrapper) h5,
body:not(.editor-styles-wrapper) h6,
.acf-block-preview h1,
.acf-block-preview h2,
.acf-block-preview h3,
.acf-block-preview h4,
.acf-block-preview h5,
.acf-block-preview h6 {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
}
body:not(.editor-styles-wrapper) h1 strong,
body:not(.editor-styles-wrapper) h2 strong,
body:not(.editor-styles-wrapper) h3 strong,
body:not(.editor-styles-wrapper) h4 strong,
body:not(.editor-styles-wrapper) h5 strong,
body:not(.editor-styles-wrapper) h6 strong,
.acf-block-preview h1 strong,
.acf-block-preview h2 strong,
.acf-block-preview h3 strong,
.acf-block-preview h4 strong,
.acf-block-preview h5 strong,
.acf-block-preview h6 strong {
  font-weight: 300;
  color: #e75d0d;
}
body:not(.editor-styles-wrapper) p,
.acf-block-preview p {
  color: #ffffff;
  font-family: "Hartwell Alt", sans-serif !important;
}
body:not(.editor-styles-wrapper) h1,
.acf-block-preview h1 {
  font-size: 46px;
}
body:not(.editor-styles-wrapper) h2,
.acf-block-preview h2 {
  font-size: 37px;
}
body:not(.editor-styles-wrapper) h3,
.acf-block-preview h3 {
  font-size: 29px;
}
body:not(.editor-styles-wrapper) h4,
.acf-block-preview h4 {
  font-size: 24px;
}
body:not(.editor-styles-wrapper) h5,
.acf-block-preview h5 {
  font-size: 21px;
}
body:not(.editor-styles-wrapper) h6,
.acf-block-preview h6 {
  font-size: 18px;
}
body:not(.editor-styles-wrapper) p,
.acf-block-preview p {
  font-size: 16px;
}

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