@charset "UTF-8";
:root {
  --gray: #1c1c1c;
  --gray-100: lightgray;
  --black: #000;
  --white: #fff;
  --gold: #bf9764;
  --font-text: "Noto Serif", serif;
  --font-heading: "Goudy Bookletter 1911", serif;
  --color-letter: #cc0000;
  --color-text: #343434;
  --transition: 0.4s ease;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Georgia", serif;
  color: var(--color-text);
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #444;
}

#product-category h1,
#product-category .h1 {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
#product-category h1 + h3,
#product-category .h1 + h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

label {
  font-size: 12px;
  font-weight: normal;
}

button:focus {
  outline: none !important;
}

a {
  color: var(--gray);
}
a:hover {
  color: var(--gold);
}

.btn-primary {
  background: var(--black);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-link {
  color: var(--gray);
}
.btn-link:hover {
  color: var(--gold);
}

.button {
  display: inline-block;
  cursor: pointer;
  border: none;
  color: #fff !important;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  padding: 4px 12px;
  margin-left: 0;
  border-radius: 2px;
  background: #383838;
  background: linear-gradient(to bottom, #383838 35%, #1d1d1d 100%);
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}
.button:hover {
  color: #fff;
  background: #b18552;
  background: linear-gradient(to bottom, #c8a576 35%, #b18552 100%);
}

div.required .col-form-label:before,
div.required .form-label:before {
  content: "* ";
  color: #f00;
  font-weight: bold;
}

.color-letter {
  color: var(--color-letter);
}

.carousel {
  border: none;
  box-shadow: none;
  margin-bottom: 40px;
}

.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}

.nav-tabs {
  margin-bottom: 15px;
}

.form-check .form-check-input {
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
header {
  background-color: var(--black);
  margin-bottom: 16px;
  padding: 8px 0 0;
}
header:has(+ main > #common-home) {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  header:has(+ main > #common-home) {
    margin-bottom: 16px;
  }
}
header .container:has(#menu) {
  background-color: var(--white);
}
@media (min-width: 768px) {
  header .container:has(#menu) {
    background-color: transparent;
  }
}

/* container */
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (min-width: 769px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
/* content */
#column-left .list-group {
  background: #fff;
  border: 1px solid #dedede;
  padding: 16px 20px 8px 20px;
}
#column-left .list-group .list-group-item {
  border-width: 0 0 1px 0;
  border-color: var(--gray-100);
  padding: 4px 0;
  border-radius: 0;
}
#column-left .list-group .list-group-item:last-child {
  border-bottom: none;
}
#column-left .list-group .list-group-item.active {
  color: var(--gold);
  background: transparent;
  border-color: var(--gray-100);
}

.child-columns {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 768px) {
  .child-columns {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (min-width: 1200px) {
  .child-columns {
    -moz-column-count: 6;
         column-count: 6;
  }
}

.child-column {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 4px;
}

/* footer */
footer {
  margin-top: 32px;
  bottom: -1px;
  width: 100%;
  background-color: #1a1a1a;
  color: #e2e2e2;
}
footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}
footer .list-unstyled li {
  padding: 0 0 0 12px;
  position: relative;
}
footer .list-unstyled li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}
footer a {
  color: #ccc;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
footer h5 {
  font-size: 22px;
  color: #fff;
  padding: 11px 14px 10px 0px;
  margin: 19px 0px 15px 0px;
  border-bottom: 1px solid #2f2f2f;
}
footer .footer-logos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
@media (min-width: 768px) {
  footer .footer-logos {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-social a {
  color: #ccc;
  font-size: 24px;
}
.footer-social a:hover {
  color: #fff;
}

/* top bar */
#top {
  background-color: var(--gray);
  position: relative;
  color: var(--gray-100);
}
#top .row {
  align-items: center;
}
#top .top-activites {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  #top .top-activites {
    justify-content: flex-start;
  }
}
#top .top-activites__item {
  padding: 8px;
  color: var(--gray-100);
}
@media (min-width: 768px) {
  #top .top-activites__item {
    padding: 12px;
  }
}
#top .top-activites__item:hover {
  color: var(--gold);
}
#top .top-activites__item span {
  display: none;
}
@media (min-width: 768px) {
  #top .top-activites__item span {
    display: inline-block;
  }
}
#top .top-right {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
@media (min-width: 768px) {
  #top .top-right {
    justify-content: flex-end;
    flex-direction: row;
    gap: 16px;
  }
}

/* logo */
#logo {
  text-align: center;
  max-width: 148px;
  margin: 8px auto 16px;
}
@media (min-width: 768px) {
  #logo {
    margin: 0 auto 8px;
  }
}
#logo img {
  width: 100%;
  height: auto;
}

/* search */
#search {
  margin-bottom: 10px;
}
#search .form-control-lg {
  height: 40px;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
}
#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0.57rem 35px;
  text-shadow: 0 1px 0 #fff;
}

/* cart */
#cart button.btn {
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  #cart button.btn {
    padding-left: 12px;
    padding-right: 12px;
  }
}
#cart button.btn:hover {
  background: transparent;
  border: none;
}
#cart button.btn i {
  font-size: 8px;
  margin-left: 2px;
  transform: translateY(-2px);
}
#cart button.btn i.fa-basket-shopping {
  font-size: 14px;
  margin-right: 4px;
}
#cart button.btn span {
  display: none;
}
@media (min-width: 768px) {
  #cart button.btn span {
    display: inline-block;
  }
}
#cart .img-thumbnail {
  min-width: 100px;
}
#cart .dropdown-menu .table-striped tr,
#cart .dropdown-menu .table-striped td {
  background: transparent !important;
}
#cart .dropdown-menu .table-striped .text-end .btn {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#cart .dropdown-menu .table-striped .text-end .btn i {
  font-size: 16px;
  color: var(--black);
}
#cart .dropdown-menu li {
  min-width: 300px;
}
@media (max-width: 768px) {
  #cart .dropdown-menu li {
    min-width: 100%;
  }
}

#form-language a {
  color: var(--white);
}

.language-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.language-links a {
  color: var(--white);
}
.language-links a img {
  display: block;
  width: 16px;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.language-links a:hover {
  color: var(--white);
  text-decoration: none;
}

/* menu */
#menu {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#menu .navbar-toggler {
  color: var(--black);
  width: 100%;
  padding: 8px 0;
  text-align: left;
  border: none;
  outline: none;
}
#menu .navbar-toggler:hover, #menu .navbar-toggler:focus {
  background: transparent;
  border: none;
  outline: none !important;
  box-shadow: none !important;
}
#menu .navbar-toggler i {
  color: var(--black);
}
@media (min-width: 768px) {
  #menu .navbar-toggler {
    color: var(--white);
  }
  #menu .navbar-toggler i {
    color: var(--white);
  }
}
#menu .navbar-nav > li > a {
  color: var(--black);
  padding: 10px 15px 10px 15px;
  background-color: transparent;
  text-transform: uppercase;
  border-bottom: 1px solid #dedede;
  text-align: center;
}
@media (min-width: 768px) {
  #menu .navbar-nav > li > a {
    color: var(--white);
    border: none;
  }
}
#menu .navbar-nav > li > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#menu .navbar-nav .nav-item {
  transition: none;
}
#menu .navbar-nav .nav-item .nav-link {
  transition: none;
}
#menu .navbar-nav .nav-item .nav-link:hover {
  text-decoration: none;
  color: var(--gold);
}
#menu .navbar-nav .nav-item .nav-link.dropdown-toggle:hover {
  background: var(--white);
}
#menu .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: none;
  border-bottom: 1px solid #dedede;
}
#menu .dropdown-menu li {
  background: transparent;
}
#menu .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--gold);
}
#menu .dropdown-menu ul li ul .dropdown-item:before {
  content: "– ";
}
#menu .dropdown-inner {
  display: flex;
  flex-direction: column;
  border: none;
}
#menu .dropdown-inner ul {
  width: 100%;
  min-width: 200px;
}
#menu .navbar .dropdown:hover > .nav-link,
#menu .navbar .dropdown:has(.dropdown-menu:hover) > .nav-link,
#menu .navbar .dropdown:focus-within > .nav-link {
  color: var(--gold);
  background: var(--white);
}
@media (min-width: 960px) {
  #menu .dropdown-menu {
    max-height: 0;
    overflow: hidden;
  }
  #menu .dropdown:hover .dropdown-menu {
    display: block;
    max-height: none;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
#menu .menu-sublink--cat-71 {
  text-transform: uppercase;
}

#navbar-menu {
  margin: 0 auto;
  justify-content: center;
}
#navbar-menu .nav-item.dropdown i {
  font-size: 8px;
  margin-left: 4px;
  transform: translateY(-2px);
}
#navbar-menu .nav-item.dropdown:hover .nav-link {
  color: var(--gold);
  background: var(--white);
}

#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}
#alert .alert-primary {
  box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}
#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}
#alert .alert-success {
  box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}
#alert .alert-warning {
  box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}
#alert .alert-danger {
  box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}
#alert .alert-info {
  box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}
#alert .alert-light {
  box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}
#alert .alert-dark {
  box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}

/* breadcrumb */
.breadcrumb {
  margin: 0 0 12px 0;
  padding: 8px 0;
  border: none;
  border-radius: 0;
  background-color: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  color: var(--color-tex);
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  text-shadow: none;
  padding: 0;
  position: relative;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
  color: var(--black);
}
.breadcrumb > li.breadcrumb-item > a:hover {
  color: var(--gold);
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: none;
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "»";
  color: #bf9764;
  padding-right: 4px;
}

/* product thumb */
.product-thumb {
  border: 1px solid #ddd;
  position: relative;
  height: 100%;
  transition: var(--transition);
  outline: 2px solid transparent;
  outline-offset: -1px;
  background-color: var(--white);
}
.product-thumb:hover {
  outline: 2px solid var(--gold);
  border-color: transparent;
}
.product-thumb:hover::before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.product-thumb__name {
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 42px;
}
.product-thumb__name a {
  color: var(--color-text);
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-thumb__name a:hover {
  color: var(--gold);
}
.product-thumb .price {
  color: var(--gold);
}
.product-thumb .image {
  text-align: center;
}
.product-thumb .description {
  padding: 15px;
}
.product-thumb form {
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
}
.product-thumb__add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  position: relative;
  z-index: 10;
}
.product-thumb__add-cart::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: var(--gray-100);
  z-index: -1;
}
.product-thumb__add-cart .button {
  max-width: -moz-min-content;
  max-width: min-content;
  white-space: nowrap;
  margin: 0 auto 8px;
  position: relative;
  z-index: 20;
}
.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-gray-600);
  line-height: 38px;
  text-align: center;
}
.product-thumb .button button:hover {
  color: var(--bs-gray-600);
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}
.product-thumb .button button + button {
  border-left: 1px solid var(--bs-border-color);
}
@media (min-width: 960px) {
  .product-thumb.product-list {
    display: flex;
  }
  .product-thumb.product-list .image {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .product-thumb.product-list .content {
    flex-direction: column;
    flex: 75%;
    position: relative;
  }
  .product-thumb.product-list .button {
    border-left: 1px solid #ddd;
    width: calc(100% - 15px);
    margin-left: 15px;
  }
}

.rating .fa-stack {
  width: 20px;
}
.rating .fa-star {
  color: #999;
  font-size: 15px;
}
.rating .fa-star + .fa-star {
  color: #e69500;
}
.rating .fa-star:not(.fa-stack-2x) {
  color: #fc0;
}

/* product list price */
.price {
  color: #444;
}

.price-new {
  font-weight: 400;
  font-size: 14px;
  color: var(--gold);
}

.price-old {
  color: #dc512c;
  text-decoration: line-through;
}

.price-tax {
  color: #999;
  font-size: 12px;
  display: block;
  display: none;
}

/* blog thumb */
.blog-thumb {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.blog-thumb h4 {
  font-weight: bold;
}
.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}
.blog-thumb .image a:hover {
  opacity: 0.8;
}
.blog-thumb .description {
  padding: 15px;
}

#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #ffffff;
}

/* Block */
.box {
  padding-top: 8px;
}
.box-photo {
  padding: 24px 0 24px;
}
.box-photo .col-xs-12 a {
  display: block;
}
.box-photo .col-xs-12 a img {
  width: 100% !important;
  height: auto;
  display: block;
}
.box-photo .h2 {
  margin-top: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dddddd;
}
.box .testimonial {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  padding: 24px 0px 10px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .box .testimonial {
    padding: 32px 0px 10px 83px;
    background: url(../../../image/catalog/theme/qoute.png) 19px 32px no-repeat;
  }
}

