/** Shopify CDN: Minification failed

Line 1423:19 Expected identifier but found whitespace
Line 1423:21 Unexpected "{"
Line 1423:30 Expected ":"
Line 1424:8 Expected identifier but found whitespace
Line 1424:10 Unexpected "{"
Line 1424:19 Expected ":"
Line 1437:2 Unexpected "{"
Line 1437:3 Expected identifier but found "%"
Line 1438:16 Expected identifier but found whitespace
Line 1438:18 Unexpected "{"
... and 21 more hidden warnings

**/


/* CSS from section stylesheet tags */
.categories {
  padding: 0.5rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: #FFFFFF;
  position: relative;
  margin-top: -1px;
}

.categories__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.categories__heading {
  font-family: "Frutiger Serif Light", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #2E2E2E;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.categories__heading.animate {
  opacity: 1;
  transform: translateY(0);
}

.categories__heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #DAE3EA;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: scaleIn 0.6s ease-out 0.8s forwards;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 2px solid #DAE3EA;
}

.category-card.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.category-card:nth-child(1).animate { animation-delay: 0.1s; }
.category-card:nth-child(2).animate { animation-delay: 0.2s; }
.category-card:nth-child(3).animate { animation-delay: 0.3s; }
.category-card:nth-child(4).animate { animation-delay: 0.4s; }
.category-card:nth-child(5).animate { animation-delay: 0.5s; }
.category-card:nth-child(6).animate { animation-delay: 0.6s; }
.category-card:nth-child(7).animate { animation-delay: 0.7s; }
.category-card:nth-child(8).animate { animation-delay: 0.8s; }
.category-card:nth-child(9).animate { animation-delay: 0.9s; }

.category-card:hover {
  transform: translateY(-8px);
}

.category-card__image {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 8px;
  box-sizing: border-box;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 8px;
}

.category-card:hover .category-card__image img {
  transform: scale(1.05);
}

