:root {
  --cc-bg: #f5f7fb;
  --cc-surface: #ffffff;
  --cc-surface-alt: #eef2f8;
  --cc-text: #152033;
  --cc-muted: #627189;
  --cc-border: #d8e0ea;
  --cc-shadow: 0 14px 34px rgba(18, 31, 55, 0.09);
  --cc-brand: #173a8f;
  --cc-brand-2: #0f2558;
  --cc-accent: #d52735;
  --cc-accent-2: #173a8f;
  --cc-radius: 8px;
}

html, body {
  background: var(--cc-bg);
  color: var(--cc-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body.cc-body {
  min-height: 100vh;
}

a {
  color: var(--cc-brand-2);
}

a:hover, a:focus {
  color: var(--cc-brand);
  text-decoration: none;
}

.btn {
  border-radius: var(--cc-radius);
  box-shadow: none;
}

.btn-primary {
  border-color: var(--cc-brand);
  background: var(--cc-brand);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  border-color: var(--cc-brand-2);
  background: var(--cc-brand-2);
}

.btn-default {
  border-color: var(--cc-border);
  background: var(--cc-surface);
  color: var(--cc-text);
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  border-color: var(--cc-brand-2);
  background: var(--cc-surface-alt);
  color: var(--cc-brand-2);
}

.nav-tabs > li > a {
  border-radius: var(--cc-radius) var(--cc-radius) 0 0;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: var(--cc-brand);
  border-color: var(--cc-border) var(--cc-border) var(--cc-surface);
  background: var(--cc-surface);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--cc-text);
  letter-spacing: 0;
  line-height: 1.2;
}

.container {
  max-width: 1240px;
}

.cc-shell {
  position: relative;
  min-height: 100vh;
}

.cc-shell.is-sticky .cc-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 8px 20px rgba(18, 37, 29, 0.08);
}

.cc-topbar {
  position: relative;
  z-index: 1055;
  background: #0f1f49;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.cc-topbar .container {
  padding-top: 8px;
  padding-bottom: 8px;
}

.cc-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cc-topbar__left,
.cc-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cc-topbar__left span,
.cc-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  white-space: nowrap;
}

.cc-topbar__switcher .dropdown-menu {
  min-width: 180px;
}

.cc-topbar__link {
  font-weight: 600;
}

.cc-topbar__link:hover {
  color: #fff;
}

.cc-account {
  position: relative;
}

.cc-account__menu {
  border-radius: var(--cc-radius);
  border: 1px solid var(--cc-border);
  box-shadow: var(--cc-shadow);
  z-index: 1080;
}

.cc-header {
  position: relative;
  z-index: 1050;
  background: var(--cc-surface);
  border-bottom: 1px solid var(--cc-border);
}

.cc-header .container {
  padding-top: 14px;
  padding-bottom: 14px;
}

.cc-header__inner {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.cc-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.cc-brand img {
  display: block;
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
}

.cc-brand span {
  font-size: 28px;
  font-weight: 800;
  color: var(--cc-brand);
}

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

.cc-header__search #search .input-group {
  width: 100%;
}

.cc-header__search #search input {
  height: 48px;
  border: 1px solid var(--cc-border);
  box-shadow: none;
}

.cc-header__search #search .btn {
  height: 48px;
  padding: 0 18px;
  border-color: var(--cc-brand);
  background: var(--cc-brand);
  color: #fff;
}

.cc-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cc-header__cart-summary {
  padding-top: 14px;
}

.cc-header__cart-summary.is-empty {
  display: none;
}

.cc-header__cart-summary-content {
  min-width: 0;
}

#wishlist-total {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface);
  color: var(--cc-text);
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

#wishlist-total:hover {
  border-color: var(--cc-brand-2);
  color: var(--cc-brand-2);
  transform: translateY(-1px);
}

#cart {
  margin: 0;
}

#cart > button {
  min-height: 48px;
  border: 1px solid var(--cc-brand);
  border-radius: var(--cc-radius);
  background: var(--cc-brand);
  color: #fff;
  box-shadow: none;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

#cart > button:hover,
#cart.open > button {
  background: var(--cc-brand-2);
  border-color: var(--cc-brand-2);
  color: #fff;
  transform: translateY(-1px);
}

