@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #23486A;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  color: #30343F;
}

body {
  background-color: #F8F7F4;
  color: #30343F;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

section {
  padding-block: 96px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-content {
  padding-top: 64px;
  padding-bottom: 96px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-primary {
  background-color: #23486A;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #5B84B1;
}

.btn-secondary {
  background-color: transparent;
  color: #23486A;
  border-color: #23486A;
}
.btn-secondary:hover {
  background-color: #23486A;
  color: #FFFFFF;
}

.btn-wasatch {
  background-color: #4C7FA3;
  color: #FFFFFF;
}
.btn-wasatch:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.btn-peachtacular {
  background-color: #F4A261;
  color: #FFFFFF;
}
.btn-peachtacular:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.btn-tabletop {
  background-color: #B58A3C;
  color: #FFFFFF;
}
.btn-tabletop:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.card {
  background-color: #FFFFFF;
  border: 1px solid rgba(48, 52, 63, 0.12);
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(48, 52, 63, 0.12);
          box-shadow: 0 8px 24px rgba(48, 52, 63, 0.12);
}

.card__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.card:hover .card__image img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.card__content {
  padding: 24px;
}

.card__title {
  margin-bottom: 8px;
  color: #23486A;
  font-size: 1.25rem;
  font-weight: 600;
}

.card__text {
  margin-bottom: 24px;
  color: #30343F;
  font-size: 0.95rem;
}

.card__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #23486A;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.card__link:hover {
  color: #5B84B1;
}

.card--product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card--product .card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.card--product .card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card--product .card__content {
  display: block;
  padding: 16px;
}
.card--product .card__title {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.card--product .card__title a {
  color: #23486A;
  text-decoration: none;
}
.card--product .card__price {
  margin-bottom: 16px;
  color: #23486A;
  font-size: 1rem;
  font-weight: 700;
}
.card--product .btn {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.card--category .card__image {
  aspect-ratio: 4/3;
}
.card--category .card__title {
  margin-bottom: 8px;
}

.card--brand {
  position: relative;
}
.card--brand .card__image {
  aspect-ratio: 16/9;
}
.card--brand .card__content {
  border-top: 4px solid #23486A;
}

.card--brand-wasatch .card__content {
  border-color: #4C7FA3;
}

.card--brand-peachtacular .card__content {
  border-color: #F4A261;
}

.card--brand-tabletop .card__content {
  border-color: #B58A3C;
}

.brands-section .card--brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.brands-section .card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.brands-section .card__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.brands-section .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.site-header__menu .menu-item-has-children {
  position: relative;
}
.site-header__menu .menu-item-has-children > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.75em;
}
.site-header__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  display: none;
  min-width: 220px;
  padding: 8px;
  background-color: #FFFFFF;
  border: 1px solid rgba(48, 52, 63, 0.1);
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 30px rgba(48, 52, 63, 0.1);
          box-shadow: 0 10px 30px rgba(48, 52, 63, 0.1);
}
.site-header__menu .sub-menu li {
  width: 100%;
}
.site-header__menu .sub-menu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}
.site-header__menu .sub-menu a:hover {
  background-color: #F8F7F4;
}
.site-header__menu .menu-item-has-children:hover > .sub-menu,
.site-header__menu .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

@media (max-width: 768px) {
  .site-header__menu .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    margin-left: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .site-header__menu .sub-menu a {
    padding-left: 24px;
    font-size: 0.9rem;
  }
}
.site-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

body {
  padding-top: 117px;
}

body.admin-bar .site-header-wrapper {
  top: 32px;
}

.announcement-bar {
  background-color: #23486A;
  color: #FFFFFF;
  padding: 10px 0;
  text-align: center;
}
.announcement-bar p {
  margin: 0;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
}

.site-header {
  position: relative;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(48, 52, 63, 0.1);
}

.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 80px;
}

.site-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.site-header img.site-header__logo-image {
  display: block;
  width: auto;
  height: 55px;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}

.site-header__navigation {
  margin-left: auto;
  margin-right: 32px;
}

