:root {
  --body: #eef2f6;
  --primary-color: #ff7a00;
  --primary-dark: #df6500;
  --button-color: #ff7a00;
  --soft-color: #fff3e8;
  --content: #ffffff;
  --text-color: #273142;
  --muted-color: #77808f;
  --border-color: #e8ecf1;
  --shadow-default: 0 8px 24px rgba(39, 49, 66, 0.09);
  --store-width: 920px;
}

html {
  scroll-behavior: smooth;
}

body.openstore-theme {
  background: var(--body);
  color: var(--text-color);
  font-family: "Ubuntu", "Open Sans", sans-serif;
  font-size: 14px;
  min-height: 100vh;
}

.openstore-theme .breadcrumb {
  display: none !important;
}

.openstore-theme a,
.openstore-theme a:hover,
.openstore-theme a:focus {
  text-decoration: none;
}

.mobile-header {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
}

.mobile-header__inner,
.mobile-header__search,
.storefront__content,
.store-footer__inner {
  margin: 0 auto;
  max-width: var(--store-width);
  width: 100%;
}

.mobile-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 62px;
  padding: 8px 18px;
}

.mobile-header__brand {
  align-items: center;
  color: var(--text-color);
  display: flex;
  font-size: 18px;
  font-weight: 700;
  min-width: 0;
}

.mobile-header__brand:hover {
  color: var(--primary-color);
}

.mobile-header__brand img {
  border-radius: 8px;
  height: 38px;
  margin-right: 10px;
  object-fit: contain;
  width: 38px;
}

.mobile-header__brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-header__actions {
  display: flex;
}

.mobile-header__actions .header-action > i {
  font-size: 18px;
}

.header-action {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #737b88;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  -webkit-appearance: none;
  width: 44px;
}

.header-action:hover,
.header-action:focus,
.header-action:active {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--primary-color);
  outline: 0;
}

.mobile-header__search {
  display: none;
  padding: 0 18px 14px;
}

.mobile-header__search.is-open {
  display: block;
}

.mobile-header__search #search {
  margin: 0;
}

.mobile-header__search #search input {
  border-color: var(--border-color);
  border-radius: 8px 0 0 8px;
  box-shadow: none;
  height: 42px;
}

.mobile-header__search #search button {
  background: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 0 8px 8px 0;
  color: #fff;
  height: 42px;
}

.storefront__content {
  background: var(--content);
  box-shadow: var(--shadow-default);
  min-height: 70vh;
  overflow: hidden;
  padding-bottom: 24px;
}

.storefront__content > .swiper-viewport,
.storefront__content > .swiper-container,
.storefront__content > .banner {
  margin-bottom: 0;
}

.storefront__content .swiper-slide img {
  width: 100%;
}

.openstore-theme .slideshow .swiper-pager {
  display: none;
}

.openstore-theme .slideshow .swiper-pagination-bullet {
  height: 5px;
  margin: 0 3px;
  width: 5px;
}

.openstore-theme .slideshow .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.storefront-widgets {
  display: flex;
  gap: 14px;
  padding: 18px 18px 0;
}

.storefront-widgets > #column-left,
.storefront-widgets > #column-right {
  float: none;
  padding: 0;
  width: 50%;
}

.category-section,
.product-section,
.store-information {
  padding: 22px 18px 8px;
  scroll-margin-top: 78px;
}

.section-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-heading h2 {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 700;
  margin: 2px 0 0;
}

.section-heading h2 .fa {
  color: var(--primary-color);
  margin-right: 6px;
}

.section-heading__eyebrow {
  color: var(--primary-color);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading__link {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 500;
}

#common-home .storefront__content {
  overflow: visible;
}

#common-home .section-heading__eyebrow {
  display: none;
}

#common-home .product-section {
  border-top: 8px solid var(--body);
  margin-top: 16px;
  padding-top: 0;
  position: relative;
}

#common-home .product-section .section-heading {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border-color);
  margin: 0 -18px 16px;
  padding: 14px 18px 12px;
  position: sticky;
  top: 62px;
  z-index: 20;
}

#common-home .product-section .section-heading h2 {
  margin-top: 0;
}

#common-home .product-section--special {
  border-radius: 0;
  margin: 16px 0 0;
  padding: 0 18px 20px;
}

#common-home .product-section--special .section-heading {
  background: rgba(255, 248, 241, 0.97);
}

/* Product detail */
#product-product {
  background: var(--body);
  margin: 0 auto;
  max-width: var(--store-width);
  min-height: 70vh;
  padding: 28px 20px 64px;
  width: 100%;
}

#product-product > .row {
  margin: 0;
}

#product-product #content {
  float: none;
  padding: 0;
  width: 100%;
}

#product-product #content > .row {
  align-items: flex-start;
  display: grid;
  gap: 26px;
  grid-template-areas: "gallery info";
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  margin: 0 0 28px;
}

#product-product #content > .row > div {
  float: none;
  min-width: 0;
  padding: 0;
  width: 100%;
}

#product-product #content > .row > .col-sm-8 {
  grid-area: gallery;
}

#product-product #content > .row > .col-sm-4 {
  grid-area: info;
}

#product-product .thumbnails {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

#product-product .thumbnails > li {
  margin: 0;
}

#product-product .product-gallery__main {
  display: block;
  width: 100%;
}

#product-product .product-gallery__main .thumbnail {
  align-items: center;
  display: flex;
  justify-content: center;
  height: clamp(430px, 42vw, 560px);
  min-height: 0;
  width: 100%;
}

#product-product .thumbnails .thumbnail {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

#product-product .product-gallery__main .thumbnail img,
#product-product .thumbnails > li:first-child .thumbnail img {
  aspect-ratio: auto;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  transition: opacity 0.2s ease;
  width: 100%;
}

#product-product .product-gallery__rail {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  margin-top: 12px;
  width: 100%;
}

#product-product .product-gallery__viewport {
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#product-product .product-gallery__viewport::-webkit-scrollbar {
  display: none;
}

#product-product .product-gallery__list {
  display: flex;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 1px;
  width: max-content;
}

#product-product .product-gallery__list .image-additional {
  flex: 0 0 76px;
  scroll-snap-align: start;
}

#product-product .thumbnails .image-additional img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

#product-product .product-gallery__list .image-additional .thumbnail {
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#product-product .product-gallery__list .image-additional.is-active .thumbnail,
#product-product .product-gallery__list .image-additional .thumbnail:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--soft-color);
}

#product-product .product-gallery__nav {
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--muted-color);
  display: flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

#product-product .product-gallery__nav:hover,
#product-product .product-gallery__nav:focus {
  border-color: var(--primary-color);
  color: var(--primary-color);
  outline: 0;
}

#product-product #content > .row > div:last-child {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(39, 49, 66, 0.07);
  padding: 24px;
  position: sticky;
  top: 80px;
}

@media (min-width: 992px) {
  #product-product #content > .row {
    display: grid !important;
    grid-template-areas: "gallery info";
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  }

  #product-product #content > .row > .col-sm-8,
  #product-product #content > .row > .col-sm-4 {
    float: none !important;
    width: 100% !important;
  }

  #product-product #content > .row > .col-sm-8 {
    grid-area: gallery;
  }

  #product-product #content > .row > .col-sm-4 {
    grid-area: info;
  }
}

#product-product #content > .row > div:last-child > .btn-group {
  display: flex;
  float: right;
  gap: 7px;
}

#product-product #content > .row > div:last-child > .btn-group .btn {
  align-items: center;
  background: var(--soft-color);
  border: 0;
  border-radius: 50%;
  color: var(--primary-dark);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  width: 38px;
}

#product-product button[onclick^="compare.add"] {
  display: none !important;
}

#product-product #content > .row > div:last-child > h1 {
  color: var(--text-color);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.35;
  margin: 2px 90px 13px 0;
}

#product-product #content > .row > div:last-child > .list-unstyled {
  border-top: 1px solid var(--border-color);
  color: var(--muted-color);
  margin: 0;
  padding: 12px 0;
}

#product-product #content > .row > div:last-child > .list-unstyled li {
  line-height: 1.7;
}

#product-product #content > .row > div:last-child > .list-unstyled h2 {
  color: var(--primary-color);
  font-size: 29px;
  font-weight: 700;
  margin: 0;
}

#product-product #content > .row > div:last-child > .list-unstyled span[style] {
  color: var(--muted-color);
  font-size: 13px;
}

#product-product #product {
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

#product-product #product > hr {
  display: none;
}

#product-product #product h3 {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
}

#product-product #product .form-group {
  margin-bottom: 14px;
}

#product-product #product .control-label {
  color: var(--text-color);
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}

#product-product #product .form-control {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: none;
  height: 44px;
}

#product-product #product textarea.form-control {
  height: auto;
}

#product-product #product .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--soft-color);
}

#product-product #product .radio,
#product-product #product .checkbox {
  margin: 7px 0;
}

#product-product #product .radio label,
#product-product #product .checkbox label {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  display: flex;
  gap: 8px;
  min-height: 42px;
  padding: 8px 11px 8px 32px;
  width: 100%;
}

#product-product #product input[name="quantity"] {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  width: 72px;
}

#product-product #button-cart {
  background: var(--button-color);
  border: 0;
  border-radius: 11px;
  box-shadow: none;
  font-size: 16px;
  font-weight: 700;
  min-height: 48px;
  text-shadow: none;
}

#product-product #button-cart:hover,
#product-product #button-cart:focus {
  background: var(--primary-dark);
}

#product-product .rating {
  border-top: 1px solid var(--border-color);
  color: var(--muted-color);
  margin-top: 14px;
  padding-top: 13px;
}

#product-product .rating .fa-star {
  color: #f4b740;
}

#product-product .addthis_toolbox {
  display: none;
}

#product-product .nav-tabs {
  border: 0;
  display: flex;
  gap: 6px;
  margin: 24px 0 0;
  overflow-x: auto;
  padding: 5px;
}

#product-product .nav-tabs > li {
  float: none;
  margin: 0;
}

#product-product .nav-tabs > li > a {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  color: var(--muted-color);
  margin: 0;
  white-space: nowrap;
}

#product-product .nav-tabs > li.active > a,
#product-product .nav-tabs > li.active > a:hover,
#product-product .nav-tabs > li.active > a:focus {
  background: var(--soft-color);
  border-color: var(--primary-color);
  color: var(--primary-dark);
}

#product-product .tab-content {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: var(--text-color);
  line-height: 1.7;
  margin-top: 10px;
  padding: 22px;
}

#product-product .tab-content img {
  height: auto !important;
  max-width: 100% !important;
}

#product-product #content > h3 {
  align-items: center;
  color: var(--text-color);
  display: flex;
  font-size: 20px;
  font-weight: 700;
  gap: 10px;
  margin: 30px 0 15px;
}

#product-product #content > h3:before {
  background: var(--primary-color);
  border-radius: 999px;
  content: "";
  flex: 0 0 5px;
  height: 24px;
}

#product-product #content > h3 + .row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

#product-product #content > h3 + .row > div {
  float: none;
  padding: 0;
  width: auto;
}

#product-product .product-thumb {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(39, 49, 66, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

#product-product .product-thumb:hover {
  box-shadow: var(--shadow-default);
  transform: translateY(-2px);
}

#product-product .product-thumb .image {
  background: #f6f7f9;
  overflow: hidden;
}

#product-product .product-thumb .image a {
  display: block;
}

#product-product .product-thumb .image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

#product-product .product-thumb:hover .image img {
  transform: scale(1.03);
}

#product-product .product-thumb .caption {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 13px;
}

#product-product .product-thumb h4 {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

#product-product .product-thumb h4 a {
  color: var(--text-color);
  display: -webkit-box;
  font-weight: 700;
  min-height: 39px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#product-product .product-thumb .caption > p:not(.price),
#product-product .product-thumb .button-group button:nth-child(3) {
  display: none;
}

#product-product .product-thumb .price {
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0 0;
}

#product-product .product-thumb .price-new {
  color: var(--primary-color);
  font-weight: 700;
}

#product-product .product-thumb .price-old {
  color: #9aa1ac;
  font-size: 11px;
  margin: 2px 0 0;
  order: -1;
}

#product-product .product-thumb .price-tax {
  display: none;
}