#cart .dropdown-menu {
  min-width: 340px;
  max-width: 420px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow);
  padding: 10px;
}

#cart .dropdown-menu table {
  margin-bottom: 12px;
}

#cart .dropdown-menu li > div {
  min-width: 0;
}

.cc-menu {
  position: relative;
  overflow: visible;
  z-index: 1035;
  padding: 12px 0 14px;
  background: var(--cc-accent);
  box-shadow: 0 10px 24px rgba(213, 39, 53, 0.18);
  color: #fff;
}

.cc-menu .container {
  position: relative;
  overflow: visible;
}

.cc-menu__mobile {
  display: none;
  padding: 10px 0;
}

.cc-menu__toggle {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: var(--cc-radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 0 14px;
}

.cc-menu__collapse {
  padding: 0;
}

.cc-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cc-menu__list::-webkit-scrollbar {
  display: none;
}

.cc-menu__item {
  position: relative;
  flex: 0 0 auto;
  padding-bottom: 8px;
}

.cc-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: var(--cc-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.cc-menu__link:hover,
.cc-menu__item.open > .cc-menu__link,
.cc-menu__item:focus-within > .cc-menu__link {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-1px);
}

.cc-menu__panel {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  margin-top: 0;
  padding: 20px 22px;
  min-width: 340px;
  max-width: min(860px, calc(100vw - 24px));
  border: 1px solid var(--cc-border);
  border-radius: 12px;
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow);
  color: var(--cc-text);
  z-index: 1060;
}

.cc-menu__item:hover > .cc-menu__panel,
.cc-menu__item.open > .cc-menu__panel,
.cc-menu__item:focus-within > .cc-menu__panel {
  display: block;
}

.cc-menu__panel-head {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cc-border);
}

.cc-menu__panel-head a {
  font-weight: 800;
  color: var(--cc-accent);
}

.cc-menu__panel-head a:hover {
  color: #b91c1c;
}

.cc-menu__panel-grid {
  display: grid;
  gap: 16px;
}

.cc-menu__panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc-menu__panel-list li + li {
  margin-top: 8px;
}

.cc-menu__panel-list a {
  color: var(--cc-text);
}

.cc-menu__panel-list a:hover {
  color: var(--cc-accent);
}

.cc-min-order-bar {
  position: relative;
  z-index: 1034;
  padding: 8px 0;
  background: var(--cc-brand-2);
  color: #fff;
  box-shadow: 0 8px 18px rgba(18, 31, 55, 0.14);
}

.cc-min-order-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  text-align: center;
  font-weight: 800;
  flex-wrap: wrap;
}

.cc-min-order-bar__inner strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.cc-page {
  padding-top: 24px;
  padding-bottom: 48px;
}

.cc-cart-summary-dock {
  position: fixed;
  top: 228px;
  right: 16px;
  z-index: 1400;
  width: min(360px, calc(100vw - 32px));
  transform: translateX(28px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0s linear 0.28s;
  will-change: transform, opacity;
  animation: none;
}

body.has-cart-summary .cc-cart-summary-dock.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.cc-cart-summary-dock.is-empty {
  display: none;
}

.cc-cart-summary-dock__content {
  min-width: 0;
}

.cc-cart-summary-dock .cc-cart-panel {
  position: relative;
  top: auto;
  max-height: calc(100vh - 244px);
}

.cc-search-panel {
  padding: 20px;
  border: 1px solid var(--cc-border);
  border-radius: 12px;
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow);
}

.cc-search-panel__form {
  display: grid;
  gap: 16px;
}

.cc-search-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
  gap: 12px;
}

.cc-search-panel__field {
  min-width: 0;
  margin-bottom: 0;
}

.cc-search-panel__field--wide {
  grid-column: span 2;
}

.cc-search-panel__field .control-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.cc-search-panel__field .form-control {
  min-height: 46px;
}

.cc-search-panel__field--check {
  display: flex;
  align-items: end;
}

.cc-search-panel__field--check .checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 700;
}

.cc-search-panel__field--check input {
  margin-top: 0;
}

.cc-search-panel__actions {
  display: flex;
  justify-content: flex-end;
}