.site-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__menu li {
  margin: 0;
}
.site-header__menu a {
  display: block;
  padding: 8px 0;
  color: #30343F;
  font-size: 0.95rem;
  font-weight: 500;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.site-header__menu a:hover {
  color: #23486A;
}
.site-header__menu .current-menu-item > a {
  color: #23486A;
  font-weight: 600;
}

.site-header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.site-header__cart {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 16px;
  background-color: #23486A;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.site-header__cart:hover {
  background-color: #5B84B1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.site-header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.site-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background-color: #23486A;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}

@media (max-width: 992px) {
  .site-header__navigation {
    margin-right: 16px;
  }
  .site-header__menu {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .site-header img.site-header__logo-image {
    height: 45px;
  }
  body {
    padding-top: 107px;
  }
  body.admin-bar .site-header-wrapper {
    top: 46px;
  }
  .site-header__inner {
    position: relative;
    min-height: 70px;
  }
  .site-header__toggle {
    display: block;
  }
  .site-header__navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    background-color: #FFFFFF;
    border-top: 1px solid rgba(48, 52, 63, 0.1);
    border-bottom: 1px solid rgba(48, 52, 63, 0.1);
    -webkit-box-shadow: 0 8px 20px rgba(48, 52, 63, 0.08);
            box-shadow: 0 8px 20px rgba(48, 52, 63, 0.08);
  }
  .site-header__navigation.is-open {
    display: block;
  }
  .site-header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    padding: 16px;
  }
  .site-header__menu li {
    width: 100%;
  }
  .site-header__menu a {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
  }
  .site-header__menu a:hover {
    background-color: #F8F7F4;
  }
  .site-header__cart {
    padding: 8px 12px;
  }
}
.site-footer {
  margin-top: 96px;
  background-color: #23486A;
  color: #FFFFFF;
}

.site-footer__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 48px 1fr 48px 1fr 48px 1.5fr;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-block: 64px;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.site-footer__description {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.site-footer__heading {
  margin-bottom: 16px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer__menu,
.site-footer__brand-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__menu a,
.site-footer__brand-list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.site-footer__menu a:hover,
.site-footer__brand-list a:hover {
  color: #FFFFFF;
}

.site-footer__contact p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__button {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.site-footer__button:hover {
  background-color: #FFFFFF;
  color: #23486A;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-block: 16px;
  text-align: center;
}
.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .site-footer__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-footer__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__brand,
  .site-footer__navigation,
  .site-footer__brands,
  .site-footer__contact {
    text-align: center;
  }
  .site-footer__description {
    margin-inline: auto;
  }
  .site-footer__menu,
  .site-footer__brand-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hero {
  padding-block: 96px;
  background-color: #F8F7F4;
}

.hero__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 64px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  margin-bottom: 16px;
  color: #5B84B1;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  margin-bottom: 24px;
}

.hero__text {
  max-width: 520px;
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.hero__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-radius: 16px;
}

.hero__image {
  display: block;
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading__eyebrow {
  margin-bottom: 8px;
  color: #5B84B1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading__title {
  margin-bottom: 16px;
}

.section-heading__text {
  font-size: 1.05rem;
  line-height: 1.7;
}

.featured-categories {
  background-color: #FFFFFF;
}

.featured-categories__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.image-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-color: #5B84B1;
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
}

.category-carousel {
  padding-block: 64px;
  background-color: #FFFFFF;
  overflow: hidden;
}

.category-carousel__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.category-carousel__title {
  margin: 0;
}

.category-carousel__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.category-carousel__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: #F8F7F4;
  color: #23486A;
  border: 0;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.category-carousel__button:hover {
  background-color: #5B84B1;
  color: #FFFFFF;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.category-carousel__viewport {
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x proximity;
      scroll-snap-type: x proximity;
}
.category-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.category-carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 24px;
}

.category-tile {
  display: block;
  width: 190px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #30343F;
  text-align: center;
  scroll-snap-align: start;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.category-tile:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.category-tile:hover .category-tile__image {
  -webkit-box-shadow: 0 8px 24px rgba(48, 52, 63, 0.12);
          box-shadow: 0 8px 24px rgba(48, 52, 63, 0.12);
}

.category-tile__image {
  width: 190px;
  height: 190px;
  margin-bottom: 16px;
  overflow: hidden;
  background-color: #F8F7F4;
  border-radius: 16px;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.category-tile__image img,
.category-tile__image .image-placeholder {
  width: 100%;
  height: 100%;
}
.category-tile__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.category-tile__name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.best-sellers {
  background-color: #F8F7F4;
}

.best-sellers__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.best-sellers__title {
  margin: 0;
}

.best-sellers__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 900px;
  margin-inline: auto;
}

.best-sellers__empty {
  grid-column: 1/-1;
  padding: 48px;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 16px;
}

.brands-section {
  background-color: #FFFFFF;
}

.brands-section__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.brands-section .card--brand {
  height: 100%;
}
.brands-section .card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.brands-section .card__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.why-us {
  background-color: #F8F7F4;
}

.why-us__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.why-us__item {
  text-align: center;
  padding: 32px;
}

.why-us__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background-color: rgba(91, 132, 177, 0.12);
  color: #23486A;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
}

.why-us__title {
  margin-bottom: 16px;
  color: #23486A;
  font-size: 1.15rem;
}

.why-us__text {
  color: #30343F;
  font-size: 0.95rem;
  line-height: 1.7;
}

.reviews-section {
  background-color: #FFFFFF;
}

.reviews-section__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.review-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 280px;
  padding: 32px;
  background-color: #F8F7F4;
  border: 1px solid rgba(48, 52, 63, 0.08);
  border-radius: 16px;
}

.review-card__stars {
  margin-bottom: 24px;
  color: #B58A3C;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.review-card__quote {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 0 32px;
  color: #30343F;
  font-size: 1.05rem;
  line-height: 1.7;
}

.review-card__footer {
  padding-top: 16px;
  border-top: 1px solid rgba(48, 52, 63, 0.1);
}

.review-card__author {
  margin-bottom: 4px;
  color: #23486A;
  font-weight: 700;
}

.review-card__product {
  margin: 0;
  color: #5B84B1;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .hero__inner {
    gap: 32px;
  }
  .hero__image {
    height: 340px;
  }
  .featured-categories__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .best-sellers__grid {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .why-us__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-section__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .review-card:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-block: 64px;
  }
  .hero__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .hero__content {
    max-width: none;
  }
  .hero__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__media {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .hero__image {
    height: 260px;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .featured-categories__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .category-carousel {
    padding-block: 48px;
  }
  .category-carousel__controls {
    display: none;
  }
  .category-tile {
    width: 145px;
  }
  .category-tile__image {
    width: 145px;
    height: 145px;
  }
  .best-sellers__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 32px;
  }
  .best-sellers__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }
  .best-sellers__grid .card--product {
    display: none;
  }
  .best-sellers__grid .card--product:first-child {
    display: block;
  }
  .brands-section__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-inline: auto;
  }
  .why-us__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .why-us__item {
    max-width: 320px;
    margin-inline: auto;
  }
  .reviews-section__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }
  .review-card {
    min-height: 250px;
  }
  .review-card:not(:first-child) {
    display: none;
  }
}
.shop-intro {
  max-width: 700px;
  margin: 64px auto 48px;
  text-align: center;
}