#product-product .product-thumb .rating {
  border: 0;
  font-size: 10px;
  margin: 8px 0 0;
  order: 2;
  padding: 0;
}

#product-product .product-thumb .rating .fa-stack {
  height: 13px;
  line-height: 13px;
  width: 12px;
}

#product-product .product-thumb .button-group {
  background: #fff;
  border: 0;
  display: flex;
  gap: 7px;
  overflow: visible;
  padding: 0 12px 12px;
}

#product-product .product-thumb .button-group button {
  align-items: center;
  background: var(--primary-color);
  border: 0;
  border-radius: 9px;
  color: #fff;
  display: inline-flex;
  float: none;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 39px;
  padding: 8px 10px;
  text-transform: none;
  width: auto;
}

#product-product .product-thumb .button-group button:first-child {
  flex: 1;
  width: auto;
}

#product-product .product-thumb .button-group button:nth-child(2) {
  background: var(--soft-color);
  color: var(--primary-dark);
  flex: 0 0 39px;
  width: 39px;
}

#product-product .product-thumb .button-group button:hover,
#product-product .product-thumb .button-group button:focus {
  background: var(--primary-dark);
  color: #fff;
  outline: 0;
}

#product-product .product-thumb .button-group button .fa-shopping-cart {
  margin-left: 7px;
}

#product-product .product-thumb .button-group button:first-child span {
  display: inline !important;
}

.category-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.category-list::-webkit-scrollbar {
  display: none;
}

.category-card {
  align-items: center;
  border-radius: 12px;
  color: #fff;
  display: flex;
  flex: 0 0 clamp(145px, 38vw, 210px);
  font-size: 16px;
  font-weight: 700;
  height: 70px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  text-align: center;
}

.category-card__image {
  display: block;
  inset: 0;
  position: absolute;
}

.category-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.category-card::after {
  background: rgba(0, 0, 0, 0.42);
  content: "";
  inset: 0;
  position: absolute;
}

.category-card__name {
  padding: 0 12px;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.category-card:hover,
.category-card:focus {
  color: #fff;
}

.category-card:hover img {
  transform: scale(1.05);
}

.product-section--special {
  background: linear-gradient(135deg, var(--soft-color), #fff);
  margin: 14px 12px 0;
  padding-bottom: 20px;
  border-radius: 16px;
}

.product-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid--scroll {
  display: flex;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scrollbar-width: thin;
}

.product-grid--scroll .product-card {
  flex: 0 0 205px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(39, 49, 66, 0.05);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-default);
  transform: translateY(-2px);
}

.product-card:focus {
  box-shadow: 0 0 0 3px var(--soft-color), var(--shadow-default);
  outline: 0;
}

.product-card__image {
  background: #f5f5f5;
  display: block;
  position: relative;
}

.product-card__image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.product-card__badge {
  background: var(--primary-color);
  border-radius: 0 0 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  left: 0;
  padding: 5px 8px;
  position: absolute;
  top: 0;
  z-index: 1;
}

.product-card__quick-actions {
  display: flex;
  gap: 7px;
  opacity: 0;
  position: absolute;
  right: 9px;
  top: 9px;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.product-card:hover .product-card__quick-actions,
.product-card:focus-within .product-card__quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quick-actions button {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-color);
  display: flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.product-card__quick-actions button:hover,
.product-card__quick-actions button:focus {
  border-color: var(--primary-color);
  color: var(--primary-color);
  outline: 0;
}

.product-card__quick-actions button.is-wishlisted,
#product-product button[onclick^="wishlist.add"].is-wishlisted,
.product-sheet__favorite.is-wishlisted {
  background: #fff0f2;
  border-color: #ffc6ce;
  color: #e32636;
}

.product-card__quick-actions button.is-wishlist-loading,
#product-product button[onclick^="wishlist.add"].is-wishlist-loading,
.product-sheet__favorite.is-wishlist-loading {
  cursor: wait;
  opacity: 0.65;
}

.product-card__quick-actions button.is-like-animating,
#product-product button[onclick^="wishlist.add"].is-like-animating,
.product-sheet__favorite.is-like-animating {
  animation: wishlist-like-pop 0.65s cubic-bezier(0.2, 0.85, 0.35, 1.25);
  overflow: visible;
  position: relative;
}

.wishlist-like-burst {
  animation: wishlist-like-burst 0.7s ease-out forwards;
  background: #e32636;
  border-radius: 50%;
  height: 5px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 5px;
  z-index: 4;
}

@keyframes wishlist-like-pop {
  0%,
  100% {
    transform: scale(1);
  }

  35% {
    transform: scale(0.78);
  }

  65% {
    transform: scale(1.32) rotate(-8deg);
  }
}

@keyframes wishlist-like-burst {
  0% {
    box-shadow: 0 0 #e32636, 0 0 #ff7a00, 0 0 #ffb400, 0 0 #e32636, 0 0 #ff7a00, 0 0 #ffb400;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.4);
  }

  100% {
    box-shadow: 0 -25px #e32636, 22px -12px #ff7a00, 22px 13px #ffb400, 0 25px #e32636, -22px 13px #ff7a00, -22px -12px #ffb400;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 12px;
}

.product-card__name {
  color: var(--text-color);
  cursor: pointer;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__body p {
  color: var(--muted-color);
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.45;
  margin: 8px 0 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__footer {
  align-items: flex-end;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: auto;
}

.product-card__price del {
  color: #9aa1ac;
  display: block;
  font-size: 10px;
}

.product-card__price strong {
  color: var(--primary-color);
  display: block;
  font-size: 15px;
}

.product-card__cart {
  background: transparent;
  border: 1px solid var(--button-color);
  border-radius: 7px;
  color: var(--button-color);
  font-size: 12px;
  min-width: 58px;
  padding: 7px 9px;
  position: relative;
}

.product-card__cart:hover,
.product-card__cart.is-added {
  background: var(--button-color);
  color: #fff;
}

.product-card__cart.is-loading {
  background: var(--button-color);
  color: #fff;
  cursor: wait;
}

.product-card__cart.is-loading span {
  visibility: hidden;
}

.product-card__cart.is-loading::after {
  animation: product-cart-loading 0.7s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  border-top-color: #fff;
  content: "";
  height: 16px;
  left: 50%;
  margin: -8px 0 0 -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

@keyframes product-cart-loading {
  to {
    transform: rotate(360deg);
  }
}

.store-information {
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  margin-top: 20px;
  padding-bottom: 22px;
}

.store-information__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 22px;
}

.store-information__links a {
  border-right: 1px dashed var(--border-color);
  color: var(--text-color);
  font-size: 12px;
  padding: 8px;
  text-align: center;
}

.store-information__links a:last-child {
  border-right: 0;
}

.store-information__links .fa {
  color: var(--primary-color);
  display: block;
  font-size: 22px;
  margin-bottom: 5px;
}

.store-information__about h2 {
  font-size: 20px;
  margin: 3px 0 8px;
}

.store-information__about p {
  color: var(--muted-color);
  margin: 0 0 6px;
}

.store-information__address .fa {
  color: var(--primary-color);
}

.floating-cart {
  align-items: center;
  background: var(--button-color);
  border-radius: 12px;
  bottom: 18px;
  box-shadow: 0 9px 25px rgba(255, 122, 0, 0.35);
  color: #fff;
  display: flex;
  justify-content: space-between;
  left: 50%;
  max-width: 420px;
  padding: 11px 16px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 900;
}

.floating-cart:hover,
.floating-cart:focus {
  color: #fff;
}

.floating-cart.is-receiving {
  animation: floating-cart-receive 0.42s ease;
}

.product-cart-flyer {
  border: 2px solid #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(39, 49, 66, 0.28);
  object-fit: cover;
  pointer-events: none;
  position: fixed;
  transition: transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), opacity 0.72s ease;
  z-index: 2200;
}

@keyframes floating-cart-receive {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  45% {
    transform: translateX(-50%) scale(1.06);
  }
}

.floating-cart small,
.floating-cart strong {
  display: block;
}

.floating-cart small {
  opacity: 0.85;
}

.floating-cart .fa {
  font-size: 25px;
}

.store-notice {
  background: #273142;
  border-radius: 8px;
  color: #fff;
  display: none;
  left: 50%;
  max-width: 420px;
  padding: 11px 15px;
  position: fixed;
  top: 76px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 1200;
}

.store-notice .fa {
  color: #4ade80;
  margin-right: 6px;
}

body.product-sheet-open {
  overflow: hidden;
}

.product-sheet {
  inset: 0;
  pointer-events: none;
  position: fixed;
  visibility: hidden;
  z-index: 1500;
}

.product-sheet.is-open {
  pointer-events: auto;
  visibility: visible;
}

.product-sheet__backdrop {
  background: rgba(17, 24, 39, 0.58);
  border: 0;
  inset: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  transition: opacity 0.25s ease;
  width: 100%;
}

.product-sheet.is-open .product-sheet__backdrop {
  opacity: 1;
}

.product-sheet__panel {
  background: #fff;
  border-radius: 20px 20px 0 0;
  bottom: 0;
  box-shadow: 0 -12px 35px rgba(17, 24, 39, 0.18);
  left: 50%;
  max-height: 88vh;
  max-width: 620px;
  overflow-y: auto;
  position: absolute;
  transform: translate(-50%, 105%);
  transition: transform 0.3s ease;
  width: 100%;
}

.product-sheet.is-open .product-sheet__panel {
  transform: translate(-50%, 0);
}

.product-sheet__handle {
  background: #d8dde5;
  border-radius: 999px;
  height: 4px;
  margin: 9px auto 7px;
  width: 42px;
}

.product-sheet__close {
  background: rgba(39, 49, 66, 0.82);
  border: 0;
  border-radius: 50%;
  color: #fff;
  height: 34px;
  position: absolute;
  right: 14px;
  top: 18px;
  width: 34px;
  z-index: 2;
}

.product-sheet__media {
  background: #f4f6f8;
  max-height: 44vh;
  overflow: hidden;
}

.product-sheet__gallery {
  display: flex;
  max-height: 44vh;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-color: var(--primary-color) transparent;
  scrollbar-width: thin;
}

.product-sheet__gallery.has-multiple-images {
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
}

.product-sheet__gallery img {
  background: #f4f6f8;
  display: block;
  flex: 0 0 100%;
  height: auto;
  max-height: none;
  min-height: 44vh;
  object-fit: contain;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  width: 100%;
}

.product-sheet__gallery.has-multiple-images:after {
  background: rgba(39, 49, 66, 0.78);
  border-radius: 999px;
  bottom: 10px;
  color: #fff;
  content: "Geser ke samping untuk foto lainnya";
  font-size: 10px;
  left: 50%;
  padding: 6px 10px;
  pointer-events: none;
  position: sticky;
  transform: translateX(-50%);
  width: max-content;
}

.product-sheet__content {
  padding: 20px 20px 24px;
}

.product-sheet__content h2 {
  color: var(--text-color);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.product-sheet__content > p {
  color: var(--muted-color);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-sheet__price {
  margin-bottom: 20px;
}

.product-sheet__price del {
  color: #9aa1ac;
  display: block;
  font-size: 12px;
}

.product-sheet__price strong {
  color: var(--primary-color);
  font-size: 21px;
}

.product-sheet__actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.product-sheet__actions > a {
  color: var(--primary-color);
  font-weight: 500;
  padding: 11px 4px;
  text-align: center;
  width: 30%;
}

.product-sheet__favorite {
  align-items: center;
  background: var(--soft-color);
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--primary-dark);
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 18px;
  height: 44px;
  justify-content: center;
  padding: 0;
}

.product-sheet__favorite:hover,
.product-sheet__favorite:focus,
.product-sheet__favorite.is-added {
  background: #fff0f0;
  border-color: #f1caca;
  color: #d64545;
  outline: 0;
}

.product-sheet__order {
  background: var(--button-color);
  border: 0;
  border-radius: 9px;
  color: #fff;
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 18px;
}

/* Cart page */
.cart-page {
  min-height: 70vh;
  padding: 24px 16px 64px;
}

.cart-page__container {
  margin: 0 auto;
  max-width: 1080px;
}

.cart-page .alert {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(39, 49, 66, 0.06);
}

.cart-page__heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-page__heading span {
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-page__heading h1 {
  color: var(--text-color);
  font-size: 28px;
  font-weight: 700;
  margin: 3px 0 0;
}

.cart-page__heading small {
  color: var(--muted-color);
}

.cart-layout {
  align-items: flex-start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.cart-items {
  min-width: 0;
}

#cart-form.is-updating {
  opacity: 0.65;
  pointer-events: none;
}

.cart-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(39, 49, 66, 0.05);
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  padding: 14px;
}

.cart-item__image {
  background: #f5f6f8;
  border-radius: 10px;
  flex: 0 0 116px;
  height: 116px;
  overflow: hidden;
}

.cart-item__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cart-item__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.cart-item__top,
.cart-item__bottom {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.cart-item__top small {
  color: var(--muted-color);
  display: block;
  margin-top: 3px;
}

.cart-item__name {
  color: var(--text-color);
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.cart-item__stock {
  color: #dc2626;
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.cart-item__remove {
  background: #fff1f2;
  border: 0;
  border-radius: 8px;
  color: #e11d48;
  flex: 0 0 auto;
  height: 36px;
  padding: 0 11px;
}

.cart-item__remove span {
  display: none;
}

.cart-item__actions {
  align-items: flex-end;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item__bottom {
  align-items: flex-end;
  margin-top: auto;
}

.cart-item__price small,
.cart-item__price strong {
  display: block;
}

.cart-item__price small {
  color: var(--muted-color);
}

.cart-item__price strong,
.cart-item__voucher-price {
  color: var(--primary-color);
  font-size: 17px;
}

.cart-quantity {
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}

.cart-quantity button,
.cart-quantity input {
  background: #fff;
  border: 0;
  height: 36px;
  text-align: center;
}

.cart-quantity button {
  color: var(--text-color);
  flex: 0 0 34px;
  min-width: 34px;
  width: 34px;
}

.cart-quantity input {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  box-shadow: none;
  font-weight: 700;
  padding: 0;
  width: 42px;
  -moz-appearance: textfield;
}

.cart-quantity input::-webkit-outer-spin-button,
.cart-quantity input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.cart-item--voucher {
  align-items: center;
}

.cart-item__voucher-icon {
  align-items: center;
  background: var(--soft-color);
  border-radius: 10px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 74px;
  font-size: 28px;
  height: 74px;
  justify-content: center;
}

.cart-options {
  margin-top: 24px;
}

.cart-options__heading h2 {
  color: var(--text-color);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
}

.cart-options__heading p {
  color: var(--muted-color);
}

.cart-options .panel {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
}

.cart-options .panel-heading {
  background: #fff;
  border: 0;
  padding: 14px 16px;
}

.cart-options .panel-title a {
  color: var(--text-color);
  display: block;
  font-weight: 600;
}

.cart-options .panel-body {
  border-top-color: var(--border-color) !important;
}

.cart-options .btn-primary {
  background: var(--button-color);
  border-color: var(--button-color);
}

.cart-summary {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow-default);
  padding: 20px;
  position: sticky;
  top: 82px;
}

.cart-summary h2 {
  color: var(--text-color);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 18px;
}

.cart-summary__row {
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
}

.cart-summary__row span {
  color: var(--muted-color);
}

.cart-summary__row--grand {
  border-bottom: 0;
  padding: 17px 0;
}

.cart-summary__row--grand span,
.cart-summary__row--grand strong {
  color: var(--text-color);
  font-size: 17px;
}

.cart-summary__checkout {
  background: var(--button-color);
  border-radius: 9px;
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 16px;
  text-align: center;
}

.cart-summary__checkout:hover,
.cart-summary__checkout:focus {
  background: var(--primary-dark);
  color: #fff;
}

.cart-summary__continue {
  color: var(--muted-color);
  display: block;
  margin-top: 14px;
  text-align: center;
}

/* Checkout page */
#checkout-checkout {
  margin: 0 auto;
  max-width: 1080px;
  min-height: 70vh;
  padding: 24px 16px 64px;
  width: 100%;
}

#checkout-checkout > .row {
  margin: 0;
}

#checkout-checkout #content {
  float: none;
  padding: 0;
  width: 100%;
}

#checkout-checkout #content > h1 {
  color: var(--text-color);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
}

#checkout-checkout #content > h1:before {
  color: var(--primary-color);
  content: "Penyelesaian pesanan";
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

#checkout-checkout > .alert,
#checkout-checkout #content .alert {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(39, 49, 66, 0.06);
}

#checkout-checkout #accordion {
  counter-reset: none;
}

#checkout-checkout #accordion > .panel {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(39, 49, 66, 0.05);
  margin-bottom: 14px;
  overflow: hidden;
}

#checkout-checkout #accordion > .panel > .panel-heading {
  background: #fff;
  border: 0;
  padding: 0;
}