.cc-search-panel__actions .btn {
  min-height: 48px;
  padding: 0 20px;
  font-weight: 800;
}

.cc-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cc-accent);
}

.cc-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.84);
}

.cc-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  padding: 22px;
  border-radius: 12px;
  background: #123524;
  color: #fff;
  box-shadow: var(--cc-shadow);
}

.cc-home-carousel {
  margin-top: 22px;
}

.cc-home-carousel .item {
  padding: 0;
}

.cc-home-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--cc-border);
  border-radius: 12px;
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow);
}

.cc-home-slide__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 30px;
  background: var(--cc-home-slide-bg, var(--cc-brand));
  color: #fff;
}

.cc-home-slide__copy h1 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.cc-home-slide__copy p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
}

.cc-home-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-home-slide__actions .btn {
  min-height: 46px;
  border-radius: var(--cc-radius);
  font-weight: 800;
}

.cc-home-slide__actions .btn-default {
  border-color: rgba(255, 255, 255, 0.95);
  background: #fff;
  color: var(--cc-brand);
}

.cc-home-slide__actions .btn-default:hover,
.cc-home-slide__actions .btn-default:focus {
  background: rgba(255, 255, 255, 0.92);
  color: var(--cc-brand-2);
}

.cc-home-slide__actions .btn-primary {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.cc-home-slide__actions .btn-primary:hover,
.cc-home-slide__actions .btn-primary:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cc-home-slide__art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--cc-surface-alt);
}

.cc-home-slide__art img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--cc-radius);
  box-shadow: 0 10px 24px rgba(18, 31, 55, 0.12);
}

.cc-home-carousel .carousel-indicators {
  bottom: -8px;
}

.cc-home-carousel .carousel-indicators li {
  border-color: var(--cc-brand);
}

.cc-home-carousel .carousel-indicators .active {
  background-color: var(--cc-brand);
}

.cc-home-carousel .carousel-control {
  width: 5%;
  color: var(--cc-brand);
  text-shadow: none;
  background: transparent;
}

.cc-home-carousel .carousel-control.left,
.cc-home-carousel .carousel-control.right {
  background-image: none;
}

.cc-home-carousel .carousel-control .fa {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}

.cc-home-carousel .carousel-control.left .fa {
  left: 14px;
}

.cc-home-carousel .carousel-control.right .fa {
  right: 14px;
}

.cc-home-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
}

.cc-home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.cc-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cc-home-hero__actions .btn {
  min-height: 48px;
  border-radius: var(--cc-radius);
  font-weight: 800;
}

.cc-home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cc-home-hero__stats > div {
  padding: 12px;
  border-radius: var(--cc-radius);
  background: rgba(255, 255, 255, 0.08);
}

.cc-home-hero__stats strong {
  display: block;
  font-size: 18px;
}

.cc-home-hero__stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.cc-home-hero__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cc-home-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--cc-radius);
  background: rgba(255, 255, 255, 0.08);
  min-height: 190px;
}

.cc-home-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-home-tile span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--cc-radius);
  background: rgba(18, 37, 29, 0.84);
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-home-band,
.cc-home-departments,
.cc-home-products,
.cc-category-hero,
.cc-product-hero,
.cc-product-tabs,
.cc-related,
.cc-toolbar,
.cc-compare-table-wrap,
.cc-empty,
.cc-maintenance__panel,
.cc-footer {
  margin-top: 22px;
}

.cc-home-band,
.cc-home-departments,
.cc-home-products__section,
.cc-category-hero,
.cc-product-hero,
.cc-product-tabs,
.cc-related,
.cc-search-panel,
.cc-compare-table-wrap,
.cc-empty,
.cc-maintenance__panel,
.cc-cart-summary-dock,
.cc-account-hero,
.cc-account-card,
.cc-account-credit-card,
.cc-contact-map,
.cc-contact-card,
.cc-contact-location,
.cc-contact-form,
.cc-feature,
.cc-department-card,
.product-card,
.cc-cart-panel {
  animation: cc-fade-up 0.42s ease both;
}

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

.cc-feature {
  padding: 18px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow);
}

.cc-feature i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--cc-surface-alt);
  color: var(--cc-brand-2);
  font-size: 18px;
}

