/** Shopify CDN: Minification failed

Line 452:0 Unexpected "{"
Line 452:1 Expected identifier but found "%"
Line 462:0 Unexpected "{"
Line 462:1 Expected identifier but found "%"
Line 464:0 Unexpected "{"
Line 464:1 Expected identifier but found "%"
Line 474:0 Unexpected "{"
Line 474:1 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collections-carousel (INDEX:15) */
.cc-wrapper {
  background: var(--cc-bg, #ffffff);
  border-top-left-radius: var(--cc-radius, 24px);
  border-top-right-radius: var(--cc-radius, 24px);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cc-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 32px;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  padding: 0 24px;
}

.cc-carousel-container {
  width: 80%;
  margin: 0 auto;
}

.cc-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: auto;
  scroll-snap-type: x proximity;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 24px 12px;
  scrollbar-width: none;
  width: 100%;
}

.cc-track::-webkit-scrollbar {
  display: none;
}

.cc-track.cc-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.cc-item {
  flex: 0 0 auto;
  width: 27%;
  min-width: 340px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: auto;
}

.cc-item.cc-visible {
  opacity: 1;
  transform: translateY(0);
}

.cc-item-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 420px;
  border-radius: var(--cc-radius, 20px);
  overflow: hidden;
  background: #f2e4d8;
  position: relative;
}

.cc-item-image img,
.cc-item-image svg,
.cc-item-image .cc-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: transform 0.6s ease;
}

.cc-item:hover .cc-item-image img {
  transform: scale(1.04);
}

.cc-item-title {
  text-align: center;
  margin: 16px 0 0;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
}

.cc-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.cc-arrow:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.cc-arrow--left {
  left: 28px;
}

.cc-arrow--right {
  right: 28px;
}

.cc-arrow--disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1400px) {
  .cc-item {
    width: 32%;
    min-width: 300px;
  }
  .cc-item-image {
    min-height: 380px;
  }
}

@media (max-width: 989px) {
  .cc-item {
    width: 62%;
    min-width: 280px;
  }
  .cc-item-image {
    min-height: 340px;
  }
  .cc-track {
    padding: 4px 16px 12px;
    gap: 16px;
  }
  .cc-heading {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .cc-arrow {
    width: 40px;
    height: 40px;
  }
  .cc-arrow--left {
    left: 12px;
  }
  .cc-arrow--right {
    right: 12px;
  }
}

@media (max-width: 599px) {
  .cc-item {
    width: 78%;
    min-width: 240px;
  }
  .cc-item-image {
    min-height: 300px;
  }
  .cc-wrapper {
    padding: 36px 0 40px;
  }
}
/* END_SECTION:collections-carousel */

/* START_SECTION:our-story (INDEX:66) */
/* ===== BASE ===== */
.os-wrapper {
  background: var(--os-bg, #FFF8F3);
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}

.os-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.os-container[data-container="fluid"] {
  max-width: none;
}

.os-container[data-container="wide"] {
  max-width: 1400px;
}

.os-container[data-container="standard"] {
  max-width: 1200px;
}

.os-container[data-container="narrow"] {
  max-width: 980px;
}

/* ===== GRID ===== */
.os-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--os-gap, 80px);
}

.os-grid--reversed {
  direction: rtl;
}

.os-grid--reversed > * {
  direction: ltr;
}

/* ===== IMAGE COLUMN ===== */
.os-image-col {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.os-image-col.os-visible {
  opacity: 1;
  transform: translateX(0);
}

.os-image-wrapper {
  width: 100%;
  border-radius: var(--os-radius, 32px);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.os-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.os-image-wrapper:hover .os-image {
  transform: scale(1.03);
}

.os-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  background: #f0e6dc;
}

/* ===== CONTENT COLUMN ===== */
.os-content-col {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.os-content-col.os-visible {
  opacity: 1;
  transform: translateX(0);
}

.os-content {
  max-width: 480px;
}

.os-subheading {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--os-text, #1a1a1a);
  opacity: 0.6;
  margin: 0 0 12px;
}

.os-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--os-text, #1a1a1a);
  margin: 0 0 20px;
  letter-spacing: -0.8px;
}

.os-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--os-text, #1a1a1a);
  opacity: 0.75;
  margin: 0 0 28px;
}