#checkout-checkout #accordion > .panel > .panel-heading .panel-title {
  align-items: center;
  color: var(--text-color);
  display: flex;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  min-height: 58px;
  padding: 12px 18px;
}

#checkout-checkout #accordion > .panel > .panel-heading .panel-title:before {
  align-items: center;
  background: var(--soft-color);
  border-radius: 50%;
  color: var(--primary-color);
  content: "\f00c";
  display: inline-flex;
  flex: 0 0 32px;
  font-family: FontAwesome;
  font-size: 12px;
  height: 32px;
  justify-content: center;
  margin-right: 12px;
}

#checkout-checkout #accordion > .panel > .panel-heading .panel-title > a {
  align-items: center;
  color: var(--text-color);
  display: flex;
  flex: 1;
}

#checkout-checkout #accordion > .panel > .panel-heading .panel-title > a .fa {
  color: var(--muted-color);
  margin-left: auto;
}

#checkout-checkout #accordion > .panel > .panel-collapse > .panel-body {
  border-top: 1px solid var(--border-color);
  padding: 20px;
}

#checkout-checkout .panel-body h2,
#checkout-checkout .panel-body legend {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 18px;
  padding: 0 0 10px;
}

#checkout-checkout .panel-body p,
#checkout-checkout .panel-body small {
  color: var(--muted-color);
}

#checkout-checkout .form-group {
  margin-bottom: 15px;
}

#checkout-checkout .control-label {
  color: var(--text-color);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

#checkout-checkout .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  height: 42px;
  padding: 9px 12px;
}

#checkout-checkout textarea.form-control {
  height: auto;
  min-height: 105px;
  resize: vertical;
}

#checkout-checkout .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--soft-color);
}

#checkout-checkout .has-error .form-control {
  border-color: #dc2626;
}

#checkout-checkout .text-danger {
  font-size: 12px;
  margin-top: 5px;
}

#checkout-checkout .radio,
#checkout-checkout .checkbox {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin: 8px 0;
  padding: 11px 12px 11px 34px;
}

#checkout-checkout .radio label,
#checkout-checkout .checkbox label {
  color: var(--text-color);
  display: block;
  min-height: 18px;
}

#checkout-checkout .radio input,
#checkout-checkout .checkbox input {
  accent-color: var(--primary-color);
}

#checkout-checkout .buttons {
  border-top: 1px solid var(--border-color);
  margin-top: 20px;
  padding-top: 16px;
}

#checkout-checkout .checkout-payment-actions .pull-right {
  align-items: center;
  display: flex;
  float: none !important;
  gap: 16px;
  justify-content: flex-end;
  width: 100%;
}

#checkout-checkout .checkout-agreement {
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  flex: 1;
  gap: 10px;
  margin: 0;
  max-width: 620px;
  padding: 12px 14px;
}

#checkout-checkout .checkout-agreement:hover {
  border-color: var(--primary-color);
}

#checkout-checkout .checkout-agreement input {
  accent-color: var(--primary-color);
  cursor: pointer;
  flex: 0 0 auto;
  height: 18px;
  margin: 1px 0 0;
  width: 18px;
}

#checkout-checkout .checkout-agreement span {
  line-height: 1.5;
}

#checkout-checkout .checkout-agreement a {
  font-weight: 700;
  text-decoration: underline;
}

#checkout-checkout .btn-primary,
#checkout-checkout input.btn-primary,
#checkout-checkout button.btn-primary {
  background: var(--button-color);
  border: 1px solid var(--button-color);
  border-radius: 8px;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  min-height: 42px;
  padding: 10px 18px;
  text-shadow: none;
}

#checkout-checkout .btn-primary:hover,
#checkout-checkout .btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

#checkout-checkout .btn-default {
  border-color: var(--border-color);
  border-radius: 8px;
  min-height: 42px;
}

#checkout-checkout .table-responsive {
  border: 0;
  margin-bottom: 18px;
}

#checkout-checkout .table {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 0;
  overflow: hidden;
}

#checkout-checkout .table > thead > tr > td {
  background: #f8fafc;
  border-color: var(--border-color);
  color: var(--muted-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#checkout-checkout .table > tbody > tr > td,
#checkout-checkout .table > tfoot > tr > td {
  border-color: var(--border-color);
  color: var(--text-color);
  vertical-align: middle;
}

#checkout-checkout .table > tfoot > tr:last-child > td {
  color: var(--primary-color);
  font-size: 16px;
}

#checkout-checkout #collapse-checkout-confirm .checkout-confirm__table {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  width: 100%;
}

#checkout-checkout #collapse-checkout-confirm .table {
  border: 0;
  border-radius: 0;
  table-layout: fixed;
  width: 100%;
}

#checkout-checkout #collapse-checkout-confirm .table td {
  overflow-wrap: anywhere;
}

#checkout-checkout #collapse-checkout-confirm .table td:first-child {
  width: 38%;
}

#checkout-checkout #collapse-checkout-confirm .checkout-confirm__name a {
  color: var(--text-color);
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

#checkout-checkout #collapse-checkout-confirm .checkout-confirm__product-info {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  min-width: 0;
}

#checkout-checkout #collapse-checkout-confirm .checkout-confirm__image {
  background: var(--soft-color);
  border: 1px solid var(--border-color);
  border-radius: 9px;
  flex: 0 0 58px;
  height: 58px;
  margin: 0;
  overflow: hidden;
}

#checkout-checkout #collapse-checkout-confirm .checkout-confirm__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#checkout-checkout #collapse-checkout-confirm .checkout-confirm__product-copy {
  min-width: 0;
}

#checkout-checkout #collapse-checkout-confirm .checkout-confirm__name small {
  display: block;
  line-height: 1.5;
}

#checkout-checkout #collapse-checkout-confirm .checkout-confirm__line-total {
  color: var(--primary-dark);
  font-weight: 700;
}

#checkout-checkout #collapse-checkout-confirm .checkout-confirm__payment .buttons {
  margin-bottom: 0;
}

#checkout-checkout .input-group-btn .btn {
  height: 42px;
}

#checkout-checkout #collapse-checkout-option .row {
  display: flex;
}

#checkout-checkout #collapse-checkout-option .col-sm-6 {
  padding: 4px 18px;
}

#checkout-checkout #collapse-checkout-option .col-sm-6 + .col-sm-6 {
  border-left: 1px solid var(--border-color);
}

#checkout-checkout .panel-body > .row > [class*="col-sm-"] {
  padding-left: 12px;
  padding-right: 12px;
}

#checkout-checkout .panel-body a {
  color: var(--primary-color);
}

.success-page {
  background:
    radial-gradient(circle at top, rgba(255, 107, 0, 0.12), transparent 340px),
    var(--soft-color);
  min-height: 68vh;
  padding: 48px 16px 72px;
}

.success-page__container {
  margin: 0 auto;
  max-width: 720px;
}

.success-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(39, 49, 66, 0.1);
  overflow: hidden;
  padding: 48px 54px;
  position: relative;
  text-align: center;
}