.cc-feature strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.cc-feature span {
  color: var(--cc-muted);
  font-size: 14px;
}

.cc-home-products {
  display: grid;
  gap: 26px;
}

.cc-home-products__section {
  min-width: 0;
}

.cc-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cc-section-head h2,
.cc-section-head h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
}

.cc-section-head__link {
  white-space: nowrap;
  font-weight: 700;
}

.cc-account-hero,
.cc-contact-form,
.cc-contact-map,
.cc-contact-card,
.cc-contact-location,
.cc-account-card,
.cc-account-credit-card {
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow);
}

.cc-account-section,
.cc-contact-section {
  margin-top: 22px;
}

.cc-account-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.cc-account-hero__copy {
  min-width: 0;
}

.cc-account-hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
}

.cc-account-hero__copy p {
  margin: 8px 0 0;
  color: var(--cc-muted);
}

.cc-account-hero__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cc-account-hero__actions .btn {
  min-width: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

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

.cc-account-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 136px;
  padding: 22px 18px;
  color: var(--cc-text);
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cc-account-card:hover {
  transform: translateY(-3px);
  color: var(--cc-text);
}

.cc-account-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cc-surface-alt);
  color: var(--cc-brand);
  font-size: 22px;
}

.cc-account-card strong {
  font-size: 16px;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.cc-account-credit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 16px 18px;
  color: var(--cc-text);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cc-account-credit-card:hover {
  transform: translateY(-2px);
  color: var(--cc-text);
}

.cc-account-credit-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cc-surface-alt);
  color: var(--cc-brand-2);
  flex-shrink: 0;
}

.cc-account-credit-card strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.cc-contact-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.cc-contact-map {
  overflow: hidden;
  min-height: 360px;
}

.cc-contact-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.cc-contact-map__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 360px;
  padding: 18px;
  background: var(--cc-surface-alt);
  color: var(--cc-muted);
  text-align: center;
}

.cc-contact-map__empty i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cc-surface);
  color: var(--cc-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cc-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cc-contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 18px;
}

.cc-contact-card--brand .cc-contact-card__image {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: var(--cc-radius);
}

.cc-contact-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cc-surface-alt);
  color: var(--cc-brand-2);
  font-size: 18px;
}

.cc-contact-card strong {
  font-size: 16px;
  font-weight: 800;
}

.cc-contact-card address,
.cc-contact-card span,
.cc-contact-card small {
  margin: 0;
  color: var(--cc-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-contact-form {
  padding: 20px;
}

.cc-contact-form__form .form-group {
  margin-bottom: 14px;
}

.cc-contact-form__form .form-control {
  min-height: 46px;
}

.cc-contact-form__form textarea.form-control {
  min-height: 160px;
}

.cc-contact-form__actions {
  display: flex;
  justify-content: flex-start;
}

.cc-contact-form__actions .btn {
  min-height: 48px;
  padding: 0 18px;
  font-weight: 800;
}

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

.cc-contact-location {
  display: flex;
  gap: 14px;
  padding: 16px;
  min-width: 0;
}

.cc-contact-location__image {
  width: 132px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--cc-radius);
  flex-shrink: 0;
}

.cc-contact-location__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.cc-contact-location__body strong {
  font-size: 16px;
  font-weight: 800;
}

.cc-contact-location__body address {
  margin: 0;
  color: var(--cc-muted);
}

.cc-contact-location__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--cc-muted);
}

.cc-contact-location__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.cc-department-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow);
}

.cc-department-card img {
  width: 100%;
  aspect-ratio: 360 / 250;
  object-fit: cover;
  display: block;
}

.cc-department-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
}

