:root {
  --primary-color: #cc3333;
  --primary-color-rgb: 204, 51, 51;
  --dark-color: #0d0d0d;
}

body {
  font-weight: 300;
}
body strong {
  font-weight: 400;
}

a:hover, a:focus, a:active {
  color: #cc3333;
}

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

button,
input[type=button],
input[type=reset],
input[type=submit] {
  background-color: #cc3333;
  transition: 0.3s;
}

.top-bar a:hover {
  color: #cc3333;
}

.menu-socical-icon li a::after {
  background-color: #cc3333;
}

.button.color-1 {
  background-color: #cc3333;
}

.button.color-2::before {
  background-color: #cc3333;
}

.product-img:hover a .img-hover {
  transform: none;
}

.product-item .product-img a img {
  transition: opacity 0.5s;
}
.product-item .productCode {
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
}
.product-item .product-title-price-old a {
  font-size: 2rem;
}

.product-label {
  background-color: #cc3333;
  color: #fff;
  top: 8%;
  width: 80px;
}

#scroll-top:hover:before {
  background-color: #cc3333;
}

.content {
  margin-bottom: 5px;
}

.page-title {
  padding-top: 0;
}
.page-title .breadcrumbs span {
  color: #0d0d0d;
}
.page-title .breadcrumbs .option-shop select {
  font-weight: 300;
}
.page-title .pageDescription {
  text-align: center;
}
.page-title .pageDescription h1 {
  font-size: 4rem;
  line-height: 4rem;
  margin-bottom: 0.625rem;
  padding-top: 0.625rem;
}
@media (max-width: 992px) {
  .page-title .pageDescription h1 {
    font-size: 2.5rem;
    line-height: 2rem;
  }
}
.page-title .pageDescription h2 {
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 992px) {
  .page-title .pageDescription h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 992px) {
  .page-title .pageDescription p {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

.filter-floating-wrapper {
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 999;
}
.filter-floating-wrapper .btn-floating-filter {
  background-color: #cc3333;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  font-weight: 300;
  transition: transform 0.2s;
}
.filter-floating-wrapper .btn-floating-filter:hover {
  transform: scale(1.05);
}
.filter-floating-wrapper .filter-panel {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(13, 13, 13, 0.2);
}
.filter-floating-wrapper .filter-panel.active {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: slideUp 0.4s ease forwards;
}
.filter-floating-wrapper .filter-panel .filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #0d0d0d;
}
.filter-floating-wrapper .filter-panel .filter-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.filter-floating-wrapper .filter-panel .btn-apply {
  background: #0d0d0d;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 300;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.infor-product .infor .product-label {
  width: 180px;
  margin-bottom: 20px;
}
.infor-product .infor h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}
.infor-product .infor .product-price {
  font-weight: 200;
}
.infor-product .infor .content {
  font-weight: 300;
}
.infor-product .button.color-4:before {
  background-color: #cc3333;
}
.infor-product .button.color-2::before {
  background-color: #cc3333;
}
.infor-product .variants {
  margin: 20px 0;
}
.infor-product .variants .variant-title {
  display: block;
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 10px;
}
.infor-product .variants .variant-list {
  display: flex;
  gap: 10px;
}
.infor-product .variants .variant-item {
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s ease;
  border-radius: 25px;
  overflow: hidden;
}
.infor-product .variants .variant-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.infor-product .variants .variant-item:hover {
  border-color: #ccc;
}
.infor-product .variants .variant-item.active {
  border-color: #cc3333;
}
.infor-product .size-container {
  margin-bottom: 25px;
}
.infor-product .size-container .size-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 200;
  margin-bottom: 10px;
}
.infor-product .size-container .size-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.infor-product .size-container .size-item {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  cursor: pointer;
  font-weight: 300;
  transition: all 0.2s;
}
.infor-product .size-container .size-item:hover:not(.disabled) {
  border-color: #0d0d0d;
}
.infor-product .size-container .size-item.active {
  background-color: #0d0d0d;
  color: #fff;
  border-color: #0d0d0d;
}
.infor-product .size-container .size-item.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}
.infor-product .product-quantity {
  margin-bottom: 20px;
}
.infor-product .product-quantity .label {
  display: block;
  font-size: 1.8rem;
  font-weight: 200;
  margin-bottom: 10px;
}
.infor-product .product-quantity .quantity-selector {
  display: inline-flex;
  align-items: center;
}
.infor-product .product-quantity .qty-input {
  display: inline-flex;
  margin-bottom: 0;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  padding: 0;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  color: #0d0d0d;
}
.infor-product .product-quantity .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.infor-product .product-quantity .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.infor-product .product-quantity .qty-input[type=number] {
  -moz-appearance: textfield;
}
.infor-product .product-quantity button {
  height: 45px;
  width: 45px;
  padding: 0;
}