.success-card:before {
  background: var(--primary-color);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.success-card__icon {
  align-items: center;
  background: #eaf8ef;
  border: 8px solid #f4fbf6;
  border-radius: 50%;
  color: #269653;
  display: flex;
  font-size: 30px;
  height: 88px;
  justify-content: center;
  margin: 0 auto 22px;
  width: 88px;
}

.success-card__eyebrow {
  color: var(--primary-color);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.success-card h1 {
  color: var(--text-color);
  font-size: 30px;
  font-weight: 750;
  line-height: 1.25;
  margin: 0 0 18px;
}

.success-card__message {
  color: var(--muted-color);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 auto 28px;
  max-width: 540px;
}

.success-card__message p {
  margin: 0;
}

.success-card__message a {
  color: var(--primary-color);
  font-weight: 600;
}

.success-card__button {
  align-items: center;
  background: var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.success-card__button:hover,
.success-card__button:focus {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.catalog-page {
  background: var(--body);
  min-height: 70vh;
  padding: 24px 14px 58px;
}

.catalog-page__container {
  margin: 0 auto;
  max-width: var(--store-width);
}

.search-panel {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: var(--shadow-default);
  margin-bottom: 18px;
  padding: 24px;
}

.search-panel__heading {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.search-panel__heading h1 {
  color: var(--text-color);
  font-size: clamp(24px, 3vw, 32px);
  margin: 3px 0 0;
}

.search-panel__icon {
  align-items: center;
  background: var(--soft-color);
  border-radius: 14px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 46px;
  font-size: 18px;
  height: 46px;
  justify-content: center;
}

.search-panel__form {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.35fr) auto;
}

.search-panel__field {
  color: var(--muted-color);
  display: grid;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  margin: 0;
}

.search-panel__field input,
.search-panel__field select {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 11px;
  color: var(--text-color);
  font-size: 14px;
  height: 46px;
  padding: 0 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.search-panel__field input:focus,
.search-panel__field select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--soft-color);
  outline: 0;
}

.search-panel__submit {
  align-items: center;
  background: var(--primary-color);
  border: 0;
  border-radius: 11px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  height: 46px;
  justify-content: center;
  padding: 0 20px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-panel__submit:hover,
.search-panel__submit:focus {
  background: var(--primary-dark);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.search-panel__hint {
  color: var(--muted-color);
  font-size: 12px;
  margin: 11px 0 0;
}

@media (max-width: 767px) {
  .search-panel {
    border-radius: 14px;
    margin-bottom: 12px;
    padding: 10px;
  }

  .search-panel__form {
    align-items: end;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .search-panel__field {
    gap: 4px;
  }

  .search-panel__field--query {
    grid-column: 1;
    grid-row: 1;
  }

  .search-panel__field:not(.search-panel__field--query) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .search-panel__field input,
  .search-panel__field select {
    height: 42px;
  }

  .search-panel__submit {
    font-size: 0;
    grid-column: 2;
    grid-row: 1;
    height: 42px;
    padding: 0;
    width: 46px;
  }

  .search-panel__submit .fa {
    font-size: 15px;
  }

  .search-panel__hint {
    display: none;
  }
}

.catalog-hero {
  align-items: center;
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: var(--shadow-default);
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
  min-height: 150px;
  overflow: hidden;
  padding: 24px;
}

.catalog-hero__image {
  background: var(--soft-color);
  border-radius: 14px;
  flex: 0 0 120px;
  height: 120px;
  overflow: hidden;
}

.catalog-hero__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.catalog-hero__content {
  min-width: 0;
}

.catalog-hero__content h1 {
  color: var(--text-color);
  font-size: 30px;
  font-weight: 700;
  margin: 4px 0 9px;
}

.catalog-hero__description,
.catalog-hero__content > p {
  color: var(--muted-color);
  line-height: 1.65;
  margin: 0;
}

.catalog-hero__description p:last-child {
  margin-bottom: 0;
}

.catalog-hero--special {
  background: linear-gradient(135deg, var(--soft-color), #fff);
  border-color: rgba(255, 122, 0, 0.18);
}

.catalog-hero__promo-icon {
  align-items: center;
  background: var(--primary-color);
  border: 8px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 94px;
  font-size: 36px;
  height: 94px;
  justify-content: center;
}

.catalog-subcategories,
.catalog-products {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  margin-bottom: 18px;
  padding: 22px;
}

.catalog-subcategories h2 {
  color: var(--text-color);
  font-size: 17px;
  margin: 0 0 14px;
}

.catalog-subcategories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.catalog-subcategories__list a {
  background: var(--soft-color);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 13px;
}

.catalog-subcategories__list a:hover,
.catalog-subcategories__list a:focus {
  border-color: rgba(255, 122, 0, 0.28);
  color: var(--primary-dark);
}

.catalog-products__heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
}

.catalog-products__heading h2 {
  color: var(--text-color);
  font-size: 23px;
  margin: 3px 0 0;
}

.catalog-compare {
  color: var(--muted-color);
  font-size: 13px;
}

.catalog-compare:hover,
.catalog-compare:focus {
  color: var(--primary-color);
}

.search-sort {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--primary-color);
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0 8px;
}

.search-sort select {
  background: transparent;
  border: 0;
  color: var(--text-color);
  cursor: pointer;
  font-size: 12px;
  height: 38px;
  max-width: 180px;
  outline: 0;
}

.catalog-toolbar {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-bottom: 20px;
  padding: 11px 12px;
}

.catalog-toolbar label {
  align-items: center;
  display: flex;
  gap: 8px;
  margin: 0;
}

.catalog-toolbar label > span {
  color: var(--muted-color);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.catalog-toolbar select {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-color);
  height: 38px;
  max-width: 220px;
  padding: 0 30px 0 10px;
}

.catalog-toolbar select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--soft-color);
  outline: 0;
}

.catalog-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-pagination {
  align-items: center;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
}

.catalog-pagination .pagination {
  margin: 0;
}

.catalog-pagination .pagination > li > a,
.catalog-pagination .pagination > li > span {
  border-color: var(--border-color);
  color: var(--text-color);
}

.catalog-pagination .pagination > .active > span,
.catalog-pagination .pagination > .active > span:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.catalog-pagination p {
  color: var(--muted-color);
  font-size: 12px;
  margin: 0;
}

.catalog-empty {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 54px 24px;
  text-align: center;
}

.catalog-empty > .fa {
  color: var(--primary-color);
  font-size: 48px;
  margin-bottom: 16px;
}

.catalog-empty h1 {
  color: var(--text-color);
  font-size: 25px;
  margin: 0 0 10px;
}

.catalog-empty p {
  color: var(--muted-color);
  margin-bottom: 22px;
}

.catalog-empty a {
  background: var(--primary-color);
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 11px 20px;
}

.auth-page {
  align-items: center;
  background:
    radial-gradient(circle at top, rgba(255, 122, 0, 0.14), transparent 360px),
    var(--body);
  display: flex;
  min-height: 68vh;
  padding: 44px 16px 64px;
}

.auth-page__container {
  margin: 0 auto;
  max-width: 460px;
  width: 100%;
}

.auth-card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(39, 49, 66, 0.11);
  overflow: hidden;
  padding: 38px 40px 32px;
  position: relative;
}

.auth-card:before {
  background: var(--primary-color);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.auth-card__icon {
  align-items: center;
  background: var(--soft-color);
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  font-size: 25px;
  height: 64px;
  justify-content: center;
  margin-bottom: 18px;
  width: 64px;
}

.auth-card__eyebrow {
  color: var(--primary-color);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.auth-card h1 {
  color: var(--text-color);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
}

.auth-card__intro {
  color: var(--muted-color);
  line-height: 1.6;
  margin: 0 0 24px;
}

.auth-alert {
  align-items: flex-start;
  border-radius: 10px;
  display: flex;
  gap: 9px;
  line-height: 1.45;
  margin-bottom: 18px;
  padding: 11px 13px;
}

.auth-alert--success {
  background: #eaf8ef;
  color: #237a43;
}

.auth-alert--danger {
  background: #fff0f0;
  color: #b33a3a;
}

.auth-alert .fa {
  margin-top: 2px;
}

.auth-form__group {
  margin-bottom: 18px;
}

.auth-form__group > label,
.auth-form__label-row label {
  color: var(--text-color);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 7px;
}

.auth-form__label-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.auth-form__label-row a {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 7px;
}

.auth-form__control {
  align-items: center;
  display: flex;
  position: relative;
}

.auth-form__control > .fa {
  color: #9aa1ac;
  font-size: 16px;
  left: 14px;
  pointer-events: none;
  position: absolute;
}

.auth-form__control input {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 11px;
  color: var(--text-color);
  height: 48px;
  padding: 0 14px 0 42px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.auth-form__control input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--soft-color);
  outline: 0;
}

.auth-form__submit {
  align-items: center;
  background: var(--primary-color);
  border: 0;
  border-radius: 11px;
  box-shadow: 0 10px 23px rgba(255, 122, 0, 0.22);
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  margin-top: 6px;
  padding: 0 18px;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.auth-form__submit .fa {
  margin-left: 9px;
}

.auth-form__submit:hover,
.auth-form__submit:focus {
  background: var(--primary-dark);
  outline: 0;
  transform: translateY(-1px);
}

.auth-card__register {
  border-top: 1px solid var(--border-color);
  color: var(--muted-color);
  margin-top: 25px;
  padding-top: 20px;
  text-align: center;
}

.auth-card__register a {
  color: var(--primary-dark);
  font-weight: 700;
  margin-left: 4px;
}

.auth-card__register a:hover,
.auth-form__label-row a:hover {
  color: var(--primary-color);
}

.auth-page--register .auth-page__container {
  max-width: 520px;
}

.auth-form__error {
  color: #b33a3a;
  font-size: 12px;
  margin-top: 6px;
}

.auth-form__select,
.auth-form__textarea,
.auth-form__plain-input {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 11px;
  color: var(--text-color);
  padding: 11px 13px;
  width: 100%;
}

.auth-form__select,
.auth-form__plain-input {
  height: 48px;
}

.auth-form__select:focus,
.auth-form__textarea:focus,
.auth-form__plain-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--soft-color);
  outline: 0;
}

.auth-form__choices {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 11px;
  display: grid;
  gap: 8px;
  padding: 12px 14px;
}

.auth-form__choices label {
  color: var(--text-color);
  font-weight: 400;
  margin: 0;
}

.auth-form__upload {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-color);
  min-height: 44px;
  padding: 9px 14px;
}

.auth-form__agreement {
  align-items: flex-start;
  color: var(--muted-color);
  display: flex;
  font-weight: 400;
  gap: 9px;
  line-height: 1.5;
  margin: 4px 0 18px;
}

.auth-form__agreement input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.auth-form__agreement a {
  color: var(--primary-dark);
  font-weight: 700;
}

.customer-page {
  background: var(--body);
  min-height: 70vh;
  padding: 24px 14px 58px;
}

.customer-page__container {
  margin: 0 auto;
  max-width: var(--store-width);
}

.customer-nav {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  padding: 6px;
}

.customer-nav a {
  align-items: center;
  border-radius: 10px;
  color: var(--muted-color);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
  padding: 10px 14px;
}

.customer-nav a:hover,
.customer-nav a:focus {
  background: var(--soft-color);
  color: var(--primary-dark);
}

.customer-nav a.is-active {
  background: var(--primary-color);
  color: #fff;
}

.customer-nav a:last-child {
  margin-left: auto;
}

.customer-alert {
  align-items: center;
  background: #eaf8ef;
  border-radius: 11px;
  color: #237a43;
  display: flex;
  gap: 9px;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.customer-page__heading {
  align-items: flex-end;
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 20px 22px;
}

.customer-page__heading h1 {
  color: var(--text-color);
  font-size: 26px;
  margin: 3px 0 0;
}

.customer-page__count {
  background: var(--soft-color);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 11px;
}

.return-page__container {
  max-width: 960px;
}

.return-page__heading {
  align-items: center;
}

.return-page__heading p {
  color: var(--muted-color);
  margin: 7px 0 0;
}

.return-page__heading-icon {
  align-items: center;
  background: var(--soft-color);
  border-radius: 16px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 52px;
  font-size: 20px;
  height: 52px;
  justify-content: center;
}

.return-alert {
  align-items: flex-start;
  background: #fff0f0;
  border: 1px solid #f2caca;
  border-radius: 12px;
  color: #a53b3b;
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  padding: 13px 15px;
}

.return-form {
  display: grid;
  gap: 16px;
}

.return-card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px;
}

.return-card__heading {
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.return-card__heading > span {
  align-items: center;
  background: var(--soft-color);
  border-radius: 12px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
}

.return-card__heading small {
  color: var(--muted-color);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.return-card__heading h2 {
  color: var(--text-color);
  font-size: 18px;
  margin: 2px 0 0;
}

.return-form__grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.return-field {
  color: var(--text-color);
  display: grid;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
  margin: 0;
  min-width: 0;
}

.return-field > span:first-child b,
.return-choice legend b {
  color: #c34242;
}

.return-field input,
.return-field textarea {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: none;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  outline: 0;
  padding: 10px 13px;
  width: 100%;
}

.return-field input {
  height: 45px;
}

.return-field textarea {
  line-height: 1.55;
  min-height: 130px;
  resize: vertical;
}

.return-field input:focus,
.return-field textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--soft-color);
}

.return-field__date {
  display: flex;
}

.return-field__date input {
  border-radius: 10px 0 0 10px;
}

.return-field__date button {
  background: var(--soft-color);
  border: 1px solid var(--border-color);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  color: var(--primary-dark);
  flex: 0 0 46px;
}

.return-field__error {
  color: #b83232;
  font-size: 12px;
  font-weight: 500;
}

.return-field--quantity {
  max-width: 180px;
}

.return-field--full {
  margin-top: 18px;
}

.return-choice {
  border: 0;
  margin: 20px 0 0;
  min-width: 0;
  padding: 0;
}

.return-choice legend {
  border: 0;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 9px;
  padding: 0;
}

.return-choice__grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.return-choice__grid label {
  cursor: pointer;
  margin: 0;
  min-width: 0;
}

.return-choice__grid input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.return-choice__grid span {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-color);
  display: flex;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
}