.cc-department-card strong {
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-department-card span {
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-breadcrumb {
  margin-bottom: 20px;
  border-radius: var(--cc-radius);
  background: transparent;
}

.cc-breadcrumb > li + li:before {
  color: var(--cc-muted);
}

.cc-category-hero,
.cc-product-hero,
.cc-maintenance__panel,
.cc-product-tabs,
.cc-compare-table-wrap,
.cc-empty {
  padding: 20px;
  border: 1px solid var(--cc-border);
  border-radius: 12px;
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow);
}

.cc-category-hero {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.cc-category-hero__image img {
  width: 100%;
  border-radius: var(--cc-radius);
}

.cc-category-hero h1 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
}

.cc-category-hero__description {
  color: var(--cc-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cc-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--cc-border);
  border-radius: 999px;
  background: var(--cc-surface);
  color: var(--cc-text);
  font-weight: 700;
}

.cc-chip:hover {
  border-color: var(--cc-brand-2);
  color: var(--cc-brand-2);
}

.cc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface);
}

.cc-toolbar__left,
.cc-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cc-toolbar__compare {
  font-weight: 700;
}

.cc-select {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-select label {
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.cc-select .form-control {
  min-width: 180px;
}

.cc-product-listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(18, 31, 55, 0.12);
}

.cc-product-listing > [class*="col-"] {
  display: flex;
  min-width: 0;
  margin-bottom: 18px;
}

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

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

.product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(213, 39, 53, 0.96);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(213, 39, 53, 0.22);
  pointer-events: none;
}

.product-card__badge .fa {
  font-size: 11px;
}

.product-card__badge--bulk {
  background: rgba(23, 58, 143, 0.96);
  box-shadow: 0 10px 18px rgba(23, 58, 143, 0.22);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  width: 100%;
  min-width: 0;
  align-items: center;
  text-align: center;
}

.product-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.product-card__title a {
  color: var(--cc-text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-card__title a:hover {
  color: var(--cc-brand-2);
}

.product-card__description {
  margin: 0;
  color: var(--cc-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.price, .price-new {
  font-size: 20px;
  font-weight: 900;
  color: var(--cc-brand);
}

.price-old {
  color: var(--cc-muted);
  text-decoration: line-through;
}

.price-tax {
  color: var(--cc-muted);
  font-size: 13px;
}

.product-card__rating {
  min-height: 18px;
}

.product-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  padding: 0 16px 16px;
}

.product-card__actions .btn {
  min-height: 42px;
  min-width: 0;
  border-radius: var(--cc-radius);
  font-weight: 800;
}

.product-card__actions .btn:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  white-space: normal;
}

.product-card__actions .btn-default {
  border-color: var(--cc-border);
}

.product-card__actions .btn,
.cc-feature,
.cc-department-card,
.cc-cart-panel,
.cc-account-card,
.cc-account-credit-card,
.cc-contact-card,
.cc-contact-location {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.cc-feature:hover,
.cc-department-card:hover,
.cc-cart-panel:hover,
.cc-account-card:hover,
.cc-account-credit-card:hover,
.cc-contact-card:hover,
.cc-contact-location:hover {
  transform: translateY(-3px);
}

.product-card__actions .btn i {
  font-size: 14px;
}

.product-list .product-card {
  flex-direction: row;
}

.product-list .product-card__image {
  flex: 0 0 34%;
  max-width: 34%;
}

.product-list .product-card__image img {
  height: 100%;
  aspect-ratio: auto;
}

.product-list .product-card__body {
  flex: 1 1 auto;
  align-items: flex-start;
  text-align: left;
}

.product-list .product-card__actions {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.cc-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

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

.cc-empty {
  text-align: center;
}

.cc-empty p {
  margin: 0 0 14px;
  font-size: 16px;
}

.cc-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.cc-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.cc-product-layout__main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.cc-product-layout__side {
  align-self: start;
  min-width: 0;
}

.cc-cart-panel {
  position: relative;
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow);
  animation: cc-fade-up 0.42s ease both;
}

.cc-cart-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cc-cart-panel__header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.cc-cart-panel__summary {
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-cart-panel__empty {
  margin: 0;
  padding: 18px 12px;
  border: 1px dashed var(--cc-border);
  border-radius: var(--cc-radius);
  color: var(--cc-muted);
  text-align: center;
}

.cc-cart-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.cc-cart-panel__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface-alt);
}

.cc-cart-panel__thumb {
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid var(--cc-border);
  border-radius: 4px;
  background: #fff;
}

.cc-cart-panel__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cc-cart-panel__name {
  display: block;
  font-weight: 800;
  color: var(--cc-text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-cart-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-cart-panel__remove {
  min-width: 34px;
  min-height: 34px;
  padding: 0;
}

.cc-cart-panel__totals {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.cc-cart-panel__total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--cc-border);
  font-weight: 800;
}

.cc-cart-panel__actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.cc-product-gallery {
  min-width: 0;
}

.cc-product-gallery__main {
  overflow: hidden;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: #fff;
}

.cc-product-gallery__main a {
  display: block;
  position: relative;
}

.cc-product-gallery__main img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.cc-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.cc-product-gallery__thumbs a {
  overflow: hidden;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: #fff;
}

.cc-product-gallery__thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cc-product-info {
  min-width: 0;
}

.cc-product-info__top {
  margin-bottom: 16px;
}

.cc-product-info__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.cc-product-info__actions .btn {
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--cc-radius);
}

.cc-product-info h1 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
}

.cc-product-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cc-product-facts li {
  padding: 12px 14px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface-alt);
}