.themesflat-container .wear-with {
  font-size: 4rem;
  font-weight: 200;
  text-align: center;
}
@media (max-width: 992px) {
  .themesflat-container .wear-with {
    font-size: 3rem;
  }
}

.site-main .contact {
  padding-top: 10px;
}
.site-main .contact a {
  font-weight: 300;
}
.site-main .contact .contact-inner {
  margin: 30px 0;
}
.site-main .contact h3 {
  font-weight: 200;
}
@media (min-width: 992px) {
  .site-main .contact .infor {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .site-main .contact {
    padding-top: 0 !important;
  }
}

.contact-infor .infor .address {
  padding-bottom: 30px !important;
  margin-right: 0;
  padding-right: 0;
  padding-left: 20px;
}
.contact-infor .infor .address:last-child {
  padding-left: 20px;
}
.contact-infor .infor .address:after {
  content: none;
}

.maps iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

.contact-inner form .email-wrap, .contact-inner form .name-wrap {
  width: 30% !important;
  margin-right: 4.8% !important;
}
.contact-inner form .phone-wrap {
  width: 30% !important;
}
.contact-inner form .phone-wrap input {
  padding: 7px 10px !important;
}
.contact-inner form .phone-comment {
  margin: 9px 0 21px 0 !important;
}

.slider-slider .swiper-button-prev:hover,
.slider-slider .swiper-button-next:hover,
.bg-slider-4 .slider-slider .swiper-button-prev:hover,
.bg-slider-4 .slider-slider .swiper-button-next:hover {
  background-color: #cc3333;
  transition: all 0.3s ease;
}

.swiper-content .caption {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.swiper-content .heading {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.benefit-box .benefit-img {
  max-width: 50px;
  height: auto;
}

.themesflat-container .date {
  color: #cc3333;
}
.themesflat-container .banner-img::before {
  content: attr(data-label);
}
.themesflat-container .banner-img a:hover {
  color: #cc3333;
  text-shadow: none;
}

.banner-content {
  padding: 25% 0;
}
.banner-content .content {
  margin-bottom: 15px;
}
.banner-content .btn-discover {
  font-weight: 300;
}
.banner-content .btn-discover::after {
  background-color: #cc3333;
}
.banner-content .btn-discover:hover {
  color: #cc3333;
}
.style-2 .banner-content .btn-discover:hover {
  color: #cc3333;
}
.banner-content a:hover {
  color: #cc3333;
  text-shadow: none;
}

.category.themesflat-section {
  padding: 82px 0;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .category.themesflat-section {
    padding: 160px 0;
  }
}

.benefit-box .benefit-title a {
  font-weight: 300;
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
}

#site-logo img {
  height: 80px;
  width: auto;
  margin: 5px 0;
}

#site-header #main-nav > ul > li.current-menu-item .current-item, #site-header #main-nav > ul > li.current-menu-item > a, #site-header #main-nav > ul > li.current-menu-item > a::after {
  color: #cc3333;
}
#site-header #main-nav > ul > li:hover > a, #site-header #main-nav > ul > li:hover .menu-item-has-children > a::after {
  color: #cc3333;
}
#site-header #main-nav > ul > li > a::before {
  background-color: #cc3333;
}
#site-header #main-nav > ul > li a {
  font-weight: 300;
}
#site-header .sub-menu li a:hover, #site-header .mega-menu li a:hover {
  color: #cc3333;
}
#site-header .sub-menu li.current-item a, #site-header .mega-menu li.current-item a {
  color: #cc3333;
}
#site-header .mobile-button:before {
  background-color: #cc3333;
}
#site-header .mobile-button::after {
  background-color: #cc3333;
}
#site-header .mobile-button span {
  background-color: #cc3333;
}
#site-header .mobile-button i {
  color: #cc3333;
}

.benefitInternal {
  margin-top: 50px;
  background-color: #cc3333;
}
.benefitInternal .benefit-box img {
  filter: invert(100%) brightness(200%);
}
.benefitInternal .benefit-box .benefit-title {
  color: #fff;
}

#footer .widget a:hover {
  color: #cc3333;
}
#footer .widget-infor .address {
  padding-right: 0;
}
#footer .widget-logo .list-icon-socical li:hover {
  background-color: #cc3333;
}
#footer .widget-logo .list-icon-socical li:hover i {
  color: #fff;
}
@media (max-width: 992px) {
  #footer .widget-logo .list-icon-socical {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  #footer .widget-logo {
    text-align: center;
  }
}
#footer .logo-dark img {
  max-height: 100px;
}
@media (max-width: 992px) {
  #footer {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .bottom-menu li {
    line-height: 3rem;
  }
}
.bottom-menu li a:hover {
  color: #cc3333;
}
.bottom-menu li .coppy-right a {
  color: #cc3333;
}
.bottom-menu li .coppy-right a:hover {
  color: #fff;
}/*# sourceMappingURL=style.css.map */