.os-body p {
  margin: 0;
}

.os-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 16px 36px;
  background: var(--os-btn-bg, #1a1a1a);
  color: var(--os-btn-text, #ffffff);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.os-button:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .os-wrapper {
    padding: 80px 0;
  }
  .os-grid {
    gap: 48px;
  }
  .os-heading {
    font-size: 40px;
  }
}

@media (max-width: 989px) {
  .os-wrapper {
    padding: 60px 0;
  }
  .os-container {
    padding: 0 24px;
  }
  .os-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .os-image-wrapper {
    aspect-ratio: 16 / 10;
  }
  .os-content {
    max-width: 100%;
    text-align: center;
  }
  .os-heading {
    font-size: 36px;
  }
  .os-image-col {
    transform: translateY(30px);
  }
  .os-image-col.os-visible {
    transform: translateY(0);
  }
  .os-content-col {
    transform: translateY(30px);
  }
  .os-content-col.os-visible {
    transform: translateY(0);
  }
}

@media (max-width: 599px) {
  .os-wrapper {
    padding: 48px 0;
  }
  .os-container {
    padding: 0 16px;
  }
  .os-image-wrapper {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }
  .os-heading {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
  .os-body {
    font-size: 15px;
  }
  .os-button {
    width: 100%;
    padding: 16px 24px;
  }
}
/* END_SECTION:our-story */

/* START_SECTION:trust-bar (INDEX:105) */
/* ===== BASE ===== */
.tb-wrapper {
  background: var(--tb-bg, #FFF5F0);
  width: 100%;
  padding: 36px 0;
  position: relative;
  border-bottom-left-radius: var(--tb-radius, 24px);
  border-bottom-right-radius: var(--tb-radius, 24px);
  overflow: hidden;
}

{% if section.settings.show_top_border %}
.tb-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--tb-border, #1a1a1a);
}
{% endif %}

{% if section.settings.show_bottom_border %}
.tb-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--tb-border, #1a1a1a);
}
{% endif %}

.tb-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.tb-container[data-container="fluid"] {
  max-width: none;
}

.tb-container[data-container="wide"] {
  max-width: 1400px;
}

.tb-container[data-container="standard"] {
  max-width: 1200px;
}

.tb-container[data-container="narrow"] {
  max-width: 900px;
}

/* ===== GRID ===== */
.tb-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

/* ===== ITEM ===== */
.tb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tb-item.tb-visible {
  opacity: 1;
  transform: translateY(0);
}

.tb-icon {
  margin-bottom: 12px;
  color: var(--tb-text, #2a2a2a);
  opacity: 0.85;
}

.tb-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.tb-icon--svg svg {
  display: block;
}

.tb-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tb-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--tb-text, #2a2a2a);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.tb-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: var(--tb-text, #2a2a2a);
  opacity: 0.55;
  margin: 0;
  line-height: 1.5;
}

/* ===== DIVIDER ===== */
.tb-divider {
  width: 1px;
  align-self: stretch;
  min-height: 48px;
  background: var(--tb-border, #1a1a1a);
  opacity: 0.25;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 989px) {
  .tb-wrapper {
    padding: 28px 0;
  }
  .tb-container {
    padding: 0 24px;
  }
  .tb-item {
    padding: 8px 24px;
  }
  .tb-title {
    font-size: 15px;
  }
  .tb-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 599px) {
  .tb-wrapper {
    padding: 24px 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .tb-container {
    padding: 0 16px;
  }
  .tb-grid {
    flex-direction: column;
    gap: 20px;
  }
  .tb-item {
    padding: 0;
  }
  .tb-divider {
    width: 60px;
    height: 1px;
    min-height: auto;
    align-self: center;
  }
  .tb-title {
    font-size: 15px;
  }
}
/* END_SECTION:trust-bar */