/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 192:0 Unexpected "<"
Line 311:0 Unexpected "<"
Line 378:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
/* Canvas background */
.nordic-contact-wrap{
  background:#f6efe5; /* warm cream like the screenshot */
  padding: 28px 0 48px;
}

/* Page container & two-column grid */
.nordic-contact-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 380px;  /* wide image left, slim panel right */
  gap: 24px;
}

/* Left: framed media block (image with thin border and inner margin) */
.nordic-contact-frame{
  background:#f6efe5;
  /* border-left: 1px solid #d9d0c3; */
  /* border-right: 1px solid #d9d0c3; */
  /* border-top: 1px solid #d9d0c3; */
  /* border-bottom: 1px solid #d9d0c3; */
      border: 1px solid #e2ddd0;
  padding: 0;              /* inner margin inside the frame */
}

.nordic-contact-container {
    background: #f6efe5;
}


.nordic-contact-media{
  position: relative;
  overflow: hidden;
  background:#efe7da;
}
.nordic-contact-media img{
  width: 100%;
  height: auto;
  display:block;
  object-fit: cover;
}

/* Optional vertical label on the left (like “Welcome Back”) */
.nordic-contact-vert{
  position: absolute;
  left: -48px;
  top: 50%;
  transform: rotate(-90deg) translateY(50%);
  transform-origin: left center;
  font-family: serif;
  letter-spacing: .06em;
  color:#6b655e;
  font-size: 28px;
  display: none; /* disabled by default; enable via setting below */
}

/* Right: card with heading + form */
.nordic-contact-card{
  background:#f6efe5;
  border-left: 1px solid #d9d0c3;
  border-right: 1px solid #d9d0c3;
  border-top: 1px solid #d9d0c3;
  border-bottom: 1px solid #d9d0c3;
  padding: 28px;
  display:flex;
  flex-direction:column;
  gap: 18px;
}
.nordic-contact-heading{
  font-family: serif;
  font-size: 28px;
  margin:0 0 6px;
  color:#2a2a2a;
}
.nordic-contact-sub{
  color:#6b655e;
  font-size:14px;
  line-height:1.6;
  margin-bottom: 12px;
}

/* Form styles – slim, rounded, subtle borders like Nordic */
.nordic-contact-form{
  display:grid;
  gap:14px;
}
.nordic-contact-form input,
.nordic-contact-form textarea{
  width:100%;
  padding: 12px 14px;
  border: 1px solid #d4cbbd;
  background:#fff;
  border-radius: 0;
  font-size:14px;
  color:#2b2b2b;
}
.nordic-contact-form textarea{ min-height:120px; resize:vertical; }

.nordic-contact-button {
    display: inline-block;
    width: 100%;
    background: #546c60;
    color: #fff;
    border: none;
    padding: 12px 18px;
    text-transform: none;
    font-size: 14px;
    border-radius: 0;
    cursor: pointer;
}
.nordic-contact-button:hover{ background:#375647; }

/* Small helper text */
.nordic-contact-meta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:12px;
  color:#6b655e;
}

/* Success message */
.nordic-contact-success{
  background:#e8f4e9;
  border:1px solid #c8e2cb;
  color:#2e5536;
  padding:12px 14px;
  border-radius:6px;
  font-size:14px;
}

.nordic-contact-container {
    max-width: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 45%;
    gap: 24px;
}

.nordic-contact-heading {
    font-family: serif;
    font-size: 28px;
    margin: 0 0 6px;
    color: #2b2b2b;
    margin-bottom: 40px;
    margin-top: 0;
    padding-top: 1rem;
    font-size: 42px;
    text-align: center;
}

.nordic-contact-card {
    background: #f6efe5;
    border-left: 1px solid #d9d0c3;
    border-right: 1px solid #d9d0c3;
    border-top: 1px solid #d9d0c3;
    border-bottom: 1px solid #d9d0c3;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

form#contact_form {
    margin-bottom: 12rem;
}

/* Responsive */
@media (max-width: 990px){
  .nordic-contact-container{
    grid-template-columns: 1fr;
  }
  .nordic-contact-card{ padding:22px; }
  .nordic-contact-vert{ display:none !important; }
}
</style>
<style>
.product-section {
  background-color: #f8f4ec;
  padding: 60px 20px;
  text-align: center;
}
.product-section h2 {
  font-family: serif;
  font-size: 2rem;
  margin-bottom: 40px;
  margin-top: 0;
  padding-top: 1rem;
  font-size: 42px;
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 0 auto;
}
.product-card {
  background-color: #f8f4ec;
  padding: 20px;
  position: relative;
  text-align: left;
  font-family: sans-serif;
  border: 1px solid #e2ddd0;
}
.product-card img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
  background-color: #fff;
}
.sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ede9e3;
  color: #4b4b4b;
  font-size: 0.75rem;
  padding: 4px 8px;
  font-family: serif;
}
.product-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 4px;
}
.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #2b2b2b;
}
.product-price {
    font-size: 14px;
    margin-bottom: 4px;
    color: #2b2b2b;
}
.price .compare {
  text-decoration: line-through;
  color: #999;
  margin-left: 8px;
  font-weight: normal;
}
.color-swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.swatch {
  width: 14px;
  height: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
}

.quick-add-button {
    position: absolute;
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #75573B;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 90%;
    font-size: 14px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
}

.product-card:hover .quick-add-button {
  opacity: 1;
  visibility: visible;
}

section#shopify-section-template--18724477239462__featured_products_iABDCq {
    background: #f8f4ec;
}

section#shopify-section-template--18724477239462__featured_products_GWxaLn {
    background: #f8f4ec;
}

@media screen and (max-width: 600px) {
  .product-section h2 {
    font-size: 1.5rem;
  }
}
</style>
<style>
.shop-by-category {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #f8f5ef;
  padding: 60px 20px;
}
.shop-by-category h2 {
  font-family: serif;
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}
.category-wrapper {
  max-width: 1600px;
  margin: 0 auto;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  overflow: hidden;
  padding-bottom: 75%;
}
.category-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card:hover img {
  transform: scale(1.05);
}
.category-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-family: serif;
  font-size: 1.1rem;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
/* Mobile Slider */
@media (max-width: 1024px) {
  .category-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 10px;
  }
  .category-grid::-webkit-scrollbar {
    display: none;
  }
  .category-card {
    flex: 0 0 60%;
    scroll-snap-align: start;
    padding-bottom: 56%;
    margin-right: 10px;
  }
}
</style>