.return-choice__grid input:checked + span {
  background: var(--soft-color);
  border-color: var(--primary-color);
  color: var(--primary-dark);
  font-weight: 700;
}

.return-choice__grid input:checked + span .fa:before {
  content: "\f058";
}

.return-choice--opened .return-choice__grid {
  grid-template-columns: repeat(2, minmax(100px, 160px));
}

.return-agreement {
  align-items: flex-start;
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--muted-color);
  cursor: pointer;
  display: flex;
  gap: 10px;
  line-height: 1.5;
  margin: 0;
  padding: 14px 16px;
}

.return-agreement input {
  accent-color: var(--primary-color);
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.return-agreement a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

.return-form__actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.return-form__back,
.return-form__submit {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
}

.return-form__back {
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--muted-color);
}

.return-form__submit {
  background: var(--primary-color);
  border: 0;
  color: #fff;
}

.return-form__submit:hover,
.return-form__submit:focus {
  background: var(--primary-dark);
}

.return-history__heading {
  align-items: center;
}

.return-history__heading p {
  color: var(--muted-color);
  margin: 6px 0 0;
}

.return-history__heading-icon {
  align-items: center;
  background: var(--soft-color);
  border-radius: 14px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 52px;
  font-size: 22px;
  height: 52px;
  justify-content: center;
}

.return-history-list {
  display: grid;
  gap: 14px;
}

.return-history-card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
}

.return-history-card__header {
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  padding: 14px 17px;
}

.return-history-card__header small,
.return-history-card__header strong {
  display: block;
}

.return-history-card__header small,
.return-history-card__details small {
  color: var(--muted-color);
  font-size: 11px;
  margin-bottom: 3px;
}

.return-history-card__header strong {
  color: var(--text-color);
  font-size: 16px;
}

.return-history-card__status {
  background: var(--soft-color);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
}

.return-history-card__details {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 16px 17px;
}

