/** Shopify CDN: Minification failed

Line 582:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.contact {
  margin-top: 144px;
  padding: 3rem 0;
  background: linear-gradient(to bottom, rgb(var(--color-background)), rgba(var(--color-foreground), 0.02));
}

.contact h2 {
  font-size: calc(var(--font-heading-scale) * 3.6rem);
  margin-bottom: 3rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(45deg, rgb(var(--color-foreground)), rgba(var(--color-foreground), 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  position: relative;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: rgba(var(--color-foreground), 0.2);
  border-radius: 2px;
}

.contact__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact__content-main {
  animation: fadeInUp 0.6s ease forwards;
}

.rte {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.85);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: grid;
  gap: 2rem;
  padding: 3rem;
  background: rgba(var(--color-foreground), 0.03);
  border-radius: 1.2rem;
  margin: 3rem 0;
  box-shadow: 0 20px 40px rgba(var(--color-foreground), 0.08);
}

.contact-info__item {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.85);
  padding: 1.5rem;
  background: rgb(var(--color-background));
  border-radius: 0.8rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding-left: 2rem;
}

.contact-info__item::before {
  content: '→';
  position: absolute;
  left: 1rem;
  color: rgba(var(--color-foreground), 0.6);
}

.contact-info__item:hover {
  transform: translateX(10px);
}

.contact-info__item .link {
  color: rgb(var(--color-foreground));
  text-decoration: none;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.contact-info__item .link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.contact-info__item .link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.contact__form {
  margin-top: 4rem;

}


@media screen and (max-width: 749px) {
  .contact {
    margin-top: 100px;
    padding: 2rem 0;
  }

  .contact h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }

  .contact__content {
    padding: 0 1.5rem;
  }

  .rte {
    font-size: 1.1rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-info__item {
    font-size: 1rem;
    padding: 1rem 1rem 1rem 2rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  .contact-info__item,
  .contact__content-main {
    animation: none;
    transform: none;
    transition: none;
  }

  .contact-info__item:hover {
    transform: none;
  }
}

@media (prefers-contrast: more) {
  .contact h2 {
    background: none;
    -webkit-text-fill-color: initial;
    color: rgb(var(--color-foreground));
  }
}
.faq__container {

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin: 4rem 0;
}

.faq__header {
  
  max-width: 30rem;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 0.1rem solid rgb(var(--color-foreground));
  text-decoration: none;
  margin-top: 2rem;
}

.faq__item {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.faq__item summary {
  padding: 2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__answer {
  padding: 0 0 2rem;
}

.icon-caret {
  pointer-events: none;
  transform: rotate(-180deg);
  transition: transform var(--duration-default) ease;
}

details[open] .icon-caret {
  transform: rotate(0);
}

@media screen and (max-width: 749px) {
  .faq__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Base Styles */
.categories__container {
 width: 100%;
 max-width: 1440px;
 margin: 0 auto;
 padding: 0 20px;
 transform: translateX(-80px);
 overflow: visible;
}

.categories__inner {
 width: 100%;
 margin: 0 auto;
 position: relative;
}

.categories-row {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 20px;
 margin-bottom: 40px;
}

.categories-row--offset {
 transform: translateX(160px);
 width: 100%;
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 20px;
 position: relative;
}

/* Card Styles */
.category-card {
 position: relative;
 width: 100%;
 height: 426.94px;
 overflow: hidden;
 border-radius: 4px;
}