.shop-intro__eyebrow {
  margin-bottom: 8px;
  color: #5B84B1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-intro__title {
  margin-bottom: 16px;
}

.shop-intro__text {
  font-size: 1.05rem;
  line-height: 1.7;
}

.woocommerce-shop .site-main,
.woocommerce-shop main,
.tax-product_cat .site-main,
.tax-product_cat main {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  padding-top: 96px;
  padding-bottom: 96px;
}

.woocommerce ul.products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0;
  padding: 0;
}
.woocommerce ul.products::before, .woocommerce ul.products::after {
  display: none;
}
.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  float: none;
}
.woocommerce ul.products li.product .price {
  margin-bottom: 16px;
  color: #23486A;
  font-size: 1rem;
  font-weight: 700;
}
.woocommerce ul.products li.product .price ins {
  color: #23486A;
  text-decoration: none;
}
.woocommerce ul.products li.product .price del {
  color: rgba(48, 52, 63, 0.55);
  font-weight: 400;
}
.woocommerce ul.products li.product .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  padding: 10px 18px;
  background-color: #23486A;
  color: #FFFFFF;
  border: 2px solid #23486A;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.woocommerce ul.products li.product .button:hover {
  background-color: #5B84B1;
  border-color: #5B84B1;
  color: #FFFFFF;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.shop-filters {
  margin-bottom: 48px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid rgba(48, 52, 63, 0.08);
  border-radius: 16px;
}

.shop-filters__group + .shop-filters__group {
  margin-top: 32px;
}

.shop-filters__heading {
  margin-bottom: 16px;
  color: #23486A;
  font-size: 1.1rem;
  font-weight: 700;
}

.shop-filters__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.shop-filter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 9px 16px;
  background-color: #F8F7F4;
  color: #30343F;
  border: 1px solid rgba(48, 52, 63, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.shop-filter:hover {
  background-color: #5B84B1;
  color: #FFFFFF;
  border-color: #5B84B1;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.shop-filter.is-active {
  background-color: #23486A;
  color: #FFFFFF;
  border-color: #23486A;
}

.shop-filter--brand[href*=wasatch-plastics] {
  border-color: #4C7FA3;
}
.shop-filter--brand[href*=peachtacular-studios] {
  border-color: #F4A261;
}
.shop-filter--brand[href*=tabletop-crafts] {
  border-color: #B58A3C;
}

@media (max-width: 992px) {
  .woocommerce ul.products {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .woocommerce ul.products {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }
  .shop-filters {
    padding: 24px;
  }
  .shop-filter {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}
.single-product .site-main,
.single-product main {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  padding-top: 64px;
  padding-bottom: 96px;
}
.single-product div.product {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.1fr) 64px minmax(0, 0.9fr);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  -webkit-column-gap: 64px;
     -moz-column-gap: 64px;
          column-gap: 64px;
  row-gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.single-product .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.single-product .woocommerce-product-gallery__wrapper {
  margin: 0;
}
.single-product .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.single-product .summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.single-product .product_title {
  margin: 0 0 16px;
  color: #23486A;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}
.single-product .summary .price {
  margin-bottom: 32px;
  color: #23486A !important;
  font-size: 1.4rem;
  font-weight: 700;
}
.single-product .woocommerce-product-details__short-description {
  margin-bottom: 32px;
  line-height: 1.7;
}
.single-product form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.single-product .quantity .qty {
  width: 64px;
  padding: 12px 8px;
  background-color: #FFFFFF;
  border: 1px solid rgba(48, 52, 63, 0.2);
  border-radius: 10px;
  text-align: center;
}
.single-product div.product form.cart .button {
  min-height: 46px;
  padding: 10px 22px;
  background-color: #23486A;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.single-product div.product form.cart .button:hover {
  background-color: #5B84B1;
  color: #FFFFFF;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.single-product .product_meta {
  padding-top: 24px;
  border-top: 1px solid rgba(48, 52, 63, 0.1);
  color: #30343F;
  font-size: 0.9rem;
  line-height: 1.8;
}
.single-product .product_meta a {
  color: #23486A;
  font-weight: 600;
}
.single-product .product_meta a:hover {
  color: #5B84B1;
}
.single-product .woocommerce-tabs,
.single-product .related,
.single-product .upsells {
  grid-column: 1/-1;
}
.single-product .woocommerce-tabs {
  margin-top: 32px;
}
.single-product .woocommerce-tabs {
  grid-column: 1/-1;
  margin-top: 32px;
}
.single-product .woocommerce-tabs ul.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin: 0 0 32px;
  padding: 0;
  border-bottom: 1px solid rgba(48, 52, 63, 0.12);
  list-style: none;
}
.single-product .woocommerce-tabs ul.tabs::before, .single-product .woocommerce-tabs ul.tabs::after {
  display: none;
}
.single-product .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li::before, .single-product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 12px 18px;
  color: #30343F;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.single-product .woocommerce-tabs ul.tabs li a:hover {
  color: #23486A;
}
.single-product .woocommerce-tabs ul.tabs li.active a {
  color: #23486A;
  border-bottom-color: #23486A;
}
.single-product .woocommerce-Tabs-panel {
  max-width: 850px;
  margin-inline: auto;
}
.single-product .woocommerce-Tabs-panel h2 {
  margin-bottom: 24px;
}
.single-product .woocommerce-Tabs-panel p {
  line-height: 1.7;
}
.single-product #reviews {
  max-width: 850px;
  margin-inline: auto;
}
.single-product #reviews #comments {
  margin-bottom: 48px;
}
.single-product #reviews h2 {
  margin-bottom: 24px;
}
.single-product #review_form_wrapper {
  padding: 32px;
  background-color: #F8F7F4;
  border-radius: 16px;
}
.single-product .comment-form {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.single-product .comment-form label {
  display: block;
  margin-bottom: 8px;
  color: #23486A;
  font-weight: 600;
}
.single-product .comment-form textarea,
.single-product .comment-form input[type=text],
.single-product .comment-form input[type=email] {
  width: 100%;
  padding: 12px 14px;
  background-color: #FFFFFF;
  border: 1px solid rgba(48, 52, 63, 0.2);
  border-radius: 10px;
}
.single-product .comment-form textarea:focus,
.single-product .comment-form input[type=text]:focus,
.single-product .comment-form input[type=email]:focus {
  outline: 2px solid rgba(91, 132, 177, 0.35);
  border-color: #5B84B1;
}
.single-product .comment-form textarea {
  min-height: 140px;
  resize: vertical;
}
.single-product .comment-form .submit {
  padding: 12px 22px;
  background-color: #23486A;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.single-product .comment-form .submit:hover {
  background-color: #5B84B1;
}
.single-product .comment-form-rating .stars a {
  color: #B58A3C;
}
.single-product .related.products,
.single-product .upsells.products {
  grid-column: 1/-1;
  margin-top: 64px;
}
.single-product .related.products h2,
.single-product .upsells.products h2 {
  margin-bottom: 32px;
  color: #23486A;
  text-align: center;
}
.single-product .related.products ul.products,
.single-product .upsells.products ul.products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0;
  padding: 0;
}
.single-product .related.products ul.products::before, .single-product .related.products ul.products::after,
.single-product .upsells.products ul.products::before,
.single-product .upsells.products ul.products::after {
  display: none;
}
.single-product .related.products ul.products li.product,
.single-product .upsells.products ul.products li.product {
  width: auto;
  margin: 0;
  float: none;
}
.single-product .related.products ul.products li.product .woocommerce-loop-product__title,
.single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
  color: #23486A;
  font-size: 1.1rem;
}
.single-product .related.products ul.products li.product .price,
.single-product .upsells.products ul.products li.product .price {
  color: #23486A;
  font-size: 1rem;
  font-weight: 700;
}
.single-product .related.products ul.products li.product .button,
.single-product .upsells.products ul.products li.product .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  padding: 10px 18px;
  background-color: #23486A;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.single-product .related.products ul.products li.product .button:hover,