.home-info-swiper {
  padding: 32px 0 16px;
}
.home-info-swiper .swiper-nav {
  position: absolute;
  width: 72px;
  height: 32px;
  top: 16px;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-info-swiper .swiper-nav .swiper-button-next,
.home-info-swiper .swiper-nav .swiper-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  position: unset;
  height: 32px;
  width: 32px;
  background-color: #e7e7e7;
  transform: none;
  margin: 0;
  opacity: 1;
  background: linear-gradient(to bottom, #ffffff, #e7e7e7);
  border: 1px solid #e9e9e9;
}
.home-info-swiper .swiper-nav .swiper-button-next:after,
.home-info-swiper .swiper-nav .swiper-button-prev:after {
  display: none;
}
.home-info-swiper .swiper-nav .swiper-button-next.swiper-button-disabled,
.home-info-swiper .swiper-nav .swiper-button-prev.swiper-button-disabled {
  opacity: 0.7;
}
.home-info-swiper .swiper-nav .swiper-button-next svg,
.home-info-swiper .swiper-nav .swiper-button-prev svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text);
  stroke-width: 1;
  pointer-events: all;
  cursor: pointer;
}
.home-info-swiper .swiper-nav .swiper-button-next svg:hover,
.home-info-swiper .swiper-nav .swiper-button-prev svg:hover {
  stroke: var(--color-text);
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  background-color: #e7e7e7;
  transform: none;
  margin: 0;
  opacity: 1;
  background: linear-gradient(to bottom, #ffffff, #e7e7e7);
  border: 1px solid #e9e9e9;
  color: var(--color-text);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.7;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text);
  stroke-width: 1;
  pointer-events: all;
  cursor: pointer;
}
.swiper-button-next svg:hover,
.swiper-button-prev svg:hover {
  stroke: var(--color-text);
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.center-column .box {
  margin-top: -8px;
  position: relative;
}

.col-sm-3 .box,
.col-sm-4 .box {
  background: #fff;
  border: 1px solid #dedede;
  padding: 15px 20px 20px 20px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  margin-top: 20px;
}

.col-sm-3 .box .box-heading,
.col-sm-4 .box .box-heading {
  margin-top: 0px;
}

.box .strip-line {
  display: none;
}

.box .box-content {
  clear: both;
}

.box > .prev,
.box > .next {
  float: right;
  display: block;
  margin: 12px 0px 0px 2px;
  width: 32px;
  height: 32px;
  background: url(../img/left.png) no-repeat;
}

.box > .next {
  background: url(../img/right.png) no-repeat;
}

.col-sm-3 .box > .prev,
.col-sm-3 .box > .next,
.col-sm-4 .box > .prev,
.col-sm-4 .box > .next {
  display: none;
}

.box .home__info .prev,
.box .home__info .next {
  margin-top: 32px;
}

ul.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}
ul.pagination .active .page-link {
  background: linear-gradient(to bottom, #ffffff, #e7e7e7);
}
ul.pagination .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  background: var(--white);
  border: 1px solid #e9e9e9;
  color: var(--color-text);
  height: 32px;
  width: 32px;
  border-radius: 4px;
}
ul.pagination .page-link:hover {
  background: linear-gradient(to bottom, #ffffff, #e7e7e7);
}

.subcat-col {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .subcat-col {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .subcat-col {
    width: 25%;
  }
}
@media screen and (min-width: 1240px) {
  .subcat-col {
    width: 20%;
  }
}
.cat-children {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-single__image {
  display: block;
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 768px) {
  .product-single__image {
    margin: 0;
  }
}
.product-single__image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-single__additional-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}
.product-single__additional-images a {
  display: block;
}
.product-single__additional-images img {
  width: 100%;
  height: auto;
  display: block;
}
.product-single__additional-images .video-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  z-index: 10;
  opacity: 0.8;
  background: url(/image/circle-play.svg) center center no-repeat;
}
.product-single__additional-images .video-link:hover:before {
  opacity: 1;
}
.product-single__actions {
  gap: 8px;
}
.product-single__actions .input-group-text {
  background: none;
  padding: 0;
  border: none;
}
.product-single__actions #input-quantity {
  max-width: 100px;
}
.product-single__actions .btn {
  white-space: nowrap;
}
.product-single__prices {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 12px;
}
.product-single__prices .price-new {
  font-size: 15px;
}
.product-single__tabs {
  padding-top: 24px;
  margin-bottom: 48px;
}
.product-single__tabs .nav-tabs {
  margin-bottom: 0;
}
.product-single__tabs .tab-content {
  padding: 16px;
  border: 1px solid var(--gray-100);
  border-width: 0 1px 1px 1px;
}

.article-card {
  margin: 0 0 28px;
  padding: 8px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease-out;
  font-size: 16px;
}
.article-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
}
.article-card__content {
  padding: 12px 0;
  min-height: 112px;
}
.article-card__image img {
  width: 100%;
  height: auto;
  display: block;
}
.article-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-card__date {
  font-size: 14px;
}
.article-card__btn {
  display: flex;
  flex-direction: column;
  color: var(--black);
  font-size: 16px;
  font-weight: bold;
}
.article-card__btn:hover {
  color: var(--gold);
}

.lookbook-item {
  display: block;
  aspect-ratio: 1437/1798;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.lookbook-item:hover img {
  transform: scale(1.1) rotate(4deg);
}
.lookbook-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s ease;
  -o-object-fit: cover;
     object-fit: cover;
}

#cms-blog #content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

#common-home #carousel-banner-0 {
  display: none;
}
@media (min-width: 768px) {
  #common-home #carousel-banner-0 {
    display: block;
  }
}
#common-home #carousel-banner-1 {
  display: block;
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 768px) {
  #common-home #carousel-banner-1 {
    display: none;
  }
}

.ckeditor-html5-video {
  max-width: 100%;
  height: auto;
}
.ckeditor-html5-video video {
  max-width: 100%;
}

.f-button.is-arrow {
  background: none !important;
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: 8px !important;
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: 8px !important;
}

.f-button svg {
  fill: rgba(0, 0, 0, 0.3) !important;
}
/*# sourceMappingURL=stylesheet.min.css.map */
