.wrapper {
  padding-top: 120px;
}

@media (max-width: 991.98px) {
  .wrapper {
    padding-top: 60px;
  }
}

.main-inner {
  min-height: 100vh;
  position: relative;
  z-index: 1;
  background: var(--white);
}

/* hero banner */
.hero-banner>.container {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding-block: 30px;
}

/* breadcrumb */
.hero-banner__title {
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

.hero-banner__breadcrumb {
  --bs-breadcrumb-font-size: 13px;
}

.hero-banner__breadcrumb ol {
  margin-bottom: 0;
}

.hero-banner__breadcrumb a {
  text-decoration: none;
  line-height: 1;
  color: var(--text-secondary);
}

@media (max-width: 991.98px) {
  .hero-banner>.container {
    flex-direction: column;
    justify-content: center;
  }
}


/* menu dropdown */
.dropdown__simple-menu,
.dropdown__simple-menu .dropdown__submenu {
  position: absolute;
  background-color: var(--offblack-1c);
  padding: 15px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
  min-width: 180px;
  box-shadow: 0 5px 15px var(--black-15);
}

.dropdown__simple-menu {
  top: 100%;
  left: 0;
}

.dropdown__simple-menu .dropdown__submenu {
  top: 0;
  left: 100.8%;
}

.dropdown:hover>.dropdown__simple-menu,
.dropdown__simple-menu .dropdown__item--has-submenu:hover>.dropdown__submenu {
  opacity: 1;
  visibility: visible;
}

.dropdown__simple-menu .dropdown__item {
  position: relative;
  padding: 0;
}

.dropdown__simple-menu .dropdown__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 25px;
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 13px;
  line-height: 17px;
  transition: color 0.3s ease;
  font-weight: 400;
}

.dropdown__simple-menu .dropdown__link:hover,
.dropdown__simple-menu .dropdown__item:hover>.dropdown__link {
  color: var(--white);
}

.dropdown__simple-menu .dropdown__icon {
  font-size: 10px;
  color: inherit;
}

/* drawer / offcanvas */
.offcanvas.offcanvas__search {
  height: 460px;
  background-color: var(--white);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offcanvas__btn-close {
  position: absolute;
  font-size: 16px;
  font-weight: 300;
  line-height: 36px;
  background-color: var(--transparent);
  right: 20px;
  top: 20px;
}

.offcanvas.offcanvas__search .search-form {
  width: 45%;
  position: relative;
}

.search__field {
  position: relative;
}

.search-form__input {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--black-60) !important;
  font-size: 20px;
  font-weight: 300;
  padding: 10px 38px 10px 2px;
  background-color: var(--transparent);
  line-height: 36px;
  color: var(--white);
}

.offcanvas.offcanvas__search .search-form__button.btn__icon {
  position: absolute;
  top: 7px;
  right: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: var(--text-primary);
}

.search-form__button.btn__icon svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.offcanvas.offcanvas__search .search-form__label {
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
  color: var(--text-secondary);
}

/* product card */
.product-card {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  cursor: pointer;
}

.product-card__overlay {
  opacity: 0.95;
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-color: var(--white-90);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.product-card .product-card__thumb img {
  width: 100%;
}

.product-card .product-card__alternate-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.5s;
}

.product-card .product-card__btns-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  width: -moz-max-content;
  width: -webkit-max-content;
  z-index: 4;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  margin-top: 30px;
  align-self: center;
  display: flex;
}

.product-card .product-card__btns-wrap a {
  background-color: var(--transparent);
  color: var(--black);
  min-width: 1px;
  margin: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 44px;
  opacity: 1;
  border: 1px solid var(--black);
  border-left: 0;
  position: relative;
}

.product-card .product-card__btns-wrap .product-card__add-cart-btn {
  display: none;
}

.product-card .product-card__btns-wrap a svg {
  width: 16px;
  height: 16px;
}

.product-card .product-card__btns-wrap a:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.product-card .product-card__btns-wrap a:first-child {
  border-left: 1px solid var(--black);
}

.product-card .product-card__bottom {
  z-index: 4;
  left: 0;
  padding: 20px 15px 30px;
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 97px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.product-card .product-card__bottom h6 {
  font-size: 13px;
  line-height: 17px;
  transition: all 0.3s ease-in-out;
}

.product-card .product-card__bottom h6:hover {
  color: var(--gold-color);
}

.product-card .product-card__price {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 14px;
  display: block;
}

.product-card .product-card__bottom .btn {
  opacity: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card:hover .product-card__alternate-img {
  opacity: 1;
  visibility: visible;
}

.product-card:hover .product-card__btns-wrap {
  opacity: 1;
  margin-top: 0;
}

.product-card:hover .product-card__bottom {
  padding: 20px 15px 50px;
  transition: all 0.3s ease-in-out;
}

.product-card:hover .product-card__price {
  opacity: 0;
}

.product-card:hover .product-card__bottom .btn {
  opacity: 1;
  bottom: 36px;
}

@media (max-width: 1199.98px) {

  .product-card__overlay,
  .product-card .product-card__alternate-img,
  .product-card .product-card__bottom .btn {
    display: none;
  }

  .product-card .product-card__bottom {
    position: static;
  }

  .product-card:hover .product-card__bottom {
    padding: 20px 15px;
  }

  .product-card:hover .product-card__price {
    opacity: 1;
  }

  .product-card__inner {
    position: relative;
  }

  .product-card .product-card__btns-wrap {
    opacity: 1;
    margin-top: 0;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    transform: none;
  }

  .product-card .product-card__btns-wrap a {
    background-color: var(--white);
    border: none;
  }

  .product-card .product-card__btns-wrap a:first-child {
    border: none;
  }

  .product-card .product-card__btns-wrap a:not(:last-child):before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 12px;
    width: 1px;
    height: 20px;
    background-color: var(--surface-e4e4e4);
    transition-duration: 0.3s;
    opacity: 1;
    z-index: 2;
    display: block;
  }

  .product-card .product-card__btns-wrap .product-card__add-cart-btn {
    display: flex;
    background: var(--text-primary);
    color: var(--white);
  }
}

/* Classic Product Card Variation */
.product-card--classic {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.product-card--classic .product-card__inner {
  background-color: var(--page-bg);
  position: relative;
  margin-bottom: 25px;
}

.product-card--classic .product-card__thumb img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-card--classic .product-card__btns-wrap {
  gap: 1px;
  opacity: 1;
  visibility: visible;
  margin: 0;
  top: auto;
  bottom: 0;
}

.product-card--classic .product-card__btns-wrap a {
  border: 0;
  background-color: var(--offblack-1b);
  color: var(--white);
  min-width: 1px;
  margin: 0 4px;
  display: inline-block;
  border-radius: 4px;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  line-height: 38px;
  transform: translateY(15px);
  transition: all 0.2s ease-in-out, transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
}

.product-card--classic .product-card__btns-wrap a:nth-child(2) {
  transition-delay: 0s, 0.2s, 0.2s;
}

.product-card--classic .product-card__btns-wrap a:nth-child(3) {
  transition-delay: 0s, 0.3s, 0.3s;
}

.product-card--classic:hover .product-card__btns-wrap a {
  opacity: 1;
  transform: translateY(0px);
}

.product-card--classic .product-card__btns-wrap a:hover {
  background-color: var(--white);
  color: var(--text-muted-4e);
  box-shadow: 0 0 6px -2px var(--black-70);
  border-left-color: var(--white);
}

.product-card--classic .product-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--success-green-2);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  z-index: 5;
  text-transform: uppercase;
}

.product-card--classic .product-card__bottom {
  position: static;
  padding: 0;
  min-height: auto;
  background: var(--transparent);
  opacity: 1;
  transform: none;
}

.product-card--classic:hover .product-card__bottom {
  padding: 0;
}

.product-card--classic .product-card__bottom h6 {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 0;
  font-weight: 500;
}

.product-card--classic .product-card__price {
  font-size: 14px;
  color: var(--text-secondary);
  opacity: 1;
}

.product-card--classic:hover .product-card__price {
  opacity: 1;
}

.product-card--classic .product-card__price del {
  margin-right: 8px;
  color: var(--text-muted-aaaaaa);
}

@media (max-width: 1199.98px) {

  /* product-card--classic */
  .product-card--classic .product-card__btns-wrap {
    position: static;
    transform: none;
    width: 100%;
    gap: 0;
  }

  .product-card--classic .product-card__btns-wrap a {
    width: 33.33%;
    opacity: 1;
    transform: none;
    margin: 0;
    border-radius: 0;
  }

  .product-card--classic .product-card__alternate-img {
    display: block;
  }

  .product-card--classic .product-card__btns-wrap a:not(:last-child):before {
    height: 100%;
    bottom: 0;
    background-color: var(--white-20);
  }
}


/* Quick View Modal */
.quick-view-modal .modal-dialog {
  width: 1000px;
  max-width: 1000px;
  margin: 1.75rem auto;
}

.quick-view-modal__content {
  border-radius: 0;
  border: none;
  padding: 38px 38px 30px;
  position: relative;
}

.quick-view-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--offblack-111);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.quick-view-modal__body {
  padding: 0;
}

.quick-view-modal__slider-wrap {
  background: var(--page-bg);
  position: relative;
}

.quick-view-modal__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  background: var(--success-green-2);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 9px;
  text-transform: uppercase;
}

.quick-view-modal__slider {
  position: relative;
}

.quick-view-modal__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}

.quick-view-modal__img {
  width: 100%;
  max-width: 430px;
  object-fit: contain;
}

.quick-view-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: var(--transparent);
  color: var(--text-muted-696969);
  font-size: 18px;
  z-index: 3;
}

.quick-view-modal__nav--prev {
  left: 0;
}

.quick-view-modal__nav--next {
  right: 0;
}

.quick-view-modal__details {
  padding: 6px 0 0;
}

.quick-view-modal__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.quick-view-modal__title {
  margin: 0;
  color: var(--text-primary);
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
}

.quick-view-modal__sku {
  margin-top: 8px;
  color: var(--text-primary);
  font-size: 11px;
  text-transform: uppercase;
  line-height: 20px;
  margin-bottom: 5px;
  font-weight: 500;
}

.quick-view-modal__sku>span {
  color: var(--text-secondary);
}

.quick-view-modal__price {
  font-size: 14px;
  color: var(--text-primary);
  padding-top: 8px;
}

.quick-view-modal__price del {
  color: var(--text-muted-909090);
  margin-right: 10px;
}

.quick-view-modal__description {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  margin: 0;
  padding: 20px 0;
  font-size: 14px;
  line-height: 1.8;
}

.quick-view-modal__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.quick-view-modal__qty {
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  min-width: 62px;
}

.quick-view-modal__qty-btn {
  width: 22px;
  height: 20px;
  border: 0;
  background: var(--transparent);
  color: var(--text-muted-5f);
  font-size: 12px;
  line-height: 1;
}

.quick-view-modal__qty-input {
  width: 38px;
  height: 40px;
  border: 0;
  text-align: center;
  color: var(--text-primary);
  font-size: 14px;
  pointer-events: none;
}

.quick-view-modal__qty-controls {
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.quick-view-modal__qty-controls .quick-view-modal__qty-btn:first-child {
  border-bottom: 1px solid var(--border-color);
}

.quick-view-modal__secondary-links {
  display: flex;
  gap: 24px;
  font-size: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
}

.quick-view-modal__secondary-link {
  color: var(--text-secondary);
  text-decoration: none;
}

.quick-view-modal__secondary-link svg {
  margin-right: 5px;
}

.quick-view-modal__meta {
  color: var(--text-secondary);
  font-size: 11px;
  line-height: 1.8;
  padding: 20px 0 12px;
}

.quick-view-modal__meta-item {
  margin-bottom: 4px;
}

.quick-view-modal__meta-item a {
  color: var(--text-secondary);
  font-weight: 400;
  text-decoration: none;
}

.quick-view-modal__meta-item a:hover {
  color: var(--gold-color);
}

.quick-view-modal__meta strong {
  color: var(--text-primary);
  font-weight: 500;
}

.quick-view-modal__social {
  display: flex;
  gap: 14px;
}

.quick-view-modal__social-link {
  color: var(--text-primary);
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .quick-view-modal__content {
    padding: 30px 20px 22px;
  }

  .quick-view-modal__slide {
    min-height: 300px;
  }

  .quick-view-modal__title {
    font-size: 28px;
  }

  .quick-view-modal .modal-dialog {
    width: auto;
    margin: 0.75rem;
  }
}