.single-product .upsells.products ul.products li.product .button:hover {
  background-color: #5B84B1;
  color: #FFFFFF;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.single-product div.product {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.05fr) 64px minmax(0, 0.95fr);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-block: 96px;
}
.single-product .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.single-product .woocommerce-product-gallery__wrapper {
  overflow: hidden;
  border-radius: 16px;
  background-color: #FFFFFF;
}
.single-product .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product .flex-control-thumbs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px !important;
}
.single-product .flex-control-thumbs li {
  width: 100% !important;
}
.single-product .flex-control-thumbs li img {
  border-radius: 10px;
  opacity: 0.65;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.single-product .flex-control-thumbs li img:hover, .single-product .flex-control-thumbs li img.flex-active {
  opacity: 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.single-product .summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.single-product .product_title {
  margin-bottom: 16px;
  color: #23486A;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}
.single-product .price {
  margin-bottom: 32px;
  color: #23486A;
  font-size: 1.5rem;
  font-weight: 700;
}
.single-product .woocommerce-product-details__short-description {
  margin-bottom: 48px;
  color: #30343F;
  line-height: 1.7;
}
.single-product form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 48px !important;
}
.single-product .quantity .qty {
  min-height: 48px;
  width: 72px;
  padding-inline: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  text-align: center;
}
.single-product .single_add_to_cart_button {
  min-height: 48px;
  padding-inline: 48px !important;
  background-color: #23486A !important;
  color: #FFFFFF !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.single-product .single_add_to_cart_button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.9;
}
.single-product .product_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #30343F;
  font-size: 0.9rem;
}
.single-product .product_meta a {
  color: #23486A;
  text-decoration: none;
}
.single-product .product_meta a:hover {
  text-decoration: underline;
}
.single-product .woocommerce-tabs {
  grid-column: 1/-1;
  margin-top: 64px;
}
.single-product .woocommerce-tabs ul.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  padding: 0 !important;
  margin-bottom: 48px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.single-product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}