.return-history-card__details > div {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.return-history-card__details > div > .fa {
  align-items: center;
  background: #f8fafc;
  border-radius: 9px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
}

.return-history-card__details span {
  min-width: 0;
}

.return-history-card__details small,
.return-history-card__details strong {
  display: block;
}

.return-history-card__details strong {
  color: var(--text-color);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.return-history-card__view {
  align-items: center;
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  color: var(--primary-dark);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  justify-content: flex-end;
  padding: 11px 17px;
}

.return-history-card__view:hover,
.return-history-card__view:focus {
  background: var(--soft-color);
  color: var(--primary-color);
}

.return-history__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

.return-history__actions a {
  align-items: center;
  background: var(--primary-color);
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  min-height: 44px;
  padding: 10px 17px;
}

.return-history__actions .return-history__back {
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.return-history__actions .return-history__back:hover,
.return-history__actions .return-history__back:focus {
  background: var(--soft-color);
  border-color: var(--primary-color);
  color: var(--primary-dark);
}

.return-history__actions a:hover,
.return-history__actions a:focus {
  background: var(--primary-dark);
  color: #fff;
}

.wishlist-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wishlist-card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  display: flex;
  min-width: 0;
  overflow: hidden;
}

.wishlist-card[data-product-card] {
  cursor: pointer;
}

.wishlist-card[data-product-card]:focus {
  border-color: rgba(255, 122, 0, 0.4);
  box-shadow: 0 0 0 3px var(--soft-color);
  outline: 0;
}

.wishlist-card__image {
  background: #f5f5f5;
  flex: 0 0 150px;
}

.wishlist-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.wishlist-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 16px;
}

.wishlist-card__top {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.wishlist-card__name {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.wishlist-card__remove {
  align-items: center;
  background: #fff0f0;
  border-radius: 50%;
  color: #bf4545;
  display: flex;
  flex: 0 0 30px;
  height: 30px;
  justify-content: center;
}

.wishlist-card__body small {
  color: var(--muted-color);
  margin-top: 5px;
}

.wishlist-card__stock {
  color: #2a8c51;
  font-size: 12px;
  margin-top: 8px;
}

.wishlist-card__price {
  margin: 12px 0;
}

.wishlist-card__price del {
  color: #9aa1ac;
  display: block;
  font-size: 11px;
}

.wishlist-card__price strong {
  color: var(--primary-color);
  font-size: 17px;
}

.wishlist-card__order {
  background: var(--primary-color);
  border: 0;
  border-radius: 9px;
  color: #fff;
  font-weight: 700;
  margin-top: auto;
  min-height: 40px;
  padding: 8px 14px;
}

.wishlist-card__order:hover,
.wishlist-card__order:focus {
  background: var(--primary-dark);
  outline: 0;
}

.order-list {
  display: grid;
  gap: 14px;
}

.order-card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
}

.order-card__header,
.order-card__footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 15px 18px;
}

.order-card__header {
  border-bottom: 1px solid var(--border-color);
}

.order-card__header small,
.order-card__details small {
  color: var(--muted-color);
  display: block;
  font-size: 11px;
  margin-bottom: 3px;
}

.order-card__header strong {
  color: var(--text-color);
  font-size: 17px;
}

.order-card__status {
  background: var(--soft-color);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 11px;
}

.order-card__details {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding: 17px 18px;
}

.order-card__details strong {
  color: var(--text-color);
}

.order-card__total {
  color: var(--primary-color) !important;
  font-size: 16px;
}

.order-card__footer {
  background: #f8fafc;
  color: var(--muted-color);
  font-size: 13px;
}

.order-card__footer a {
  color: var(--primary-dark);
  font-weight: 700;
}

.customer-pagination {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.customer-pagination .pagination {
  margin: 0;
}

.customer-pagination p {
  color: var(--muted-color);
  font-size: 12px;
  margin: 0;
}

.customer-empty {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 52px 20px;
  text-align: center;
}

.customer-empty > .fa {
  color: var(--primary-color);
  font-size: 46px;
  margin-bottom: 14px;
}

.customer-empty h2 {
  color: var(--text-color);
  font-size: 22px;
  margin: 0 0 8px;
}

.customer-empty p {
  color: var(--muted-color);
  margin-bottom: 20px;
}

.customer-empty a {
  background: var(--primary-color);
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 10px 18px;
}

.account-dashboard__hero {
  align-items: center;
  background: linear-gradient(135deg, var(--soft-color), #fff);
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 18px;
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  padding: 24px;
}

.account-dashboard__avatar {
  align-items: center;
  background: var(--primary-color);
  border: 7px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 78px;
  font-size: 30px;
  height: 78px;
  justify-content: center;
}

.account-dashboard__hero h1 {
  color: var(--text-color);
  font-size: 27px;
  margin: 3px 0 6px;
}

.account-dashboard__hero p {
  color: var(--muted-color);
  margin: 0;
}

.account-shortcuts {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.account-shortcut {
  align-items: center;
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  color: var(--text-color);
  display: flex;
  gap: 14px;
  padding: 17px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.account-shortcut:hover,
.account-shortcut:focus {
  border-color: rgba(255, 122, 0, 0.32);
  box-shadow: var(--shadow-default);
  color: var(--text-color);
  transform: translateY(-1px);
}

.account-shortcut > .fa:first-child {
  align-items: center;
  background: var(--soft-color);
  border-radius: 12px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 48px;
  font-size: 21px;
  height: 48px;
  justify-content: center;
}

.account-shortcut > span {
  display: block;
  flex: 1;
  min-width: 0;
}

.account-shortcut strong,
.account-shortcut small {
  display: block;
}

.account-shortcut strong {
  font-size: 15px;
  margin-bottom: 3px;
}

.account-shortcut small {
  color: var(--muted-color);
  line-height: 1.4;
}

.account-shortcut > .fa:last-child {
  color: #aab1bb;
  font-size: 11px;
}

.account-shortcut--primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.account-shortcut--primary:hover,
.account-shortcut--primary:focus {
  background: var(--primary-dark);
  color: #fff;
}

.account-shortcut--primary > .fa:first-child {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.account-shortcut--primary small,
.account-shortcut--primary > .fa:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.account-dashboard__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-menu-card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
}

.account-menu-card--wide {
  grid-column: 1 / -1;
}

.account-menu-card__heading {
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
  padding: 15px 17px;
}

.account-menu-card__heading > .fa {
  color: var(--primary-color);
  font-size: 18px;
}

.account-menu-card__heading h2 {
  color: var(--text-color);
  font-size: 16px;
  margin: 0;
}

.account-menu-card__links a {
  align-items: center;
  border-bottom: 1px solid #f1f3f6;
  color: var(--text-color);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 13px 17px;
}

.account-menu-card__links a:last-child {
  border-bottom: 0;
}

.account-menu-card__links a:hover {
  background: var(--soft-color);
  color: var(--primary-dark);
}

.account-menu-card__links a .fa {
  color: #adb4be;
  font-size: 10px;
}

.account-menu-card__links--columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-menu-card__links--columns a:nth-child(odd) {
  border-right: 1px solid #f1f3f6;
}

.account-settings__container {
  max-width: 960px;
}

.account-settings-page .breadcrumb {
  background: transparent;
  font-size: 12px;
  margin: 0 0 14px;
  padding: 0;
}

.account-settings-page .breadcrumb > li + li:before {
  color: #b4bac3;
}

.account-settings-page .breadcrumb a {
  color: var(--muted-color);
}

.account-settings-page .breadcrumb a:hover {
  color: var(--primary-dark);
}

.account-settings-page .row {
  margin-left: 0;
  margin-right: 0;
}

.account-settings-page #content {
  padding-left: 0;
  padding-right: 0;
}

.account-settings__heading {
  align-items: center;
  background: linear-gradient(135deg, var(--soft-color), #fff);
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 18px;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding: 22px 24px;
}

.account-settings__heading-icon {
  align-items: center;
  background: var(--primary-color);
  border-radius: 14px;
  color: #fff;
  display: flex;
  flex: 0 0 54px;
  font-size: 23px;
  height: 54px;
  justify-content: center;
}

.account-settings__heading h1 {
  color: var(--text-color);
  font-size: 25px;
  margin: 3px 0 5px;
}

.account-settings__heading p {
  color: var(--muted-color);
  font-size: 13px;
  margin: 0;
}

.account-settings__alert {
  align-items: center;
  border-radius: 11px;
  display: flex;
  gap: 9px;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.account-settings__alert--danger,
.account-settings-page .alert-danger,
.account-settings-page .alert-warning {
  background: #fff2f1;
  border: 1px solid #ffd4cf;
  color: #b84235;
}

.account-settings-page .alert {
  border-radius: 11px;
  margin-bottom: 16px;
}

.account-settings__card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin: 0;
  padding: 22px;
}

.account-settings__card legend,
.account-settings__card-heading {
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 9px;
  margin: -2px 0 20px;
  padding: 0 0 14px;
}

.account-settings__card legend .fa,
.account-settings__card-heading .fa {
  color: var(--primary-color);
}

.account-settings__form .form-group {
  align-items: center;
  display: flex;
  margin: 0 -10px 17px;
}

.account-settings__form .form-group:last-child {
  margin-bottom: 0;
}

.account-settings__form .control-label {
  color: var(--text-color);
  font-size: 13px;
  font-weight: 700;
  padding-top: 0;
  text-align: left;
}

.account-settings__form .required .control-label:before {
  color: #e05a4f;
  content: "*";
  margin-right: 4px;
}

.account-settings__form .form-control {
  background: #fff;
  border: 1px solid #dce1e7;
  border-radius: 10px;
  box-shadow: none;
  color: var(--text-color);
  min-height: 44px;
  padding: 9px 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-settings__form textarea.form-control {
  min-height: 110px;
}

.account-settings__form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.account-settings__form .text-danger {
  font-size: 12px;
  margin-top: 6px;
}

.account-settings__form .radio,
.account-settings__form .checkbox,
.account-settings__form .radio-inline {
  color: var(--muted-color);
}

.account-settings__form .input-group .form-control {
  border-radius: 10px 0 0 10px;
}

.account-settings__form .input-group-btn .btn {
  border-color: #dce1e7;
  min-height: 44px;
}

.account-settings__actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.account-settings__button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
}

.account-settings__button--primary {
  background: var(--primary-color);
  color: #fff;
}

.account-settings__button--primary:hover,
.account-settings__button--primary:focus {
  background: var(--primary-dark);
  color: #fff;
}

.account-settings__button--secondary {
  background: #fff;
  border-color: var(--border-color);
  color: var(--text-color);
}

.account-settings__button--secondary:hover,
.account-settings__button--secondary:focus {
  border-color: var(--primary-color);
  color: var(--primary-dark);
}

.address-book-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.address-book-card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 18px;
}

.address-book-card__icon {
  align-items: center;
  background: var(--soft-color);
  border-radius: 11px;
  color: var(--primary-color);
  display: flex;
  font-size: 19px;
  height: 44px;
  justify-content: center;
}

.address-book-card address {
  color: var(--text-color);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
  margin: 0;
}

.address-book-card__actions {
  border-top: 1px solid #f0f2f5;
  display: flex;
  gap: 8px;
  grid-column: 1 / -1;
  padding-top: 13px;
}

.address-book-card__actions a {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  padding: 8px 11px;
}

.address-book-card__edit {
  background: var(--soft-color);
  color: var(--primary-dark);
}

.address-book-card__delete {
  background: #fff2f1;
  color: #c4473a;
}

.address-book-card__edit:hover {
  background: var(--primary-color);
  color: #fff;
}

.address-book-card__delete:hover {
  background: #c4473a;
  color: #fff;
}

.tracking-intro {
  align-items: flex-start;
  background: #fff8ef;
  border: 1px solid #ffe0ba;
  border-radius: 13px;
  color: #8a5a20;
  display: flex;
  gap: 11px;
  margin-bottom: 16px;
  padding: 14px 16px;
}

.tracking-intro > .fa {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 2px;
}

.tracking-intro p {
  line-height: 1.6;
  margin: 0;
}

.tracking-form {
  display: grid;
  gap: 16px;
}

.tracking-card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 21px 22px;
}

.tracking-card__heading {
  align-items: flex-start;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 15px;
}

.tracking-card__heading > .fa {
  align-items: center;
  background: var(--soft-color);
  border-radius: 10px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 40px;
  font-size: 17px;
  height: 40px;
  justify-content: center;
}

.tracking-card__heading h2 {
  color: var(--text-color);
  font-size: 16px;
  margin: 0 0 4px;
}

.tracking-card__heading p {
  color: var(--muted-color);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.tracking-form__group {
  margin-bottom: 18px;
}

.tracking-form__group:last-child {
  margin-bottom: 0;
}

.tracking-form__group > label {
  color: var(--text-color);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tracking-form__control {
  position: relative;
}

.tracking-form__control > .fa {
  color: #a7afb9;
  left: 14px;
  position: absolute;
  top: 15px;
  z-index: 2;
}

.tracking-form__control .form-control {
  padding-left: 40px;
}

.tracking-form .form-control {
  background: #fff;
  border: 1px solid #dce1e7;
  border-radius: 10px;
  box-shadow: none;
  color: var(--text-color);
  min-height: 45px;
  padding: 10px 13px;
}

.tracking-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.tracking-form textarea.form-control {
  line-height: 1.55;
  resize: vertical;
}

.tracking-form textarea[readonly] {
  background: #f8fafc;
}

.tracking-copy-field {
  align-items: stretch;
  display: flex;
  gap: 9px;
}

.tracking-copy-field .form-control {
  flex: 1;
  min-width: 0;
}

.tracking-copy-button {
  align-items: center;
  background: var(--soft-color);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 10px;
  color: var(--primary-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  justify-content: center;
  min-width: 110px;
  padding: 10px 14px;
}

.tracking-copy-button:hover,
.tracking-copy-button:focus {
  background: var(--primary-color);
  color: #fff;
}

.account-settings__actions--end {
  justify-content: flex-end;
}

.password-form {
  margin: 0 auto;
  max-width: 760px;
}

.password-form__control {
  position: relative;
}

.password-form__control > .fa {
  color: #9aa1ac;
  left: 14px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.password-form__control .form-control {
  padding-left: 40px;
}

.information-page {
  background: var(--body);
  min-height: 70vh;
  padding: 24px 14px 58px;
}

.information-page__container {
  margin: 0 auto;
  max-width: var(--store-width);
}

.information-page .breadcrumb {
  background: transparent;
  font-size: 12px;
  margin: 0 0 14px;
  padding: 0;
}

.information-page .breadcrumb > li + li:before {
  color: #b4bac3;
}

.information-page .row {
  margin-left: -7px;
  margin-right: -7px;
}

.information-page .row > [class*="col-"] {
  padding-left: 7px;
  padding-right: 7px;
}

.information-card {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: var(--shadow-default);
  margin: 0 auto;
  max-width: 900px;
  overflow: hidden;
}

.information-card__heading {
  align-items: center;
  background: linear-gradient(135deg, var(--soft-color), #fff);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 15px;
  padding: 24px 28px;
}

.information-card__icon,
.contact-hero__icon {
  align-items: center;
  background: var(--primary-color);
  border-radius: 14px;
  color: #fff;
  display: flex;
  flex: 0 0 52px;
  font-size: 22px;
  height: 52px;
  justify-content: center;
}

.information-card__heading h1,
.contact-hero h1 {
  color: var(--text-color);
  font-size: 27px;
  margin: 3px 0 0;
}

.information-card__content {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.8;
  padding: 28px;
}

.information-card__content h2,
.information-card__content h3,
.information-card__content h4 {
  color: var(--text-color);
  line-height: 1.35;
  margin: 24px 0 10px;
}

.information-card__content h2 {
  font-size: 21px;
}

.information-card__content h3 {
  font-size: 18px;
}

.information-card__content img {
  height: auto;
  max-width: 100%;
}

.information-card__content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.information-card__content a {
  color: var(--primary-dark);
}

.contact-hero {
  align-items: center;
  background: linear-gradient(135deg, var(--soft-color), #fff);
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 18px;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding: 22px 24px;
}

.contact-hero p {
  color: var(--muted-color);
  margin: 5px 0 0;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-store-image {
  background: #f5f6f8;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
}

.contact-store-image img {
  display: block;
  height: auto;
  max-height: 230px;
  object-fit: cover;
  width: 100%;
}

.contact-detail-card {
  align-items: flex-start;
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  display: flex;
  gap: 13px;
  padding: 16px;
}

.contact-detail-card > .fa {
  align-items: center;
  background: var(--soft-color);
  border-radius: 10px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 40px;
  font-size: 17px;
  height: 40px;
  justify-content: center;
}

.contact-detail-card > div {
  min-width: 0;
}

.contact-detail-card small {
  color: var(--muted-color);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.contact-detail-card strong {
  color: var(--text-color);
  display: block;
  margin-bottom: 4px;
}

.contact-detail-card address,
.contact-detail-card p {
  color: var(--muted-color);
  line-height: 1.55;
  margin: 0 0 5px;
}

.contact-detail-card a {
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-detail-card__note {
  border-top: 1px solid var(--border-color);
  margin-top: 9px !important;
  padding-top: 9px;
}

.contact-form {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-default);
  padding: 22px;
}

.contact-form__heading {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 18px;
  padding-bottom: 15px;
}

.contact-form__heading h2,
.contact-locations__heading h2 {
  color: var(--text-color);
  font-size: 21px;
  margin: 3px 0 0;
}

.contact-form__group {
  margin-bottom: 15px;
}

.contact-form__group > label {
  color: var(--text-color);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form__group.required > label:after {
  color: #d64545;
  content: " *";
}

.contact-form__control {
  align-items: center;
  display: flex;
  position: relative;
}

.contact-form__control .fa {
  color: #9aa1ac;
  left: 14px;
  pointer-events: none;
  position: absolute;
}

.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-color);
  width: 100%;
}

.contact-form input {
  height: 46px;
  padding: 0 13px 0 40px;
}

.contact-form textarea {
  line-height: 1.55;
  min-height: 135px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--soft-color);
  outline: 0;
}

.contact-form__error {
  color: #b33a3a;
  font-size: 12px;
  margin-top: 5px;
}

.contact-form__submit {
  align-items: center;
  background: var(--primary-color);
  border: 0;
  border-radius: 10px;
  color: #fff;
  display: flex;
  font-weight: 700;
  gap: 9px;
  height: 46px;
  justify-content: center;
  margin-top: 5px;
  width: 100%;
}

.contact-form__submit:hover,
.contact-form__submit:focus {
  background: var(--primary-dark);
  outline: 0;
}

.contact-locations {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-top: 16px;
  padding: 22px;
}

.contact-locations__heading {
  margin-bottom: 16px;
}

.contact-locations__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-location-card {
  border: 1px solid var(--border-color);
  border-radius: 13px;
  overflow: hidden;
}

.contact-location-card > img {
  height: 150px;
  object-fit: cover;
  width: 100%;
}

.contact-location-card__body {
  padding: 15px;
}

.contact-location-card h3 {
  color: var(--text-color);
  font-size: 16px;
  margin: 0 0 8px;
}

.contact-location-card address,
.contact-location-card p {
  color: var(--muted-color);
  line-height: 1.5;
  margin: 0 0 7px;
}

.contact-location-card .fa {
  color: var(--primary-color);
  margin-right: 5px;
}

.contact-location-card a {
  color: var(--primary-dark);
  font-weight: 700;
}

.affiliate-tracking-page .dropdown-menu {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: var(--shadow-default);
  margin-top: 4px;
  overflow: hidden;
  padding: 5px;
}

.affiliate-tracking-page .dropdown-menu > li > a {
  border-radius: 7px;
  color: var(--text-color);
  font-size: 13px;
  padding: 9px 11px;
}

.affiliate-tracking-page .dropdown-menu > li > a:hover,
.affiliate-tracking-page .dropdown-menu > li.active > a {
  background: var(--soft-color);
  color: var(--primary-dark);
}

.transaction-balance {
  align-items: center;
  background: var(--primary-color);
  border-radius: 16px;
  color: #fff;
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding: 19px 21px;
}

.transaction-balance__icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: flex;
  flex: 0 0 48px;
  font-size: 21px;
  height: 48px;
  justify-content: center;
}

.transaction-balance span,
.transaction-balance strong {
  display: block;
}

.transaction-balance span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  margin-bottom: 3px;
}

.transaction-balance strong {
  font-size: 24px;
  line-height: 1.2;
}

.transaction-list {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.transaction-list__header,
.transaction-item {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 150px minmax(0, 1fr) 150px;
}

.transaction-list__header {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  color: var(--muted-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 18px;
  text-transform: uppercase;
}

.transaction-list__header span:last-child {
  text-align: right;
}

.transaction-item {
  border-bottom: 1px solid #f0f2f5;
  padding: 16px 18px;
}

.transaction-item:last-child {
  border-bottom: 0;
}

.transaction-item__date {
  align-items: center;
  color: var(--muted-color);
  display: flex;
  font-size: 12px;
  gap: 7px;
}

.transaction-item__date .fa {
  color: var(--primary-color);
}

.transaction-item__description {
  color: var(--text-color);
  font-size: 13px;
  line-height: 1.5;
}

.transaction-item__amount {
  color: var(--primary-dark);
  font-size: 14px;
  text-align: right;
}

.order-detail__hero {
  align-items: center;
  background: linear-gradient(135deg, var(--soft-color), #fff);
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 22px 24px;
}

.order-detail__hero h1 {
  color: var(--text-color);
  font-size: 26px;
  margin: 3px 0 6px;
}

.order-detail__hero p {
  color: var(--muted-color);
  margin: 0;
}

.order-detail__hero > a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-color);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
  padding: 10px 13px;
}

.order-detail__hero > a:hover {
  border-color: var(--primary-color);
  color: var(--primary-dark);
}

.order-detail__summary {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.order-detail__summary > div {
  align-items: center;
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  display: flex;
  gap: 12px;
  min-width: 0;
  padding: 15px;
}

.order-detail__summary > div > .fa {
  align-items: center;
  background: var(--soft-color);
  border-radius: 10px;
  color: var(--primary-color);
  display: flex;
  flex: 0 0 42px;
  font-size: 18px;
  height: 42px;
  justify-content: center;
}

.order-detail__summary span {
  min-width: 0;
}

.order-detail__summary small,
.order-detail__summary strong {
  display: block;
}

.order-detail__summary small {
  color: var(--muted-color);
  font-size: 11px;
  margin-bottom: 3px;
}

.order-detail__summary strong {
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-detail__section {
  background: var(--content);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  margin-bottom: 16px;
  overflow: hidden;
}

.order-detail__section-heading {
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 9px;
  padding: 15px 18px;
}

.order-detail__section-heading .fa {
  color: var(--primary-color);
  font-size: 17px;
}

.order-detail__section-heading h2 {
  color: var(--text-color);
  font-size: 17px;
  margin: 0;
}

.order-detail__address,
.order-detail__comment {
  color: var(--muted-color);
  line-height: 1.7;
  padding: 17px 18px;
}

.order-product {
  align-items: center;
  border-bottom: 1px solid #f1f3f6;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 70px 120px 78px;
  padding: 15px 18px;
}

.order-product:last-child {
  border-bottom: 0;
}

.order-product__info strong,
.order-product__info small {
  display: block;
}

.order-product__info strong {
  color: var(--text-color);
  margin-bottom: 4px;
}

.order-product__info small,
.order-product__quantity small,
.order-product__price small {
  color: var(--muted-color);
  font-size: 11px;
}

.order-product__quantity strong,
.order-product__price span,
.order-product__price strong {
  display: block;
}

.order-product__price strong {
  color: var(--primary-color);
  margin-top: 3px;
}

.order-product__actions {
  display: flex;
  gap: 7px;
  justify-content: flex-end;
}

.order-product__actions a {
  align-items: center;
  background: var(--soft-color);
  border-radius: 8px;
  color: var(--primary-dark);
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.order-detail__totals {
  border-top: 1px solid var(--border-color);
  margin-left: auto;
  max-width: 380px;
  padding: 13px 18px 17px;
}

.order-detail__totals > div {
  align-items: center;
  color: var(--muted-color);
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.order-detail__totals strong {
  color: var(--text-color);
}

.order-detail__totals .is-grand-total {
  border-top: 1px dashed var(--border-color);
  color: var(--text-color);
  font-size: 16px;
  margin-top: 5px;
  padding-top: 12px;
}

.order-detail__totals .is-grand-total strong {
  color: var(--primary-color);
  font-size: 18px;
}

.order-timeline {
  padding: 18px 20px;
}

.order-timeline article {
  display: flex;
  gap: 13px;
  padding: 0 0 22px;
  position: relative;
}

.order-timeline article:last-child {
  padding-bottom: 0;
}

.order-timeline article:not(:last-child):before {
  background: var(--border-color);
  content: "";
  height: 100%;
  left: 5px;
  position: absolute;
  top: 10px;
  width: 2px;
}

.order-timeline__dot {
  background: var(--primary-color);
  border: 3px solid var(--soft-color);
  border-radius: 50%;
  flex: 0 0 12px;
  height: 12px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.order-timeline strong,
.order-timeline small {
  display: block;
}

.order-timeline strong {
  color: var(--text-color);
}

.order-timeline small {
  color: var(--muted-color);
  font-size: 11px;
  margin-top: 3px;
}

.order-timeline p {
  color: var(--muted-color);
  margin: 7px 0 0;
}

#btn-to-top {
  background: #273142;
  border: 0;
  border-radius: 50%;
  bottom: 86px;
  color: #fff;
  display: none;
  height: 40px;
  position: fixed;
  right: 22px;
  width: 40px;
  z-index: 899;
}

#preloader {
  align-items: center;
  background: #fff;
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 2000;
}

#loader {
  animation: openstore-spin 0.8s linear infinite;
  border: 3px solid var(--soft-color);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  height: 38px;
  width: 38px;
}

.store-footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  border-top: 0;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 18px 82px;
}

.store-footer__inner {
  padding-top: 36px;
}

.store-footer__main {
  align-items: flex-start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  padding-bottom: 30px;
}

.store-footer__identity {
  align-items: flex-start;
  display: flex;
  min-width: 0;
}

.store-footer__logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 14px;
  display: flex;
  flex: 0 0 58px;
  height: 58px;
  justify-content: center;
  margin-right: 14px;
  overflow: hidden;
}

.store-footer__identity img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.store-footer__identity strong {
  color: #fff;
  display: block;
  font-size: 19px;
  line-height: 1.35;
  margin: 3px 0 7px;
}

.store-footer__identity p {
  align-items: flex-start;
  display: flex;
  line-height: 1.6;
  margin: 0;
  max-width: 430px;
}

.store-footer__identity p .fa {
  color: rgba(255, 255, 255, 0.88);
  flex: 0 0 18px;
  margin-top: 4px;
}

.store-footer__navigation {
  min-width: 0;
}

.store-footer__title {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.store-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 10px;
}

.store-footer__links a {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  padding: 7px 12px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.store-footer__links a:hover,
.store-footer__links a:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.store-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
}

.store-footer__bottom small,
.store-footer__bottom small a {
  color: rgba(255, 255, 255, 0.72);
}

.store-footer__credit span {
  display: block;
}

.store-footer__credit span + span {
  margin-top: 3px;
}

.store-footer__bottom small a:hover {
  color: #fff;
}

.store-footer__contact {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
}

.store-footer__contact:hover,
.store-footer__contact:focus {
  color: rgba(255, 255, 255, 0.78);
}

@keyframes openstore-spin {
  to { transform: rotate(360deg); }
}

@media (min-width: 768px) and (max-width: 991px) {
  #product-product {
    padding-left: 16px;
    padding-right: 16px;
  }

  #product-product #content > .row {
    gap: 18px;
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  }

  #product-product .product-gallery__main .thumbnail {
    height: clamp(400px, 51vw, 500px);
  }

  #product-product #content > .row > div:last-child {
    padding: 18px;
    top: 74px;
  }

  #product-product #content > .row > div:last-child > h1 {
    font-size: 22px;
  }

  #product-product #content > .row > div:last-child > .list-unstyled h2 {
    font-size: 25px;
  }

  #product-product #content > h3 + .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .storefront__content {
    box-shadow: none;
  }

  #product-product {
    padding: 12px 10px 42px;
  }

  #product-product #content > .row {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  #product-product #content > .row > div:first-child {
    display: contents;
  }

  #product-product .thumbnails {
    order: 1;
    width: 100%;
  }

  #product-product .product-gallery__main,
  #product-product .product-gallery__main .thumbnail {
    min-height: 0;
    width: 100%;
  }

  #product-product .product-gallery__main .thumbnail {
    border-radius: 12px;
  }

  #product-product .product-gallery__main .thumbnail img {
    aspect-ratio: 1 / 1;
    height: clamp(290px, 92vw, 470px);
    max-height: none;
    min-height: 0;
    object-fit: contain;
  }

  #product-product .product-gallery__rail {
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  #product-product .product-gallery__nav {
    display: none;
  }

  #product-product .product-gallery__viewport {
    scroll-snap-type: x proximity;
    touch-action: pan-x;
  }

  #product-product .product-gallery__list .image-additional {
    flex-basis: 72px;
  }

  #product-product #content > .row > div:last-child {
    order: 2;
    padding: 17px 14px;
    position: static;
    width: 100%;
  }

  #product-product #content > .row > div:last-child > h1 {
    font-size: 21px;
    margin-right: 82px;
  }

  #product-product #content > .row > div:last-child > .list-unstyled h2 {
    font-size: 24px;
  }

  #product-product #product input[name="quantity"] {
    width: 64px;
  }

  #product-product .nav-tabs {
    margin-top: 4px;
    order: 3;
    width: 100%;
  }

  #product-product .tab-content {
    margin-top: -4px;
    order: 4;
    padding: 15px;
    width: 100%;
  }

  #product-product #content > h3 {
    font-size: 18px;
    margin-top: 22px;
  }

  #product-product #content > h3 + .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #product-product .product-thumb .image img {
    width: 100%;
  }

  #product-product .product-thumb .caption {
    padding: 10px;
  }

  #product-product .product-thumb .button-group button:first-child span {
    display: inline !important;
  }

  .storefront-widgets {
    display: block;
  }

  .storefront-widgets > #column-left,
  .storefront-widgets > #column-right {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid--scroll .product-card {
    flex-basis: 170px;
  }

  .product-card__cart span {
    /* display: none; */
  }

  .product-card__cart {
    font-size: 15px;
    padding: 7px 10px;
  }

  .product-card__quick-actions {
    opacity: 1;
    transform: none;
  }

  .cart-page {
    padding: 18px 10px 42px;
  }

  .cart-page__heading h1 {
    font-size: 23px;
  }

  .cart-layout {
    display: block;
  }

  .cart-item {
    display: grid;
    gap: 10px 12px;
    grid-template-areas:
      "body image"
      "actions actions";
    grid-template-columns: minmax(0, 1fr) 118px;
    padding: 12px;
  }

  .cart-item__image {
    border-radius: 7px;
    grid-area: image;
    height: 118px;
    width: 118px;
  }

  .cart-item--no-image {
    grid-template-areas:
      "body"
      "actions";
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-item__body {
    grid-area: body;
  }

  .cart-item__name {
    font-size: 16px;
    line-height: 1.25;
  }

  .cart-item__bottom {
    align-items: flex-start;
    margin-top: 12px;
  }

  .cart-item__price small {
    font-size: 13px;
  }

  .cart-item__price strong {
    font-size: 18px;
    margin-top: 4px;
  }

  .cart-item__actions {
    align-items: center;
    flex-direction: row;
    grid-area: actions;
  }

  .cart-item__remove {
    background: #fff;
    border: 1px solid #d7dce2;
    height: 36px;
  }

  .cart-item__remove span {
    display: inline;
    font-weight: 600;
    margin-left: 4px;
  }

  .cart-quantity {
    background: #f3f4f6;
    border-color: #cfd4da;
    flex: 0 0 118px;
  }

  .cart-quantity button {
    background: transparent;
    color: #16a34a;
    flex-basis: 34px;
    min-width: 34px;
    width: 34px;
  }

  .cart-quantity input {
    background: transparent;
    border: 0;
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    width: auto;
  }

  .cart-item--voucher {
    display: flex;
  }

  .cart-summary {
    margin-top: 18px;
    position: static;
  }

  #checkout-checkout {
    padding: 18px 10px 42px;
  }

  #checkout-checkout #content > h1 {
    font-size: 23px;
  }

  #checkout-checkout #accordion > .panel > .panel-heading .panel-title {
    min-height: 54px;
    padding: 10px 13px;
  }

  #checkout-checkout #accordion > .panel > .panel-collapse > .panel-body {
    padding: 15px;
  }

  #checkout-checkout #collapse-checkout-option .row {
    display: block;
  }

  #checkout-checkout #collapse-checkout-option .col-sm-6 {
    padding: 0;
  }

  #checkout-checkout #collapse-checkout-option .col-sm-6 + .col-sm-6 {
    border-left: 0;
    border-top: 1px solid var(--border-color);
    margin-top: 22px;
    padding-top: 22px;
  }

  #checkout-checkout .buttons .pull-right,
  #checkout-checkout .buttons .pull-left {
    float: none !important;
    text-align: left;
  }

  #checkout-checkout .buttons .btn-primary {
    margin-top: 8px;
    width: 100%;
  }

  #checkout-checkout .checkout-payment-actions .pull-right {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #checkout-checkout .checkout-payment-actions .btn-primary {
    margin-top: 0;
  }

  #checkout-checkout .checkout-agreement {
    max-width: none;
    width: 100%;
  }

  #checkout-checkout #collapse-checkout-confirm .panel-body {
    overflow: hidden;
  }

  #checkout-checkout #collapse-checkout-confirm .checkout-confirm__table {
    border: 0;
    overflow: visible;
  }

  #checkout-checkout #collapse-checkout-confirm .table,
  #checkout-checkout #collapse-checkout-confirm .table > tbody,
  #checkout-checkout #collapse-checkout-confirm .table > tfoot,
  #checkout-checkout #collapse-checkout-confirm .table > tbody > tr,
  #checkout-checkout #collapse-checkout-confirm .table > tfoot > tr,
  #checkout-checkout #collapse-checkout-confirm .table > tbody > tr > td,
  #checkout-checkout #collapse-checkout-confirm .table > tfoot > tr > td {
    display: block;
    width: 100%;
  }

  #checkout-checkout #collapse-checkout-confirm .table > thead {
    display: none;
  }

  #checkout-checkout #collapse-checkout-confirm .checkout-confirm__product {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(39, 49, 66, 0.04);
    margin-bottom: 12px;
    overflow: hidden;
    padding: 8px 13px;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tbody > tr > td {
    align-items: flex-start;
    border: 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 9px 0;
    text-align: right;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tbody > tr > td:before {
    color: var(--muted-color);
    content: attr(data-label);
    flex: 0 0 38%;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tbody > tr > td:last-child {
    border-bottom: 0;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tbody > tr > .checkout-confirm__name {
    display: block;
    padding-bottom: 12px;
    text-align: left;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tbody > tr > .checkout-confirm__name:before {
    display: block;
    margin-bottom: 7px;
  }

  #checkout-checkout #collapse-checkout-confirm .checkout-confirm__product-info {
    gap: 11px;
  }

  #checkout-checkout #collapse-checkout-confirm .checkout-confirm__image {
    flex-basis: 64px;
    height: 64px;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tfoot {
    background: var(--soft-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-top: 16px;
    padding: 8px 13px;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tfoot > tr {
    align-items: center;
    border-bottom: 1px solid rgba(39, 49, 66, 0.08);
    display: flex;
    justify-content: space-between;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tfoot > tr:last-child {
    border-bottom: 0;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tfoot > tr > td {
    border: 0;
    padding: 10px 0;
    text-align: right;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tfoot > tr > td:first-child {
    color: var(--muted-color);
    flex: 1;
    text-align: left;
    width: auto;
  }

  #checkout-checkout #collapse-checkout-confirm .table > tfoot > tr > td:last-child {
    flex: 0 0 auto;
    font-weight: 700;
    white-space: nowrap;
    width: auto;
  }

  .success-page {
    padding: 28px 12px 48px;
  }

  .success-card {
    border-radius: 18px;
    padding: 36px 20px 28px;
  }

  .success-card__icon {
    font-size: 25px;
    height: 76px;
    margin-bottom: 18px;
    width: 76px;
  }

  .success-card h1 {
    font-size: 24px;
  }

  .success-card__button {
    width: 100%;
  }

  .catalog-page {
    padding: 14px 10px 40px;
  }

  .catalog-hero {
    align-items: flex-start;
    border-radius: 15px;
    gap: 14px;
    min-height: 0;
    padding: 16px;
  }

  .catalog-hero__image {
    flex-basis: 82px;
    height: 82px;
  }

  .catalog-hero__promo-icon {
    border-width: 6px;
    flex-basis: 72px;
    font-size: 28px;
    height: 72px;
  }

  .catalog-hero__content h1 {
    font-size: 23px;
  }

  .catalog-hero__description,
  .catalog-hero__content > p {
    display: -webkit-box;
    font-size: 12px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  #product-category .catalog-hero {
    padding: 12px 14px;
  }

  #product-category .catalog-hero__image,
  #product-category .catalog-hero .section-heading__eyebrow,
  #product-category .catalog-hero__description {
    display: none;
  }

  #product-category .catalog-hero__content h1 {
    font-size: 18px;
    margin: 0;
  }

  .catalog-subcategories,
  .catalog-products {
    border-radius: 15px;
    padding: 15px;
  }

  .catalog-products__heading {
    align-items: flex-start;
  }

  .catalog-products__heading h2 {
    font-size: 16px;
    line-height: 1.3;
  }

  .search-sort {
    flex: 0 0 auto;
    padding-left: 9px;
    padding-right: 5px;
  }

  .search-sort select {
    max-width: 118px;
    width: 118px;
  }

  .catalog-compare {
    font-size: 0;
    padding: 5px;
  }

  .catalog-compare .fa {
    font-size: 18px;
  }

  .catalog-toolbar {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    padding: 10px;
  }

  .catalog-toolbar label {
    align-items: stretch;
    display: block;
  }

  .catalog-toolbar label > span {
    display: block;
    margin: 0 0 5px;
  }

  .catalog-toolbar select {
    max-width: none;
    width: 100%;
  }

  .catalog-product-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-pagination {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .auth-page {
    align-items: flex-start;
    padding: 24px 12px 44px;
  }

  .auth-card {
    border-radius: 18px;
    padding: 30px 20px 25px;
  }

  .auth-card h1 {
    font-size: 24px;
  }

  .auth-card__icon {
    font-size: 22px;
    height: 56px;
    width: 56px;
  }

  .customer-page {
    padding: 14px 10px 40px;
  }

  .customer-nav {
    overflow-x: auto;
  }

  .customer-nav a {
    flex: 0 0 auto;
    padding: 9px 11px;
  }

  .customer-nav a:last-child {
    margin-left: 0;
  }

  .customer-page__heading {
    border-radius: 14px;
    padding: 17px 15px;
  }

  .customer-page__heading h1 {
    font-size: 22px;
  }

  .return-page__heading {
    align-items: flex-start;
  }

  .return-page__heading-icon {
    flex-basis: 44px;
    height: 44px;
  }

  .return-history__heading {
    align-items: flex-start;
  }

  .return-history__heading p {
    font-size: 12px;
  }

  .return-history__heading-icon {
    flex-basis: 44px;
    height: 44px;
  }

  .return-history-card__details {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .return-history-card__details strong {
    white-space: normal;
  }

  .return-history__actions,
  .return-history__actions a {
    width: 100%;
  }

  .return-history__actions {
    flex-direction: column-reverse;
  }

  .return-history__actions a {
    justify-content: center;
  }

  .return-card {
    border-radius: 14px;
    padding: 17px 14px;
  }

  .return-form__grid,
  .return-choice__grid,
  .return-choice--opened .return-choice__grid {
    grid-template-columns: 1fr;
  }

  .return-field--quantity {
    max-width: none;
  }

  .return-form__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .return-form__back,
  .return-form__submit {
    width: 100%;
  }

  .wishlist-grid {
    grid-template-columns: 1fr;
  }

  .wishlist-card__image {
    flex-basis: 112px;
  }

  .wishlist-card__body {
    padding: 12px;
  }

  .order-card__details {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    padding: 14px;
  }

  .order-card__details > div:last-child {
    grid-column: 1 / -1;
  }

  .order-card__header,
  .order-card__footer {
    padding: 13px 14px;
  }

  .customer-pagination {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .account-settings__heading {
    align-items: flex-start;
    border-radius: 15px;
    padding: 18px 15px;
  }

  .account-settings__heading-icon {
    flex-basis: 46px;
    font-size: 19px;
    height: 46px;
  }

  .account-settings__heading h1 {
    font-size: 21px;
  }

  .account-settings__heading p {
    font-size: 12px;
  }

  .account-settings__card {
    border-radius: 14px;
    padding: 18px 14px;
  }

  .account-settings__form .form-group {
    align-items: stretch;
    display: block;
    margin: 0 0 16px;
  }

  .account-settings__form .control-label,
  .account-settings__form .form-group > div {
    float: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .account-settings__form .control-label {
    display: block;
    margin-bottom: 7px;
  }

  .account-settings__actions {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 9px;
  }

  .account-settings__actions .pull-left,
  .account-settings__actions .pull-right,
  .account-settings__button {
    float: none !important;
    width: 100%;
  }

  .address-book-grid {
    grid-template-columns: 1fr;
  }

  .tracking-card {
    border-radius: 14px;
    padding: 18px 14px;
  }

  .tracking-copy-field {
    flex-direction: column;
  }

  .tracking-copy-button {
    min-height: 42px;
    width: 100%;
  }

  .transaction-balance {
    border-radius: 14px;
    padding: 16px;
  }

  .transaction-balance strong {
    font-size: 21px;
  }

  .transaction-list__header {
    display: none;
  }

  .transaction-item {
    align-items: start;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 15px 14px;
  }

  .transaction-item__date {
    grid-column: 1 / -1;
  }

  .transaction-item__amount {
    align-self: center;
    white-space: nowrap;
  }

  .account-dashboard__hero {
    align-items: flex-start;
    border-radius: 15px;
    padding: 18px 15px;
  }

  .account-dashboard__avatar {
    border-width: 5px;
    flex-basis: 58px;
    font-size: 23px;
    height: 58px;
  }

  .account-dashboard__hero h1 {
    font-size: 22px;
  }

  .account-dashboard__hero p {
    font-size: 12px;
  }

  .account-shortcuts,
  .account-dashboard__grid {
    grid-template-columns: 1fr;
  }

  .account-menu-card--wide {
    grid-column: auto;
  }

  .account-menu-card__links--columns {
    display: block;
  }

  .account-menu-card__links--columns a:nth-child(odd) {
    border-right: 0;
  }

  .order-detail__hero {
    align-items: flex-start;
    border-radius: 15px;
    display: block;
    padding: 18px 15px;
  }

  .order-detail__hero h1 {
    font-size: 22px;
  }

  .order-detail__hero > a {
    margin-top: 15px;
  }

  .order-detail__summary {
    grid-template-columns: 1fr;
  }

  .order-product {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 56px;
    padding: 13px 14px;
  }

  .order-product__price {
    grid-column: 1;
  }

  .order-product__actions {
    grid-column: 2;
    grid-row: 2;
  }

  .order-detail__totals {
    max-width: none;
  }

  .information-page {
    padding: 14px 10px 40px;
  }

  .information-card {
    border-radius: 15px;
  }

  .information-card__heading,
  .contact-hero {
    align-items: flex-start;
    padding: 17px 15px;
  }

  .information-card__icon,
  .contact-hero__icon {
    border-radius: 11px;
    flex-basis: 42px;
    font-size: 18px;
    height: 42px;
  }

  .information-card__heading h1,
  .contact-hero h1 {
    font-size: 20px;
  }

  .information-card__content {
    font-size: 13px;
    line-height: 1.7;
    padding: 18px 16px;
  }

  .information-card__content h2 {
    font-size: 18px;
  }

  .contact-hero p {
    font-size: 12px;
    line-height: 1.5;
  }

  .contact-layout {
    display: block;
  }

  .contact-form {
    border-radius: 14px;
    margin-top: 14px;
    padding: 17px 15px;
  }

  .contact-detail-card {
    padding: 13px;
  }

  .contact-locations {
    padding: 17px 15px;
  }

  .contact-locations__grid {
    grid-template-columns: 1fr;
  }

  .store-footer {
    padding: 0 16px 76px;
  }

  .store-footer__inner {
    padding-top: 28px;
  }

  .store-footer__main {
    display: block;
    padding-bottom: 24px;
  }

  .store-footer__identity {
    margin-bottom: 26px;
  }

  .store-footer__links {
    gap: 8px;
  }

  .store-footer__links a {
    padding: 7px 11px;
  }

  .store-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .mobile-header__inner {
    padding-left: 12px;
    padding-right: 8px;
  }

  .header-action {
    width: 36px;
  }

  .category-section,
  .product-section,
  .store-information {
    padding-left: 12px;
    padding-right: 12px;
  }

  #common-home .product-section .section-heading {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  #common-home .product-section--special {
    padding-left: 12px;
    padding-right: 12px;
  }
}