.cc-product-facts span {
  display: block;
  margin-bottom: 4px;
  color: var(--cc-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cc-product-price {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: var(--cc-radius);
  background: var(--cc-surface-alt);
}

.cc-product-price__value {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--cc-brand);
}

.cc-product-price__old {
  display: inline-block;
  margin-top: 4px;
  color: var(--cc-muted);
  text-decoration: line-through;
}

.cc-product-price__meta {
  display: block;
  margin-top: 6px;
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-product-discounts {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  color: var(--cc-muted);
}

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

.cc-option-stack .form-control {
  min-height: 46px;
}

.cc-option-group {
  display: grid;
  gap: 8px;
}

.cc-option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface);
  cursor: pointer;
}

.cc-option-item input {
  margin: 0;
}

.cc-option-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
}

.cc-product-buy__footer {
  display: grid;
  grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.cc-quantity {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  overflow: hidden;
}

.cc-quantity__btn {
  border: 0;
  background: var(--cc-surface-alt);
  color: var(--cc-brand);
  font-weight: 900;
}

.cc-quantity .form-control {
  border: 0;
  box-shadow: none;
  text-align: center;
  min-height: 44px;
}

.cc-product-rating {
  margin-top: 10px;
}

.cc-tabs__nav {
  margin-bottom: 0;
}

.cc-tabs__content {
  padding-top: 18px;
}

.cc-copy {
  color: var(--cc-text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-spec-table td,
.cc-spec-table th,
.cc-compare-table td,
.cc-compare-table th {
  vertical-align: top !important;
}

.cc-review-form h2 {
  margin-top: 0;
}

.cc-rating-select {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.cc-rating-select label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.cc-related .cc-product-listing {
  margin-top: 0;
}

.cc-search .cc-toolbar {
  margin-top: 22px;
}

.cc-tags p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cc-compare-table-wrap {
  overflow-x: auto;
}

.cc-compare-table {
  margin: 0;
  min-width: 760px;
}

.cc-compare-table th {
  background: var(--cc-surface-alt);
}

.cc-compare-label {
  width: 220px;
  font-weight: 800;
  background: var(--cc-surface-alt);
}

.cc-compare-section th {
  background: #e7ede5;
  font-size: 15px;
}

.cc-compare-description {
  color: var(--cc-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-maintenance {
  padding-bottom: 60px;
}

.cc-maintenance__panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cc-maintenance__panel h1 {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 900;
}

.cc-maintenance__message {
  color: var(--cc-muted);
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-maintenance__contact,
.cc-maintenance__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.cc-maintenance__details span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-surface-alt);
  color: var(--cc-text);
  max-width: 100%;
}

.cc-footer {
  padding: 32px 0 22px;
  border-top: 1px solid var(--cc-border);
  background: #101f18;
  color: rgba(255, 255, 255, 0.84);
}

.cc-footer a {
  color: rgba(255, 255, 255, 0.92);
}

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

.cc-footer__col h5 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.cc-footer__contact {
  display: grid;
  gap: 10px;
}

.cc-footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.cc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-footer__bottom p {
  margin: 0;
}

.cc-footer__bottom a {
  font-weight: 800;
}

#button-cart {
  min-height: 48px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@keyframes cc-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1199px) {
  body.has-cart-summary .cc-page {
    padding-right: 0;
  }

  .cc-cart-summary-dock {
    position: static;
    width: auto;
    margin: 20px 16px 0;
    right: auto;
    top: auto;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .cc-cart-summary-dock__content {
    max-height: none;
  }

  .cc-home-hero,
  .cc-product-hero,
  .cc-category-hero {
    grid-template-columns: 1fr;
  }

  .cc-home-slide {
    grid-template-columns: 1fr;
  }

  .cc-feature-grid,
  .cc-department-grid,
  .cc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-account-grid,
  .cc-account-credit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-contact-layout {
    grid-template-columns: 1fr;
  }

  .cc-contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-contact-location-grid {
    grid-template-columns: 1fr;
  }

  .cc-search-panel__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cc-search-panel__field--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .cc-header__inner {
    grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  }

  .cc-header__actions {
    grid-column: 1 / -1;
  }

  .cc-home-hero h1,
  .cc-product-info h1,
  .cc-category-hero h1 {
    font-size: 32px;
  }

  .cc-toolbar,
  .cc-product-buy__footer,
  .cc-pagination,
  .cc-footer__bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .cc-product-buy__footer {
    grid-template-columns: 1fr;
  }

  #button-cart {
    width: 100%;
  }

  .cc-home-slide__copy h1 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  body.has-cart-summary .cc-page {
    padding-right: 0;
  }

  .cc-cart-summary-dock {
    position: static;
    width: auto;
    margin: 20px 16px 0;
    right: auto;
    top: auto;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .cc-cart-summary-dock__content {
    max-height: none;
  }

  .cc-topbar__inner,
  .cc-topbar__left,
  .cc-topbar__right {
    flex-wrap: wrap;
  }

  .cc-menu__mobile {
    display: block;
  }

  .cc-menu__collapse {
    padding-bottom: 10px;
  }

  .cc-menu__list {
    flex-direction: column;
    gap: 8px;
  }

  .cc-menu__item {
    width: 100%;
  }

  .cc-menu__link {
    width: 100%;
    justify-content: space-between;
  }

  .cc-menu__panel {
    position: static;
    width: 100%;
    margin-top: 8px;
    max-width: none;
  }

  .cc-product-layout {
    grid-template-columns: 1fr;
  }

  .cc-product-layout__side {
    position: static;
  }

  .cc-cart-panel {
    max-height: none;
    overflow: visible;
  }

  .cc-home-hero__stats,
  .cc-home-hero__tiles,
  .cc-feature-grid,
  .cc-department-grid,
  .cc-footer__grid,
  .cc-product-facts {
    grid-template-columns: 1fr;
  }

  .cc-home-hero h1,
  .cc-product-info h1,
  .cc-category-hero h1 {
    font-size: 28px;
  }

  .cc-home-slide__copy {
    padding: 22px;
  }

  .cc-home-slide__copy h1 {
    font-size: 30px;
  }

  .cc-account-hero {
    flex-direction: column;
  }

  .cc-account-hero h1 {
    font-size: 28px;
  }

  .cc-account-grid,
  .cc-account-credit-grid,
  .cc-contact-info-grid,
  .cc-contact-location-grid {
    grid-template-columns: 1fr;
  }

  .cc-contact-location {
    flex-direction: column;
  }

  .cc-contact-location__image {
    width: 100%;
  }

  .cc-contact-map,
  .cc-contact-map iframe {
    min-height: 260px;
  }

  .cc-toolbar__right,
  .cc-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-select .form-control {
    min-width: 0;
    width: 100%;
  }

  .product-list .product-card {
    flex-direction: column;
  }

  .product-list .product-card__image {
    max-width: 100%;
    flex-basis: auto;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .cc-product-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cc-search-panel__grid {
    grid-template-columns: 1fr;
  }

  .cc-search-panel__field--wide {
    grid-column: auto;
  }

  .cc-search-panel__actions {
    justify-content: stretch;
  }

  .cc-search-panel__actions .btn {
    width: 100%;
  }

  .cc-home-tile {
    min-height: 160px;
  }

  .cc-cart-panel__item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .cc-cart-panel__remove {
    grid-column: 1 / -1;
    justify-self: end;
  }
}
