body {
  font-size: 16px;
  line-height: 1.3;
  font-family: "Courier New";
  color: #fff;
  background-color: #0f0f0f;
}
[data-theme=light] body {
  color: #000;
  background-color: #fff;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] body {
    color: #000;
    background-color: #fff;
  }
}

* {
  outline: none;
}
*:focus, *:active {
  outline: none !important;
}

button:focus, button:active {
  box-shadow: none !important;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer !important;
  color: #fff;
}
[data-theme=light] a {
  color: #000;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] a {
    color: #000;
  }
}
a:hover, a:focus {
  text-decoration: none;
  color: #fff;
  text-decoration: none;
}
[data-theme=light] a:hover, [data-theme=light] a:focus {
  color: #000;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] a:hover, [data-theme=light] a:focus {
    color: #000;
  }
}

small, .small {
  font-size: 12px;
}

ol li, ul li {
  font-size: 16px;
}

section {
  position: relative;
  background-size: 100%;
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}

.container, .container-fluid {
  position: relative;
  z-index: 4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.btn {
  font-size: 16px;
  padding: 15px 20px;
}
.btn-primary {
  background-color: #ff0000;
  border-color: #ff0000;
}
.btn-primary:focus, .btn-primary:hover {
  background-color: #cc0000;
  border-color: #cc0000;
}
[data-theme=light] .btn-primary {
  background-color: #cc0000;
  border-color: #cc0000;
}
[data-theme=light] .btn-primary:focus, [data-theme=light] .btn-primary:hover {
  background-color: #ff0000;
  border-color: #ff0000;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .btn-primary {
    background-color: #cc0000;
    border-color: #cc0000;
  }
  [data-theme=light] .btn-primary:focus, [data-theme=light] .btn-primary:hover {
    background-color: #ff0000;
    border-color: #ff0000;
  }
}
.btn-link {
  text-decoration: none;
  font-size: 16px;
  color: #000;
  font-family: "Courier New";
  padding: 0;
}
.btn-link:hover, .btn-link:focus {
  color: #000;
  text-decoration: none;
}

.card {
  border: none;
  border-radius: 0;
  position: relative;
}
.card--intro .card-body {
  padding-top: 80px;
}
.card--intro .card-body h3 {
  font-size: 24px;
}
.card--intro .card-body .btn-link {
  font-size: 20px;
}
.card--intro .card-footer {
  padding-bottom: 40px;
  border: none;
  background-color: transparent;
}
.card-close {
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 40px;
  line-height: 1;
  color: #000;
}
.card-close:hover, .card-close:focus {
  color: #000;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

.form-group {
  margin-bottom: 28px;
}
.form-label {
  font-size: 18px;
  line-height: 22px;
  font-family: "Courier New";
  margin-bottom: 10px;
}
.form-control, .form-select {
  border: 1px solid #fff;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 10px;
  background-color: transparent;
}
.form-control:focus, .form-select:focus {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.form-control::-ms-placeholder, .form-select::-ms-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.form-control::placeholder, .form-select::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.form-control::-webkit-file-upload-button, .form-select::-webkit-file-upload-button {
  visibility: hidden;
}
[data-theme=light] .form-control, [data-theme=light] .form-select {
  color: #000;
  border-color: #000;
  background-color: #fff;
}
[data-theme=light] .form-control:focus, [data-theme=light] .form-select:focus {
  border-color: #000;
  background-color: transparent;
  color: #000;
}
[data-theme=light] .form-control::-webkit-input-placeholder, [data-theme=light] .form-select::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
[data-theme=light] .form-control::-moz-placeholder, [data-theme=light] .form-select::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
[data-theme=light] .form-control::-ms-placeholder, [data-theme=light] .form-select::-ms-placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
[data-theme=light] .form-control::placeholder, [data-theme=light] .form-select::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .form-control, [data-theme=light] .form-select {
    color: #000;
    border-color: #000;
    background-color: #fff;
  }
  [data-theme=light] .form-control:focus, [data-theme=light] .form-select:focus {
    border-color: #000;
    background-color: transparent;
    color: #000;
  }
  [data-theme=light] .form-control::-webkit-input-placeholder, [data-theme=light] .form-select::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
  }
  [data-theme=light] .form-control::-moz-placeholder, [data-theme=light] .form-select::-moz-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
  }
  [data-theme=light] .form-control::-ms-placeholder, [data-theme=light] .form-select::-ms-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
  }
  [data-theme=light] .form-control::placeholder, [data-theme=light] .form-select::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
  }
}
.form-select {
  background-size: 16px 27px;
  background-image: url("../img/bg-select.png");
}
[data-theme=light] .form-select {
  background-image: url("../img/bg-select-dark.png");
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .form-select {
    background-image: url("../img/bg-select-dark.png");
  }
}
.form-qty {
  width: 100px;
  position: relative;
}
.form-qty__btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 5;
}
.form-qty__btn .btn {
  padding: 0;
  border: none;
  background-color: transparent;
  line-height: 0;
}
.form-qty__btn .btn:hover, .form-qty__btn .btn:focus {
  background-color: transparent;
}
.form-qty__btn .btn img {
  width: 12px;
  height: auto;
}
[data-theme=light] .form-qty__btn .btn img {
  filter: invert(1);
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .form-qty__btn .btn img {
    filter: invert(1);
  }
}