.single-product .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 0 16px !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li::before, .single-product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
  color: #30343F !important;
  font-weight: 600 !important;
  text-decoration: none;
}
.single-product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid #23486A !important;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
  max-width: 850px;
  line-height: 1.7;
}
.single-product .related.products {
  grid-column: 1/-1;
  margin-top: 96px;
}
.single-product .related.products > h2 {
  margin-bottom: 48px;
  color: #23486A;
}
.single-product .related.products ul.products {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 992px) {
  .single-product .related.products ul.products,
  .single-product .upsells.products ul.products {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .single-product div.product {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .single-product .related.products ul.products {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .single-product div.product {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .single-product .product_title {
    font-size: 2rem;
  }
  .single-product form.cart {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-product .quantity .qty {
    width: 100%;
  }
  .single-product div.product form.cart .button {
    width: 100%;
  }
  .single-product .related.products ul.products,
  .single-product .upsells.products ul.products {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }
  .single-product form.cart {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .single-product .single_add_to_cart_button {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .single-product .woocommerce-tabs ul.tabs {
    gap: 24px;
    overflow-x: auto;
  }
}

.woocommerce-cart .site-main,
.woocommerce-cart main {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  padding-top: 64px;
  padding-bottom: 96px;
}
.woocommerce-cart .woocommerce {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 2fr) 48px minmax(280px, 1fr);
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.woocommerce-cart table.shop_table {
  width: 100%;
  margin: 0;
  background-color: #FFFFFF;
  border: 1px solid rgba(48, 52, 63, 0.1);
  border-radius: 16px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  padding: 16px;
  border-color: rgba(48, 52, 63, 0.08);
}
.woocommerce-cart table.shop_table th {
  color: #23486A;
  font-weight: 700;
}
.woocommerce-cart .product-name a {
  color: #23486A;
  font-weight: 600;
}
.woocommerce-cart .product-name a:hover {
  color: #5B84B1;
}
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
  color: #23486A;
  font-weight: 700;
}
.woocommerce-cart .quantity .qty {
  width: 70px;
  padding: 10px;
  background-color: #FFFFFF;
  border: 1px solid rgba(48, 52, 63, 0.2);
  border-radius: 10px;
  text-align: center;
}
.woocommerce-cart .actions .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.woocommerce-cart .actions input[type=text] {
  min-width: 180px;
  padding: 10px 12px;
  border: 1px solid rgba(48, 52, 63, 0.2);
  border-radius: 10px;
}
.woocommerce-cart .actions button.button {
  padding: 10px 18px;
  background-color: #23486A;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.woocommerce-cart .actions button.button:hover {
  background-color: #5B84B1;
  color: #FFFFFF;
}
.woocommerce-cart .cart-collaterals {
  width: 100%;
}
.woocommerce-cart .cart_totals {
  width: 100% !important;
  padding: 32px;
  background-color: #F8F7F4;
  border-radius: 16px;
}
.woocommerce-cart .cart_totals h2 {
  margin-bottom: 24px;
  color: #23486A;
}
.woocommerce-cart .cart_totals table {
  width: 100%;
  margin-bottom: 24px;
}
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  padding: 10px 0;
  border-color: rgba(48, 52, 63, 0.1);
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background-color: #23486A;
  color: #FFFFFF;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #5B84B1;
  color: #FFFFFF;
}
.woocommerce-cart .wc-block-cart__submit-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background-color: #23486A;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.woocommerce-cart .wc-block-cart__submit-button:hover {
  background-color: #5B84B1;
  color: #FFFFFF;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.woocommerce-cart .wc-block-cart__submit-button:focus {
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .woocommerce-cart .woocommerce-cart .woocommerce {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .woocommerce-cart .woocommerce-cart .site-main,
  .woocommerce-cart .woocommerce-cart main {
    padding-top: 48px;
  }
  .woocommerce-cart .woocommerce-cart table.shop_table th,
  .woocommerce-cart .woocommerce-cart table.shop_table td {
    padding: 10px;
  }
  .woocommerce-cart .woocommerce-cart .actions .coupon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .woocommerce-cart .woocommerce-cart .actions input[type=text],
  .woocommerce-cart .woocommerce-cart .actions button.button {
    width: 100%;
  }
}

.woocommerce-checkout .site-main,
.woocommerce-checkout main {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  padding-top: 64px;
  padding-bottom: 96px;
}
.woocommerce-checkout h2,
.woocommerce-checkout h3 {
  color: #23486A;
}
.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border-radius: 10px;
}
.woocommerce-checkout .wc-block-components-button {
  background-color: #23486A;
  color: #FFFFFF;
  border-radius: 10px;
  font-weight: 600;
}
.woocommerce-checkout .wc-block-components-button:hover {
  background-color: #5B84B1;
  color: #FFFFFF;
}

.brands-page {
  padding-top: 64px;
  padding-bottom: 96px;
}

.brands-page__header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.brands-page__eyebrow {
  margin-bottom: 8px;
  color: #5B84B1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brands-page__title {
  margin-bottom: 16px;
  color: #23486A;
}

.brands-page__intro {
  font-size: 1.05rem;
  line-height: 1.7;
}

.brands-page__grid {
  display: -ms-grid;
  display: grid;
  gap: 48px;
}

.brand-feature {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid rgba(48, 52, 63, 0.08);
  border-radius: 16px;
}

.brand-feature__image {
  min-height: 350px;
  overflow: hidden;
  background-color: #F8F7F4;
}

.brand-feature__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.brand-feature__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 48px;
}
.brand-feature__content h2 {
  margin-bottom: 16px;
  color: #23486A;
}
.brand-feature__content p {
  margin-bottom: 32px;
  line-height: 1.7;
}

.brand-feature:nth-child(even) .brand-feature__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.brand-feature:nth-child(even) .brand-feature__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.brand-page {
  --brand-color: #23486A;
  --brand-secondary: #5B84B1;
}

.brand-page--wasatch {
  --brand-color: #4C7FA3;
}

.brand-page--peachtacular {
  --brand-color: #F4A261;
}

.brand-page--tabletop {
  --brand-color: #B58A3C;
}

.brand-page .hero__eyebrow {
  color: var(--brand-color);
}
.brand-page .btn-primary {
  background-color: var(--brand-color);
}
.brand-page .btn-primary:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.brand-page .section-heading__eyebrow {
  color: var(--brand-color);
}

@media (max-width: 768px) {
  .brands-page {
    padding-top: 48px;
  }
  .brand-feature {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .brand-feature__image {
    min-height: 220px;
  }
  .brand-feature__photo {
    min-height: 220px;
    height: 220px;
  }
  .brand-feature__content {
    padding: 32px;
  }
  .brand-feature:nth-child(even) .brand-feature__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .brand-feature:nth-child(even) .brand-feature__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.brand-page {
  --brand-color: #23486A;
  --brand-secondary: #5B84B1;
}

.brand-page--wasatch {
  --brand-color: #4C7FA3;
}

.brand-page--peachtacular {
  --brand-color: #F4A261;
}

.brand-page--tabletop {
  --brand-color: #B58A3C;
}

.brand-hero__button,
.brand-product__button {
  background-color: var(--brand-color);
  color: #FFFFFF;
  border: 2px solid var(--brand-color);
}
.brand-hero__button:hover,
.brand-product__button:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  color: #FFFFFF;
}

.brand-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/767;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
  background-color: var(--brand-color);
  overflow: hidden;
}

.brand-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.brand-hero__content {
  max-width: 600px;
  padding: 48px;
  background-color: rgba(248, 247, 244, 0.92);
  border-left: 6px solid var(--brand-color);
  border-radius: 16px;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.brand-hero__eyebrow {
  margin-bottom: 16px;
  color: var(--brand-color);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-hero__title {
  margin-bottom: 24px;
  color: #23486A;
}

.brand-hero__text {
  margin-bottom: 32px;
  color: #30343F;
  font-size: 1.05rem;
  line-height: 1.7;
}

.brand-page--peachtacular .brand-hero__content {
  display: none;
}

.brand-intro {
  padding-block: 64px;
  background-color: #F8F7F4;
}

.brand-intro__inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.brand-intro__title {
  margin-bottom: 24px;
  color: #23486A;
}

.brand-intro__text {
  max-width: 650px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.brand-products {
  padding-block: 96px;
  background-color: #FFFFFF;
}
.brand-products .section-heading__eyebrow {
  color: var(--brand-color);
}

.brand-products__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1000px;
  margin-inline: auto;
  gap: 32px;
}

.brand-products__empty {
  grid-column: 1/-1;
  text-align: center;
}

.brand-categories {
  padding-block: 96px;
  background-color: #FFFFFF;
}
.brand-categories .section-heading__eyebrow {
  color: var(--brand-color);
}

.brand-categories__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.brand-categories__title {
  margin: 0;
  color: #23486A;
}

.brand-page .category-carousel__button:hover {
  background-color: var(--brand-color);
  border-color: var(--brand-color);
  color: #FFFFFF;
}
.brand-page .category-tile__image {
  border-bottom: 4px solid var(--brand-color);
}
.brand-page .category-tile__name {
  color: var(--brand-color);
}
.brand-page .category-tile:hover .category-tile__image {
  -webkit-box-shadow: 0 8px 24px rgba(48, 52, 63, 0.12);
          box-shadow: 0 8px 24px rgba(48, 52, 63, 0.12);
}

.brand-story {
  padding-block: 96px;
  background-color: #F8F7F4;
}
.brand-story .section-heading__eyebrow {
  color: var(--brand-color);
}

.brand-story__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 64px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.brand-story__media {
  overflow: hidden;
  border-radius: 16px;
}

.brand-story__image {
  display: block;
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.brand-story__title {
  margin-bottom: 24px;
  color: #23486A;
}

.brand-story__text {
  margin-bottom: 16px;
  line-height: 1.7;
}

.brand-more-products {
  padding-block: 96px;
}

.brand-more-products__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.brand-mini-card {
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.brand-mini-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.brand-mini-card__image {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #F8F7F4;
}
.brand-mini-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.brand-mini-card__image:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.brand-mini-card__content {
  padding: 24px;
}

.brand-mini-card__title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.3;
}
.brand-mini-card__title a {
  color: #30343F;
  text-decoration: none;
}
.brand-mini-card__title a:hover {
  color: var(--brand-color);
}

.brand-mini-card__price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-color);
}

.brand-more-products__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}

.brand-reviews {
  padding-block: 96px;
  background-color: #F8F7F4;
}

.brand-reviews__heading {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
}
.brand-reviews__heading .section-heading__eyebrow {
  color: var(--brand-color);
}

.brand-reviews__intro {
  margin-top: 16px;
  line-height: 1.6;
}

.brand-reviews__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 48px;
  background-color: #FFFFFF;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.review-card__stars {
  margin-bottom: 24px;
  color: var(--brand-color);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.review-card__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 0 32px;
  padding: 0;
  color: #30343F;
  font-size: 1rem;
  line-height: 1.7;
  border: 0;
}

.review-card__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #30343F;
}

@media (max-width: 992px) {
  .brand-hero__inner {
    gap: 32px;
  }
  .brand-products__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-more-products__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-hero__image {
    height: 340px;
  }
  .brand-hero {
    min-height: 600px;
  }
}
@media (max-width: 768px) {
  .brand-hero {
    padding-block: 64px;
  }
  .brand-hero {
    min-height: 520px;
    padding-block: 64px;
    background-attachment: scroll;
    background-size: 100% auto;
  }
  .brand-hero__content {
    width: 100%;
    padding: 32px;
  }
  .brand-hero__button {
    width: 100%;
  }
  .brand-story__image {
    height: 240px;
  }
  .brand-hero__button {
    width: 100%;
  }
  .brand-products__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .brand-categories__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .brand-story__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .brand-more-products__grid {
    gap: 24px;
  }
  .brand-mini-card__content {
    padding: 16px;
  }
  .brand-mini-card__title {
    font-size: 0.9rem;
  }
  .brand-reviews__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.custom-printing-page {
  overflow: hidden;
}

.custom-printing-hero {
  padding-block: 96px;
  background-color: #F8F7F4;
}

.custom-printing-hero__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 64px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.custom-printing-hero__title {
  max-width: 650px;
  margin-bottom: 24px;
  color: #23486A;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.custom-printing-hero__text {
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.custom-printing-hero__media {
  overflow: hidden;
  border-radius: 16px;
}

.custom-printing-hero__image {
  display: block;
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.custom-process {
  padding-block: 96px;
}

.custom-process__heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.custom-process__intro {
  margin-top: 16px;
  line-height: 1.7;
}

.custom-process__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.custom-process-card {
  padding: 48px;
  background-color: #FFFFFF;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.custom-process-card__number {
  display: block;
  margin-bottom: 32px;
  color: #5B84B1;
  font-size: 2rem;
  font-weight: 700;
}

.custom-process-card__title {
  margin-bottom: 16px;
  color: #23486A;
}

.custom-process-card__text {
  margin: 0;
  line-height: 1.7;
}

.custom-options {
  padding-block: 96px;
  background-color: #F8F7F4;
}

.custom-options__heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.custom-options__intro {
  margin-top: 16px;
  line-height: 1.7;
}

.custom-options__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.custom-option-card {
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.custom-option-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.custom-option-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.custom-option-card__image .image-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-color: #5B84B1;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
}

.custom-option-card__content {
  padding: 32px;
}

.custom-option-card__title {
  margin-bottom: 8px;
  color: #23486A;
}

.custom-option-card__text {
  margin: 0;
  line-height: 1.6;
}

.custom-info {
  padding-block: 96px;
}

.custom-info__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.3fr) 64px minmax(280px, 0.7fr);
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 64px;
}

.custom-info__title {
  margin-bottom: 24px;
  color: #23486A;
}

.custom-info__text {
  max-width: 700px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.custom-info__list {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.custom-info__note {
  padding: 48px;
  background-color: #F8F7F4;
  border-radius: 16px;
  border-left: 4px solid #5B84B1;
}
.custom-info__note p {
  margin-bottom: 0;
  line-height: 1.7;
}

.custom-info__note-title {
  margin-bottom: 16px;
  color: #23486A;
}

.custom-printing-cta {
  padding-block: 96px;
  background-color: #F8F7F4;
}

.custom-printing-cta__inner {
  max-width: 1000px;
  margin-inline: auto;
  padding: 96px 48px;
  background-color: #466f96;
  border-radius: 16px;
  text-align: center;
}
.custom-printing-cta__inner .section-heading__eyebrow {
  color: #FFFFFF;
}

.custom-printing-cta__title {
  margin-bottom: 24px;
  color: #FFFFFF;
}

.custom-printing-cta__text {
  max-width: 600px;
  margin: 0 auto 48px;
  color: #FFFFFF;
  line-height: 1.7;
}

.custom-printing-cta__button {
  background-color: #FFFFFF;
  color: #23486A;
}
.custom-printing-cta__button:hover {
  background-color: #F8F7F4;
  color: #23486A;
}

@media (max-width: 900px) {
  .custom-printing-hero__inner,
  .custom-info__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .custom-process__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .custom-options__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .custom-printing-hero__image {
    height: 320px;
  }
}
@media (max-width: 550px) {
  .custom-options__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .custom-printing-hero__title {
    font-size: 2.5rem;
  }
  .custom-printing-hero__image {
    height: 260px;
  }
}
.about-page {
  background-color: #F8F7F4;
}

.about-hero {
  padding-block: 96px;
}

.about-hero__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 64px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.about-hero__title {
  max-width: 650px;
  margin-bottom: 24px;
  color: #23486A;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.about-hero__text {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-hero__media {
  overflow: hidden;
  border-radius: 16px;
}

.about-hero__image {
  display: block;
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.about-story {
  padding-block: 96px;
  background-color: #FFFFFF;
}

.about-story__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 64px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.about-story__media {
  overflow: hidden;
  border-radius: 16px;
}

.about-story__image {
  display: block;
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.about-story__title {
  margin-bottom: 24px;
  color: #23486A;
}

.about-story__text {
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-brands {
  padding-block: 96px;
}

.about-brands__heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.about-brands__intro {
  margin-top: 16px;
  line-height: 1.7;
}

.about-brands__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.about-brand-card {
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.about-brand-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-brand-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.about-brand-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-brand-card__content {
  padding: 32px;
}

.about-brand-card__title {
  margin-bottom: 8px;
  color: #23486A;
}

.about-brand-card__text {
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-brand-card__link {
  font-weight: 600;
  color: #23486A;
  text-decoration: none;
}
.about-brand-card__link:hover {
  text-decoration: underline;
}

.about-values {
  padding-block: 96px;
  background-color: #FFFFFF;
}

.about-values__heading {
  margin-bottom: 48px;
}

.about-values__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-value {
  padding: 48px;
  background-color: #F8F7F4;
  border-radius: 16px;
}

.about-value__number {
  display: block;
  margin-bottom: 32px;
  color: #5B84B1;
  font-size: 2rem;
  font-weight: 700;
}

.about-value__title {
  margin-bottom: 16px;
  color: #23486A;
}

.about-value__text {
  margin: 0;
  line-height: 1.7;
}

.about-cta {
  padding-block: 96px;
}

.about-cta__card {
  max-width: 1000px;
  margin-inline: auto;
  padding: 96px 48px;
  background-color: #466f96;
  color: #FFFFFF;
  border-radius: 16px;
  text-align: center;
}
.about-cta__card .section-heading__eyebrow {
  color: #FFFFFF;
}

.about-cta__title {
  margin-bottom: 24px;
  color: #FFFFFF;
}

.about-cta__text {
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.about-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.about-cta__button {
  background-color: #FFFFFF;
  color: #23486A;
}

.about-cta__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

@media (max-width: 900px) {
  .about-hero__inner,
  .about-story__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .about-brands__grid,
  .about-values__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .about-hero__image,
  .about-story__image {
    height: 300px;
  }
}
@media (max-width: 550px) {
  .about-hero__title {
    font-size: 2.5rem;
  }
  .about-cta__card {
    padding: 64px 32px;
  }
  .about-cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.contact-page {
  background-color: #F8F7F4;
}

.contact-hero {
  padding-block: 96px 64px;
}

.contact-hero__inner {
  max-width: 900px;
}

.contact-hero__title {
  max-width: 850px;
  margin-bottom: 24px;
  color: #23486A;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.contact-hero__text {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-main {
  padding-bottom: 96px;
}

.contact-main__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.8fr 64px 1.2fr;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.contact-info {
  padding-top: 24px;
}

.contact-info__title {
  margin-bottom: 24px;
  color: #23486A;
}

.contact-info__text {
  max-width: 500px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.contact-info__items {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

.contact-info__item {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(48, 52, 63, 0.15);
}
.contact-info__item:last-child {
  border-bottom: 0;
}
.contact-info__item p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.contact-info__label {
  color: #23486A;
  font-weight: 700;
}

.contact-form-card {
  padding: 48px;
  background-color: #FFFFFF;
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-card__title {
  margin-bottom: 16px;
  color: #23486A;
}

.contact-form-card__intro {
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-form__placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 360px;
  padding: 32px;
  background-color: #F8F7F4;
  border: 2px dashed rgba(35, 72, 106, 0.25);
  border-radius: 12px;
  color: #23486A;
  font-weight: 600;
  text-align: center;
}

.contact-form .wpforms-container {
  margin: 0;
}
.contact-form .wpforms-field {
  padding-block: 16px;
}
.contact-form .wpforms-field-label {
  margin-bottom: 8px;
  color: #23486A;
  font-size: 0.95rem;
  font-weight: 600;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form select,
.contact-form textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  background-color: #FFFFFF !important;
  color: #30343F !important;
  border: 1px solid rgba(48, 52, 63, 0.2) !important;
  border-radius: 10px !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 1rem !important;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #23486A !important;
  -webkit-box-shadow: 0 0 0 3px rgba(35, 72, 106, 0.1) !important;
          box-shadow: 0 0 0 3px rgba(35, 72, 106, 0.1) !important;
  outline: none !important;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form .wpforms-submit {
  padding: 12px 24px !important;
  background-color: #23486A !important;
  color: #FFFFFF !important;
  border: 2px solid #23486A !important;
  border-radius: 10px !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.contact-form .wpforms-submit:hover {
  background-color: #5B84B1 !important;
  border-color: #5B84B1 !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.contact-help {
  padding-block: 96px;
  background-color: #FFFFFF;
}

.contact-help__heading {
  margin-bottom: 48px;
}

.contact-help__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-help-card {
  padding: 48px;
  background-color: #F8F7F4;
  border-radius: 16px;
}

.contact-help-card__title {
  margin-bottom: 16px;
  color: #23486A;
}

.contact-help-card__text {
  margin: 0;
  line-height: 1.7;
}

.contact-cta {
  padding-block: 96px;
  background-color: #F8F7F4;
}

.contact-cta__card {
  max-width: 1000px;
  margin-inline: auto;
  padding: 96px 48px;
  background-color: #466f96;
  color: #FFFFFF;
  border-radius: 16px;
  text-align: center;
}
.contact-cta__card .section-heading__eyebrow {
  color: #FFFFFF;
}

.contact-cta__title {
  margin-bottom: 24px;
  color: #FFFFFF;
}

.contact-cta__text {
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.contact-cta__button {
  background-color: #FFFFFF;
  color: #23486A;
}
.contact-cta__button:hover {
  background-color: #F8F7F4;
  color: #23486A;
}

@media (max-width: 900px) {
  .contact-main__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .contact-help__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 550px) {
  .contact-hero__title {
    font-size: 2.5rem;
  }
  .contact-form-card {
    padding: 32px;
  }
  .contact-cta__card {
    padding: 64px 32px;
  }
}