.category-card__image {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card__content {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 2;
}

.category-card__title {
 color: #ffffff;
 font-size: 2rem;
 font-weight: 400;
 text-transform: uppercase;
 letter-spacing: 0.15em;
 text-align: center;
 margin: 0;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 transform: translateY(0);
 transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card__title {
  transform: translateY(-8px);
}

.category-card__overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(
   180deg,
   rgba(0, 0, 0, 0.2) 0%,
   rgba(0, 0, 0, 0.4) 100%
 );
 transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 z-index: 1;
}

.category-card:hover .category-card__overlay {
 background: linear-gradient(
   180deg,
   rgba(0, 0, 0, 0.4) 0%,
   rgba(0, 0, 0, 0.85) 100%
 );
}

.category-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.category-card:hover:before {
  opacity: 1;
}

/* Mobile Styles */
@media screen and (max-width: 749px) {
 .categories__container {
   transform: none;
   padding: 0;
   overflow-x: visible;
   width: 100%;
 }

 .categories__inner {
   margin: 0;
 }

 .categories-row {
   display: flex;
   flex-direction: row;
   gap: 15px;
   padding: 0 20px;
   margin-bottom: 20px;
   width: auto;
   overflow-x: auto;
   -webkit-overflow-scrolling: touch;
   scroll-snap-type: x mandatory;
 }

 .categories-row--offset {
   transform: none;
   margin: 0;
   padding: 0 20px;
 }

 .category-card {
   flex: 0 0 280px;
   min-width: 280px;
   height: 320px;
   scroll-snap-align: start;
 }

 .category-card__title {
   font-size: 20px;
  
 }

 .categories-row::-webkit-scrollbar {
   display: none;
 }
 
 .categories-row {
   -ms-overflow-style: none;
   scrollbar-width: none;
 }

 .main-heading {
   text-align: center;
   margin: 0 0 30px;
   padding: 0 20px; 
}

/* Small Mobile */
@media screen and (max-width: 375px) {
 .category-card {
   flex: 0 0 260px;
   min-width: 260px;
   height: 300px;
 }

 .category-card__title {
   font-size: 18px;
 }
}
.sell-form {
  margin: 6rem auto;
  max-width: var(--page-width);
  padding: 0 1.5rem;
}

.sell-form__header {
  margin-bottom: 4rem;
  text-align: center;
}

.sell-form__title {
  margin-bottom: 1.5rem;
}

.sell-form__description {
  margin: 0 auto;
  max-width: 74rem;
}

.sell-form__grid {
  display: grid;
  gap: 3.2rem;
  margin: 0 auto;
  max-width: 74rem;
}

.sell-form__section {
  background: rgba(var(--color-foreground), 0.03);
  border-radius: 0.8rem;
  padding: 2.4rem;
}

.sell-form__section-title {
  font-size: calc(var(--font-heading-scale) * 1.8rem);
  margin-bottom: 2.4rem;
}

.field-group {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.field {
  margin-bottom: 1.5rem;
  position: relative;
}

.field__input {
  background-color: transparent;
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  border-radius: 0.4rem;
  color: rgb(var(--color-foreground));
  font-size: 1.6rem;
  padding: 1.2rem;
  width: 100%;
}

.field__input:focus {
  border-color: rgb(var(--color-foreground));
  box-shadow: 0 0 0 0.2rem rgba(var(--color-foreground), 0.15);
  outline: none;
}

.field__input--textarea {
  min-height: 12rem;
  resize: vertical;
}

.field__label {
  font-size: 1.4rem;
  left: 1.2rem;
  pointer-events: none;
  position: absolute;
  top: 1.2rem;
  transition: all 0.2s ease-out;
}

.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
  background-color: rgb(var(--color-background));
  font-size: 1.2rem;
  padding: 0 0.4rem;
  top: -0.8rem;
  transform: translateY(0);
}

.file-upload {
  border: 0.2rem dashed rgba(var(--color-foreground), 0.15);
  border-radius: 0.4rem;
  padding: 2rem;
  text-align: center;
}

.file-upload__label {
  cursor: pointer;
  display: block;
}

.file-upload__button {
  background-color: rgba(var(--color-foreground), 0.08);
  border-radius: 0.4rem;
  display: inline-block;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
}

.button {
  background-color: rgb(var(--color-button));
  border: none;
  border-radius: 0.4rem;
  color: rgb(var(--color-button-text));
  cursor: pointer;
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  text-align: center;
  transition: all 0.2s ease-out;
  width: 100%;
}

.button:hover {
  background-color: rgba(var(--color-button), 0.8);
}

@media screen and (max-width: 749px) {
  .field-group {
    grid-template-columns: 1fr;
  }

  .sell-form__section {
    padding: 1.6rem;
  }
}

@media (prefers-reduced-motion) {
  .field__label,
  .button {
    transition: none;
  }
}