.header-top {
  padding: 0 15px;
  text-align: center;
}
.header-top a {
  display: inline-block;
}
.header-top a img {
  height: 56px;
  width: auto;
  filter: invert(1);
}
@media (max-width: 991px) {
  .header-top a img {
    height: 36px;
  }
}
[data-theme=light] .header-top a img {
  filter: unset;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .header-top a img {
    filter: unset;
  }
}
.header-bottom .navbar {
  position: relative;
  width: 100%;
  z-index: 1024;
  padding: 0;
  padding-bottom: 15px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .header-bottom .navbar {
    padding-bottom: 10px;
  }
}
.header-bottom .navbar-toggler {
  padding: 0;
  border: 0;
}
.header-bottom .navbar-toggler-icon {
  filter: invert(1);
}
[data-theme=light] .header-bottom .navbar-toggler-icon {
  filter: unset;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .header-bottom .navbar-toggler-icon {
    filter: unset;
  }
}
.header-bottom .navbar-nav {
  align-items: center;
}
@media (max-width: 991px) {
  .header-bottom .navbar-nav {
    padding-top: 15px;
  }
  .header-bottom .navbar-nav:last-child {
    padding: 0;
  }
}
.header-bottom .navbar-nav .nav-item {
  font-size: 16px;
  color: #fff;
  margin-right: 50px;
  text-decoration: none;
}
[data-theme=light] .header-bottom .navbar-nav .nav-item {
  color: #000;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .header-bottom .navbar-nav .nav-item {
    color: #000;
  }
}
@media (max-width: 991px) {
  .header-bottom .navbar-nav .nav-item {
    margin-right: 0;
  }
}
.header-bottom .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.header-bottom .navbar-nav .nav-link {
  font-size: 16px;
  color: #fff;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 13px;
}
[data-theme=light] .header-bottom .navbar-nav .nav-link {
  color: #000;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .header-bottom .navbar-nav .nav-link {
    color: #000;
  }
}
.header-bottom .navbar-nav .nav-link img {
  height: 22px;
  width: auto;
  filter: invert(1);
}
[data-theme=light] .header-bottom .navbar-nav .nav-link img {
  filter: unset;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .header-bottom .navbar-nav .nav-link img {
    filter: unset;
  }
}
.header-bottom .navbar-nav .nav-link__day {
  display: block;
}
[data-theme=light] .header-bottom .navbar-nav .nav-link__day {
  display: none;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .header-bottom .navbar-nav .nav-link__day {
    display: none;
  }
}
.header-bottom .navbar-nav .nav-link__night {
  display: none;
}
[data-theme=light] .header-bottom .navbar-nav .nav-link__night {
  display: block;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .header-bottom .navbar-nav .nav-link__night {
    display: block;
  }
}
.header-bottom .navbar-nav--right .nav-item {
  margin-right: 20px;
}
@media (max-width: 991px) {
  .header-bottom .navbar-nav--right .nav-item {
    margin-right: 0;
  }
}
.header-bottom .navbar-nav--right .nav-item:last-child {
  margin-right: 0;
}

.table {
  background-color: transparent;
}
.table tr th, .table tr td {
  background-color: transparent;
  color: #fff;
  vertical-align: middle;
}
[data-theme=light] .table tr th, [data-theme=light] .table tr td {
  color: #000;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .table tr th, [data-theme=light] .table tr td {
    color: #000;
  }
}
.table tr th:first-child, .table tr td:first-child {
  padding-left: 0;
}
.table tr th:last-child, .table tr td:last-child {
  padding-right: 0;
}
.table thead tr th, .table thead tr td {
  padding-bottom: 20px;
}
.table tfoot tr td, .table tfoot tr th {
  padding-top: 20px;
  border-bottom: 0;
}

.footer {
  padding: 30px 0;
  text-align: center;
}
.footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
  padding: 0;
}
.footer ul li {
  list-style: none;
  display: block;
}
.footer-logo {
  display: inline-block;
}
.footer-logo img {
  height: 76px;
  width: auto;
  filter: invert(1);
}
[data-theme=light] .footer-logo img {
  filter: unset;
}
@media (prefers-color-scheme: light) {
  [data-theme=light] .footer-logo img {
    filter: unset;
  }
}

.swiper {
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-inactive-color: #D7C4B7;
  --swiper-pagination-color: #454444;
  --swiper-navigation-color: #454444;
}
.swiper-product-main .swiper-slide img {
  width: 100%;
  height: auto;
}
.swiper-product-thumbnail {
  height: 450px;
}
@media (max-width: 991px) {
  .swiper-product-thumbnail {
    height: 490px;
  }
}
@media (max-width: 767px) {
  .swiper-product-thumbnail {
    height: auto;
  }
}
.swiper-product-thumbnail .swiper-slide {
  height: auto !important;
}
.swiper-product-thumbnail .swiper-slide-img {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.swiper-product-thumbnail .swiper-slide-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}

.page-intro {
  min-height: 100vh;
  background-image: url("../img/bg-intro.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart__product {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cart__product-img {
  width: 273px;
}
@media (max-width: 991px) {
  .cart__product-img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .cart__product-img {
    width: 80px;
  }
}
.cart__product-img img {
  width: 100%;
  height: auto;
}
.cart__product-info p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cart .table thead {
    display: none;
  }
  .cart .table tbody {
    display: block;
  }
  .cart .table tbody tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid;
    align-items: center;
    justify-content: space-between;
  }
  .cart .table tbody tr th, .cart .table tbody tr td {
    border-bottom: 0;
  }
  .cart .table tfoot {
    display: block;
  }
}

.product-detail__variant .form-select {
  max-width: 120px;
  font-size: 28px;
  padding: 5px 20px;
  line-height: 1.3;
}

.text-danger {
  color: #ff0000 !important;
}
.text-base {
  font-size: 16px;
  line-height: 1.3;
}
.text-xl {
  font-size: 25px;
  line-height: 1.3;
}

.img-full {
  width: 100%;
  height: auto;
}

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