.category-card__title {
  font-family: "Frutiger Serif Light", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #2E2E2E;
  text-align: center;
  padding: 1.25rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #FFFFFF;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

@media screen and (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .category-card__image {
    height: 280px;
  }
  
  .category-card__title {
    padding: 1.25rem;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .categories {
    padding: 0.5rem 0 1.5rem 0;
  }

  .categories__container {
    padding: 0 1rem;
  }

  .categories__heading {
    margin-bottom: 1.5rem;
  }

  .categories__grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    max-width: 100%;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .categories__grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 280px;
    max-width: 280px;
    scroll-snap-align: start;
    margin: 0;
  }

  .category-card__image {
    height: 250px;
  }
  
  .category-card__title {
    padding: 1.25rem;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  .categories__grid {
    gap: 1rem;
  }
  
  .category-card {
    flex: 0 0 250px;
    max-width: 250px;
  }
  
  .category-card__image {
    height: 220px;
  }
  
  .category-card__title {
    padding: 1rem;
    font-size: 1.1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}
.collection-page {
  padding: 2rem 0;
  background-color: #FFFFFF;
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.collection-page__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.collection-page__header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 1rem;
}

.collection-page__title {
  font-family: "Frutiger Serif Light", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #2E2E2E;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  position: relative;
}

.collection-page__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #DAE3EA;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: scaleIn 0.6s ease-out 0.8s forwards;
}

.collection-page__description {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.collection-page__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 2px solid #DAE3EA;
  animation: fadeInUp 0.8s ease-out forwards;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card__image {
  position: relative;
  padding-bottom: 75%;
  background-color: #DAE3EA;
  overflow: hidden;
  border-radius: 10px;
  margin: 8px;
}

.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 8px;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__content {
  padding: 1.5rem;
}

.product-card__title {
  font-family: "Frutiger Serif Light", serif;
  font-size: 1.2rem;
  color: #2E2E2E;
  margin-bottom: 0.75rem;
  font-weight: 300;
  line-height: 1.3;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-card__title a:hover {
  color: #666666;
}

.product-card__description {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-card__price {
  font-family: "Frutiger Serif Light", serif;
  font-size: 1.2rem;
  color: #2E2E2E;
  margin-bottom: 1rem;
  font-weight: 400;
}

.product-card__compare-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.product-card__buttons {
  text-align: center;
  padding-top: 0.25rem;
}

.product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: "Frutiger Serif Light", serif;
  font-size: 1rem;
  font-weight: 300;
  color: #2E2E2E;
  text-decoration: none;
  background: #DAE3EA;
  border: 1px solid #DAE3EA;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.product-card__button:hover {
  color: #FFFFFF;
  background: #2E2E2E;
  transform: translateY(-2px);
}

.collection-page__pagination {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 0;
}

.collection-page__pagination .pagination {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.collection-page__pagination .pagination a,
.collection-page__pagination .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-family: "Frutiger Serif Light", serif;
  font-size: 1rem;
  color: #2E2E2E;
  text-decoration: none;
  background: #DAE3EA;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 44px;
}

.collection-page__pagination .pagination a:hover {
  background: #2E2E2E;
  color: #FFFFFF;
}

.collection-page__pagination .pagination .current {
  background: #2E2E2E;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .collection-page__products {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-card__content {
    padding: 1.25rem;
  }
  
  .collection-page__title {
    font-size: 2rem;
  }
  
  .collection-page__description {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .collection-page__container {
    padding: 0 1rem;
  }
  
  .collection-page__products {
    gap: 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.decorative-content {
  background-color: #DAE3EA;
  padding: 4rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.decorative-content__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.decorative-content__image {
  position: relative;
}

.decorative-content__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.decorative-content__img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.decorative-content__placeholder {
  width: 100%;
  height: 400px;
  background-color: #E5E5E5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #CCC;
}

.decorative-content__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.decorative-content__heading {
  font-family: "Frutiger Serif Light", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #2E2E2E;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.decorative-content__heading.animate {
  opacity: 1;
  transform: translateY(0);
}

.decorative-content__heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease-out 0.8s;
}

.decorative-content__heading.animate::after {
  transform: scaleX(1);
}

.decorative-content__subtitle {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out 0.2s;
}

.decorative-content__subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

.decorative-content__description {
  font-family: "Frutiger Serif Light", serif;
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out 0.4s;
}

.decorative-content__description.animate {
  opacity: 1;
  transform: translateY(0);
}

.decorative-content__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #FFFFFF;
  color: #2E2E2E;
  text-decoration: none;
  font-family: "Frutiger Serif Light", serif;
  font-size: 1.1rem;
  font-weight: 400;
  border-radius: 24px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out 0.6s;
  align-self: flex-start;
}

.decorative-content__button.animate {
  opacity: 1;
  transform: translateY(0);
}

.decorative-content__button:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
}

.decorative-content__button:active {
  transform: translateY(0);
}

.decorative-content__button-icon {
  transition: transform 0.3s ease;
}

.decorative-content__button:hover .decorative-content__button-icon {
  transform: translateX(4px);
}

@media screen and (max-width: 1024px) {
  .decorative-content__container {
    gap: 3rem;
  }
  
  .decorative-content__heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }
}

@media screen and (max-width: 768px) {
  .decorative-content {
    padding: 3rem 0;
  }
  
  .decorative-content__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .decorative-content__text {
    order: -1;
  }
  
  .decorative-content__button {
    align-self: center;
  }
  
  .decorative-content__heading::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
  }
  
  .decorative-content__heading.animate::after {
    transform: translateX(-50%) scaleX(1);
  }
}

@media screen and (max-width: 480px) {
  .decorative-content__container {
    padding: 0 1rem;
  }
  
  .decorative-content__heading {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }
  
  .decorative-content__subtitle {
    font-size: 1.1rem;
  }
  
  .decorative-content__description {
    font-size: 1rem;
  }
  
  .decorative-content__button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
.featured-trunks {
  padding: 1rem 0;
  background-color: #FFFFFF;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
}

.featured-trunks__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.featured-trunks__header {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-trunks__heading {
  font-family: "Frutiger Serif Light", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #2E2E2E;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  transition: all 0.8s ease-out;
}

.featured-trunks__heading.animate {
  opacity: 1;
  transform: translateY(0);
}

.featured-trunks__heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #DAE3EA;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: scaleIn 0.6s ease-out 0.8s forwards;
}

.featured-trunks__subtitle {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.featured-trunks__subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

.featured-trunks__view-all {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: "Frutiger Serif Light", serif;
  font-size: 1rem;
  font-weight: 300;
  color: #2E2E2E;
  text-decoration: none;
  background: #DAE3EA;
  border: 2px solid #DAE3EA;
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  letter-spacing: 0.02em;
}

.featured-trunks__view-all.animate {
  opacity: 1;
  transform: translateY(0);
}

.featured-trunks__view-all:hover {
  color: #FFFFFF;
  background: #DAE3EA;
  transform: translateY(-2px);
}

.featured-trunks__button-container {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.featured-trunks__footer {
  text-align: center;
  padding-top: 2rem;
}

.featured-trunks__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #EAEAEA, transparent);
  margin: 0 auto;
}

.featured-trunks__footer-content {
  margin-top: 2rem;
  text-align: center;
}

.featured-trunks__footer-text {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-trunks__footer-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.featured-trunks__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.featured-trunks__feature-icon {
  font-size: 1.5rem;
  opacity: 0.8;
}

.featured-trunks__feature-text {
  font-family: "Frutiger Serif Light", serif;
  font-size: 0.9rem;
  color: #2E2E2E;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.featured-trunks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trunk-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 2px solid #DAE3EA;
}

.trunk-card.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.trunk-card:hover {
  transform: translateY(-10px);
}

.trunk-card__image {
  position: relative;
  padding-bottom: 60%;
  background-color: #DAE3EA;
  overflow: hidden;
  border-radius: 10px;
  margin: 8px;
}

.trunk-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 8px;
}

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

.trunk-card__content {
  padding: 1rem;
}

.trunk-card__title {
  font-family: "Frutiger Serif Light", serif;
  font-size: 1.1rem;
  color: #2E2E2E;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.trunk-card__description {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.trunk-card__price {
  font-family: "Frutiger Serif Light", serif;
  font-size: 1.1rem;
  color: #2E2E2E;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.trunk-card__buttons {
  text-align: center;
  padding-top: 0.25rem;
}

.trunk-card__button--personalize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: "Frutiger Serif Light", serif;
  font-size: 1rem;
  font-weight: 300;
  color: #2E2E2E;
  text-decoration: none;
  background: #DAE3EA;
  border: 1px solid #DAE3EA;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.trunk-card__button--personalize::after {
  content: '✨';
  margin-left: 0.5rem;
  font-size: 1.1rem;
  filter: brightness(0) saturate(100%);
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s ease;
}

.trunk-card__button--personalize:hover {
  color: #FFFFFF;
  background: #DAE3EA;
  transform: translateY(-2px);
}

.trunk-card__button--personalize:hover::after {
  opacity: 1;
  transform: translateX(0);
  filter: brightness(0) saturate(100%) invert(1);
}

@media screen and (max-width: 768px) {
  .featured-trunks__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .trunk-card {
    background: none;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    border-radius: 8px;
  }
  
  .trunk-card__content {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    margin-top: 0.5rem;
  }
  
  .trunk-card__image {
    height: 200px;
    background: none;
    margin: 0;
    border-radius: 0;
  }
  
  .trunk-card__image img {
    object-fit: contain;
    border-radius: 0;
  }
  
  .trunk-card__title {
    font-size: 1rem;
  }
  
  .trunk-card__description {
    display: none;
  }
  
  .trunk-card__price {
    font-size: 1rem;
  }
  
  .trunk-card__button--personalize {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .featured-trunks__footer-features {
    gap: 2rem;
  }
  
  .featured-trunks__footer-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}
.site-footer {
  background-color: #DAE3EA;
  color: #2E2E2E;
  padding: 4rem 0 0 0;
  margin-top: 4rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__section {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  margin-bottom: 1.5rem;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(89%) sepia(11%) saturate(234%) hue-rotate(182deg) brightness(95%) contrast(90%);
}

.footer__tagline {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 2rem;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(46, 46, 46, 0.1);
  border-radius: 50%;
  color: #2E2E2E;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background-color: #DAE3EA;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer__heading {
  font-family: "Frutiger Serif Light", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #2E2E2E;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link-item {
  margin-bottom: 0.75rem;
}

.footer__link {
  color: #666666;
  text-decoration: none;
  font-family: "Frutiger Serif Light", serif;
  font-size: 0.95rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #DAE3EA;
}

.footer__newsletter-text {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 1.5rem;
}

.footer__newsletter-form {
  margin-bottom: 1rem;
}

.footer__newsletter-input-group {
  display: flex;
  position: relative;
}

.footer__newsletter-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(46, 46, 46, 0.2);
  border-radius: 4px 0 0 4px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #2E2E2E;
  font-family: "Frutiger Serif Light", serif;
  font-size: 0.9rem;
}

.footer__newsletter-input::placeholder {
  color: #999999;
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: #DAE3EA;
  background-color: #FFFFFF;
}

.footer__newsletter-button {
  padding: 0.875rem 1rem;
  background-color: #DAE3EA;
  border: none;
  border-radius: 0 4px 4px 0;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer__newsletter-button:hover {
  background-color: #c4a030;
}

.footer__bottom {
  border-top: 1px solid rgba(46, 46, 46, 0.1);
  padding: 2rem 0;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright p {
  font-family: "Frutiger Serif Light", serif;
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom-link {
  color: #666666;
  text-decoration: none;
  font-family: "Frutiger Serif Light", serif;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__bottom-link:hover {
  color: #DAE3EA;
}

.footer__payment {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__payment-label {
  font-family: "Frutiger Serif Light", serif;
  font-size: 0.9rem;
  color: #666666;
}

.footer__payment-icons {
  display: flex;
  gap: 0.5rem;
}

.footer__payment-icon {
  height: 24px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(89%) sepia(11%) saturate(234%) hue-rotate(182deg) brightness(95%) contrast(90%);
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer__section:first-child {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 0 0;
    margin-top: 3rem;
  }
  
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__bottom-links {
    justify-content: center;
  }
  
  .footer__payment {
    justify-content: center;
  }
}
.promo-banner {
  background-color: {{ section.settings.promo_bg_color | default: 'white' }};
  color: {{ section.settings.promo_text_color | default: '#2E2E2E' }};
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  {% if section.settings.promo_font %}
    font-family: {{ section.settings.promo_font.family }}, {{ section.settings.promo_font.fallback_families }};
    font-weight: {{ section.settings.promo_font.weight }};
    font-style: {{ section.settings.promo_font.style }};
  {% else %}
    font-family: "Frutiger Serif Light", serif;
    font-weight: 300;
  {% endif %}
}

{% if section.settings.promo_font %}
  {{ section.settings.promo_font | font_face: display: 'swap' }}
{% endif %}

/* Mobile Navigation */
.header__mobile-nav {
  display: block;
}

.header__hamburger {
  display: none;
  padding: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #2E2E2E;
}

.header__mobile-menu {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  background-color: #DAE3EA;
  padding: 2rem;
  z-index: 99;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  visibility: hidden;
}

.header__mobile-menu.is-active {
  transform: translateX(0);
  visibility: visible;
}

.header__mobile-nav-link {
  display: block;
  color: #2E2E2E;
  text-decoration: none;
  padding: 1rem 0;
  font-family: "Frutiger Serif Light", serif;
  font-size: 1.2rem;
  font-weight: 300;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-nav-link:last-child {
  border-bottom: none;
}
.header {
  background-color: rgba(218, 227, 234, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: fixed;
  top: 2.5rem;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  transition: transform 0.3s ease-in-out;
}

/* Add padding to body to prevent content from jumping when header becomes fixed */
body {
  padding-top: 10.5rem;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 6.5rem;
  }
}

.header__container {
  width: 100%;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.header__logo {
  display: flex;
  align-items: center;
  width: 160px;
  height: 80px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

.header__nav {
  display: flex;
  gap: 2rem;
  margin-right: auto;
}

.header__nav-link {
  color: #2E2E2E;
  text-decoration: none;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  font-family: "Frutiger Serif Light", serif;
  font-weight: 300;
  font-size: 1rem;
  position: relative;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: #666666;
}

.header__nav-link.active {
  color: #2E2E2E;
  font-weight: 400;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__icon {
  color: #2E2E2E;
  text-decoration: none;
  padding: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
}

.header__icon:hover {
  color: #666666;
}

.header__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #e74c3c;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  border: 2px solid white;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}



@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  
  .header__search {
    display: none;
  }
  
  .header__container {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 768px) {
  .header__container {
    height: 4rem;
    position: relative;
    justify-content: center;
  }

  .header__logo {
    width: 120px;
    height: 60px;
  }

  .header__hamburger {
    display: flex;
    position: absolute;
    left: 0;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }

  .header__right {
    position: absolute;
    right: 0;
  }

  .header__icon[aria-label="Account"] {
    display: none;
  }

  .header__nav {
    display: none;
  }
}
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
.testimonials {
  padding: 1rem 0;
  background-color: #FFFFFF;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
}

.testimonials__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials__track {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.testimonials__track.animate {
  opacity: 1;
  transform: translateY(0);
}

.testimonials__track {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

.testimonial {
  width: 500px;
  padding: 2rem;
  background-color: #DAE3EA;
  border-radius: 2px;
  position: relative;
}

.testimonial__quote {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #2E2E2E;
  text-align: center;
  position: relative;
}

.testimonial__quote::before,
.testimonial__quote::after {
  content: '"';
  font-family: "Georgia", serif;
  font-size: 4rem;
  line-height: 0;
  position: absolute;
  color: #FFFFFF;
  opacity: 0.5;
}

.testimonial__quote::before {
  left: -1.5rem;
  top: 1rem;
}

.testimonial__quote::after {
  right: -1.5rem;
  bottom: -0.5rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

/* Gradient overlays to hide scroll edges */
.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 2;
  pointer-events: none;
}

.testimonials::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonials::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (max-width: 768px) {
  .testimonials {
    padding: 3rem 0;
  }

  .testimonial {
    width: 300px;
    padding: 1.5rem;
  }

  .testimonial__quote::before {
    left: -1rem;
    top: 0.5rem;
  }

  .testimonial__quote::after {
    right: -1rem;
    bottom: -0.75rem;
  }
}

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }