/** Shopify CDN: Minification failed

Line 111:28 Expected identifier but found "."
Line 2467:0 Expected "}" to go with "{"

**/
/*=================================
      THE BASICS
==================================*/

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  overflow-x: auto !important;
  scroll-behavior: smooth;
}

.site-min-width {
  min-width: 390px;
}

.site-container {
  max-width: 85%; 
  margin: 0 auto;
}

@media (max-width: 767px) {
  .site-container {
    max-width: 95%;
  }
}

@font-face {
  font-family: "LimejuiceThin";
  src: url("//backstorymaps.com/cdn/shop/t/3/assets/LimejuiceThin.woff2?v=138698877196167412641769683742") format("woff2"),
       url("//backstorymaps.com/cdn/shop/t/3/assets/LimejuiceThin.woff?v=9102749989031939001769683742") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --font-primary: 'Lexend', sans-serif;
  --font-accent: 'LimejuiceThin', sans-serif;
}

body {
  font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
}

h1 {
  font-size: 3rem;
}

:root {
  --brand_color_primary: #9f8881;
  --brand_color_secondary: #cdb1aa;
  --brand_color_tertiary: #eee8e1;
  --brand_color_dark: #5a4d4d;
  --brand_color_light: #ffffff;
}

.hidden {
  display: none;
}

.hover-fade {
  transition: opacity 0.2s ease-out;
}

.hover-fade:hover {
  opacity: 0.6;
}

.hover-zoom {
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
  display: block;
}

.hover-zoom:hover {
  transform: scale(1.02);
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  width: 75%;
  margin: 1.5rem auto;
}

.container-404 {
  margin: 3rem 0 9rem 0;
  text-align: center;
}

.title-404 {
  font-weight: 300;
  font-size:  3rem;
  text-transform: uppercase;
}

.shopify-policy__container {. /* OVERRIDE SHOPIFY BAKED IN DEFAULTS */
  margin: 0 .5rem !important;
  max-width: 60% !important;
  line-height: 1.5rem !important;
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}


/*===========================
       BTN STYLING
===========================*/

.btn-add-to-cart {
  position: relative;
  background-color: var(--brand_color_primary);
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  margin: .5rem 0;
  cursor: pointer;
  width: 65%;
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1.1px;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.btn-add-to-cart:hover {
  background-color: var(--brand_color_dark);
}

.btn-add-to-cart.sold-out {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-add-to-cart.sold-out:hover::after {
  opacity: 1;
}

.btn-primary {
  position: relative;
  background-color: var(--brand_color_primary);
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  margin: .5rem 0;
  cursor: pointer;
  width: 40%;
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1.1px;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--brand_color_dark);
}

.btn-checkout {
  display: inline-block;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1.5rem 0;
  cursor: pointer;
  border-radius: 2px;
  border: none;
}

.btn-cart-page-checkout {
  padding: 1rem 1.5rem;
  background-color: var(--brand_color_dark);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 2px;
  border: none;
  width: 35%;
}

@media (max-width: 767px) {
  .btn-add-to-cart {
    width: 100%;
  }
  .btn-cart-page-checkout {
    width: 100%;
  }
}


/*===========================
      PAGINATION STYLES
===========================*/

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.pagination a,
.pagination .page.current {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: var(--color-text-body, #333);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pagination a:hover {
  background-color: var(--color-body-accent, #f5f5f5);
}

.pagination .page.current {
  background-color: var(--color-text-body, #333);
  color: #fff;
  pointer-events: none;
  cursor: default;
}

.pagination-arrow {
  color: #404041;
  font-size: 1.1rem;
  font-family: Geneva;
}

/*====================================
          ANNOUNCEMENT BAR  
=====================================*/

.announcement-bar {
  display: block;
  text-align: center;
  position: relative;
  text-decoration: none;
  background-color: var(--announcement-bg);
}

.announcement-bar__message {
  display: block;
  padding: 10px;
  margin: 0;
  color: var(--announcement-text-color);
  text-transform: var(--announcement-text-transform);
  letter-spacing: var(--announcement-letter-spacing);
  font-size: var(--announcement-font-size);
  text-decoration: none;
}

/*=========================
    SITE HEADER LAYOUT
==========================*/

.site-header {
  background-color: var(--header-bg);
  padding: 1rem 0 1rem 0;
  max-width: 100%;
  margin: 0 auto;
}

.header-flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
  max-width: 90%;
  margin: 0 auto;
}

.site-header__logo img {
  max-width: var(--logo-max-width-desktop);
}

.icons {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.cart-toggle {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.burger-toggle {
  display: none;
}

@media (max-width: 1046px) {
  .burger-toggle {
    display: flex;
    justify-content: center;
  }
}

/*===========================
    DESKTOP NAVIGATION
==========================*/

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.desktop-nav__list {
  display: flex;
  gap: 3rem;
  list-style: none;
  padding: 0 3rem;
  margin: 0;
}

.desktop-nav__list a {
  transition: opacity 0.3s ease;
}

.desktop-nav__list a:hover {
  opacity: .6;
}

.desktop-nav__link {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brand_color_dark);
  font-size: var(--desktop_nav_font_size);
  letter-spacing: var(--desktop_nav_letter_spacing);
  font-weight: 300;
}

.desktop-nav__parent {
  position: relative;
}

.desktop-nav__parent.has-children > .desktop-nav__link::after {
  content: "▾";
  margin-left: 0.2rem;
  position: relative;
  top: -0.1em;
  font-size: 0.9rem;
}

.desktop-nav__mega {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fbf8f7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 2rem 1rem 1rem 1rem;
  z-index: 100;
  display: none;
  flex-direction: row;
  align-items: stretch;
  width: 625px;
  max-width: 90vw;
  min-height: 515px;
}

.desktop-nav__parent.has-children:hover .desktop-nav__mega {
  display: flex;
}

.desktop-nav__children {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
  min-width: 210px;
}

.desktop-nav__child {
  margin: 0;
}

.desktop-nav__child a {
  display: block;
  width: 100%;
  padding: .9rem 0.5rem;
  text-decoration: none;
  color: #000;
  font-weight: 300;
}

.desktop-nav__child a:hover {
  background-color: #eee5dd;
  opacity: 1;
}

.desktop-nav__preview {
  flex: 1 1 auto;
  max-width: 400px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.desktop-nav__preview img {
  height: 95%;
  width: auto;
  max-width: 95%;
  object-fit: contain;
  visibility: hidden;  
  opacity: 0;
  transition: opacity 0.2s ease;
  display: block;
}

@media (max-width: 1046px) {
  .desktop-nav {
    display: none;
  }
}

/*=================================
          SLIDESHOW
==================================*/

.slideshow {
  position: relative;
}

.slideshow__heading {
  position: absolute;
  z-index: 10;
  top: 4%; 
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  pointer-events: none;
  font-family: var(--font-accent);
  font-size: 4.2rem;
  font-weight: 300;
  color: #514d4c;
  text-align: center;
  width: 80%;
}

.slide {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  width: 100%;  
  box-sizing: border-box;
}

.slide__track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
  max-width: 100%;
}

.slide__item {
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0; 
  box-sizing: border-box;
}

.slide__item img {
  display: block;
  width: 100%;
  height: 95%;
  object-fit: cover;
}

/* Dots   */
.slide__dots {
  display: none; /* CHANGE BACK TO FLEX TO SHOW */
  gap: 6px;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}

.slide__dot {
  all: unset;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  margin: 1rem .3rem .5rem .3rem;
}

.slide__dot.active {
  background: rgba(255, 255, 255, 1);
}

/* Arrows   */ 
.slide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  font-weight: 100;
  background: none;
  color: white;
  font-family: 'Quicksand';
  border: none;
  cursor: pointer;
  padding: 25px 20px;
  z-index: 2;
  display: none; /* CHANGE BACK TO BLOCK TO SHOW */
  height: auto;
}

.slide__arrow--prev {
  left: 10px;
}
.slide__arrow--next {
  right: 10px;
}

@media (max-width: 1046px) {
  .slideshow__heading {
      position: relative;
      font-size: 3.3rem;
      margin: .7rem 0 0 0;
      line-height: 2.8rem;
  }
  .slide__item img {
    transform: scale(1.09);
    padding: 0 0 .5rem 0;
  }
}

/*======================================================
      SIDE BY SIDE SECTION (MAP + INTRO ON HOMEPAGE)
========================================================*/

.side-by-side-section {
  text-align: center;
  margin: 3rem 0 5rem;
}

.side-by-side-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
  margin: 1rem auto;
  text-align: center;
  justify-content: center;
}

.map-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }

.side-by-side-title {
  font-family: var(--font-accent);
  font-size: 3.2rem;
  font-weight: 500;
  color: #514d4c;
}

.side-by-side-copy {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .5px;
  line-height: 2.1rem;
  text-wrap: balance;
  margin: 0.5rem 0;
}

.side-by-side-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--brand_color_primary);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: .5px;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .side-by-side-section {
     margin: 1rem 0;
  }
  .side-by-side-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .map-image img {
    display: block;
    margin: 0 auto;
    max-width: 65%;
  }
  .side-by-side-title {
    font-size: 2.2rem;
  }
  .side-by-side-copy {
    font-size: .95rem;
    line-height: 1.7rem;
  }
  .side-by-side-cta {
    margin: .3rem 0 0 0;
    padding: .75rem 1.5rem;
  }
}

/*=====================================================
    ALL/FEATURED COLLECTIONS (GRID OF COLLECTIONS)
======================================================*/

.featured-collections {
  padding: .5rem;
}

.featured-collections-header {
  max-width: 35%;
  margin: 0 auto;
  height: auto;
  padding-bottom: 1rem;
}

.collections-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.collections-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.collection-card {
  text-decoration: none;
  color: inherit;
}

.collection-card img {
  transition: transform 0.8s ease;
}

.collection-card:hover img {
  transform: scale(1.02);
  opacity: 0.8;
}

.collection-titles {
  font-family: var(--font-primary);
  font-size: 1rem;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 200;
  margin: .75rem 0 0 0;
}

.best-sellers-button {
  display: block;
  max-width: 30%;
  margin: 4rem auto;
  background-color: #514d4c;
  color: #fff;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 1.1px;
  border-radius: 2px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .featured-collections-header {
    max-width: 70%;
  }
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    }
  .collections-grid .collection-card:nth-child(n+9) {
    display: none;
  }
  .collection-titles {
  font-size: .85rem;
  margin: 0.5rem 0 .6rem 0;
  }
  .best-sellers-button {
  max-width: 85%;
  margin: 3rem 1rem;
  }
}


/*===========================================
    COLLECTION PAGE (GRID OF PRODUCTS)
============================================*/

.collection-topper {
  background-color: #fbf8f7;
  padding: 2rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.collection-details {
  margin: 0;
}

.collection-title {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.03px;
}

.collection-stars {
  display: flex;
  justify-content: start;
  gap: 4px;
  padding: 0 0 .5rem 0;
}

.collection-star-shape {
  width: 22px;
  height: 22px;
  fill: #9f8881;
  stroke: #9f8881;
  stroke-linejoin: round;
  stroke-width: 2;
}

.collection-subtitle {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.03px;
}

.collection-description { 
  font-weight: 200; 
  font-size: .9rem; 
  letter-spacing: .5px;
}

.collection-description p { 
  margin: 0.5rem 0;
}

.collection-topper-checks {
  padding: .5rem 0 0 1rem;
  font-weight: 400;
  font-size: .9rem;
}

.collection-topper-image {
  width: 100%;
}

.collection-topper-image img {
  width: 100%;
  height: auto;
  display: block;
}

.grid-of-products {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.collection-placeholder-top {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-size: 2rem;
  text-align: center;
  color: var(--brand_color_dark);
  padding: 1rem 0 0 0;
}

.collection-placeholder-bottom {
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .5px;
  text-decoration: none;
  color: var(--brand_color_primary);
  transition: color 0.2s ease;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding-top: 0.5rem;
  margin-bottom: 4rem;
}

.collection-placeholder-bottom:hover {
  color: var(--brand_color_dark);
}

@media (max-width: 767px) {
  .collection-topper {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .collection-topper-checks {
    padding: 1rem 0 0 0;
  }
  .grid-of-products {
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
  }
  .collection-description { 
  font-size: 1rem; 
  }
}

/*=====================
      PRODUCT CARD
=======================*/

.product-card {
  text-align: center;
  margin-bottom: .7rem;
}

.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.base-image {
  opacity: 1;
}

.surprise-image {
  opacity: 0;
}

/* Hover swap only on hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  .product-card-image-wrapper:hover .surprise-image {
    opacity: 1;
  }
  .product-card-image-wrapper:hover .base-image {
    opacity: 0;
  }
}

.product-card-title {
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: .6rem 0 .3rem;
  font-family: var(--font-primary);
  text-wrap: balance;
}

.product-card-price {
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .5px;
  margin: 0 0 .3rem 0;
}

@media (max-width: 767px) {
  .product-card {
    margin-bottom: .3rem;
  }
  .product-card-title {
    font-size: .8rem;
    margin: .3rem 0;
  }
  .product-card-price {
    font-size: .7rem;
  }
}

/*===============================
      TESTIMONIAL BAR SECTION
=================================*/

.testimonial-bar-section {
  padding: 2rem 0;
}

.testimonial-bar-heading {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.testimonial-bar-wrapper {
  position: relative;
  max-width: 100%;
}

.testimonial-bar-inner {
  overflow: hidden;
  padding: 0 2.5rem;
}

.testimonial-bar-carousel {
  display: flex;
  gap: 1rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-bar-carousel::-webkit-scrollbar {
  display: none; 
}

.testimonial-bar-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  scroll-snap-align: start;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .testimonial-bar-slide {
    flex: 0 0 100%;
  }
}

.testimonial-bar-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-bar-quote {
  font-size: .9rem;
  font-weight: 300;
  letter-spacing: .3px;
  color: var(--brand_color_dark);
  margin-bottom: 1rem;
}

.testimonial-bar-reviewer {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
}

.testimonial-bar-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.testimonial-bar-nav--prev {
  left: -1rem;
}

.testimonial-bar-nav--next {
  right: -1rem;
}

.testimonial-stars-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-star-shape {
  width: 32px;
  height: 32px;
  fill: #f4b400;
  stroke: #f4b400;
  stroke-linejoin: round;
  stroke-width: 2;
}


/*========================================
      PRODUCT TEMPLATE
=========================================*/

.product-template {
  padding: 2rem 0;
  margin: 5rem 0;
  position: relative;
  background: #fbf8f7;
}

.product-template::before,
.product-template::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 75px;
  background-image: url(//backstorymaps.com/cdn/shop/t/3/assets/cream-wave.svg?v=52153085334354122941769690870);
  background-size: cover;
  background-repeat: no-repeat;
}

.product-template::before {
  top: -75px;
  transform: rotate(180deg);
}

.product-template::after {
  bottom: -75px;
}

.product-template-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 85%;
  margin: 0 auto;
  gap: 1rem;
}

.product-media {
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
}

.product-media__carousel {
  display: block;
  overflow: hidden;
  scroll-snap-type: none;
  position: relative;
}

.product-slide {
  display: none;
  width: 100%;
  height: auto;
  border: 3px solid var(--brand_color_light);
}

.product-slide.is-active {
  display: block;
}

.product-media__main,
.product-media__image {
  width: 100%;
  display: block;
  object-fit: contain;
}

.product-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand_color_light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.product-nav svg {
  width: 14px;
  height: 14px;
  stroke: #333;
}

.product-nav--prev { left: 12px; }
.product-nav--next { right: 12px; }

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.product-thumbnail {
  width: 100%;
  height: auto;
  cursor: pointer;
  outline: none;
}

.product-thumbnail.is-active {
  outline: 2px solid var(--brand_color_secondary);
  outline-offset: 2px;
}

.product-copy {
  padding: 0 1.5rem;
}

.product-copy-vendor {
  margin: 0.6rem 0 0 0;
  font-size: .75rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-primary);
}

.product-copy-title {
  margin: 0.6rem 0 0 0;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.1px;
  font-family: var(--font-primary);
  color: var(--brand_color_dark);
}

.product-copy-price {
  margin: 0.7rem 0 0 0;
  padding: 0 0 .5rem 0;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.7px;
  color: var(--brand_color_primary);
}

.product-copy-description {
  line-height: 1.5rem;
  margin: 1rem 0 0.8rem 0;
  font-weight: 300;
  font-size: .9rem;
  letter-spacing: .3px;
}

.product-dots {
  display: none;
}

.product-options label {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 .4rem 0 0.25rem;
  color: var(--brand_color_dark);
}

.product-options select.product-option-select {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #fff;
  font-family: var(--font-primary);
  color: var(--brand_color_dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 300px;
}

/* Hover and Focus States */
.product-options select.product-option-select:hover,
.product-options select.product-option-select:focus {
  border-color: #666;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}


@media (max-width: 767px) {
  .product-template {
    padding: 2rem 0 3rem;
    margin: 1rem 0 0 0;
  }
  .product-template::before,
  .product-template::after {
    background-size: contain;
    background-position: top center;
  }
  .product-template-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 90%;
  }
  .product-media__carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0;
    scrollbar-width: none;
  }
  .product-media__carousel::-webkit-scrollbar {
    display: none;
  }
  .product-slide {
    width: 100%;
    height: auto;
    scroll-snap-align: center;
  }
  .product-thumbnails,
  .product-nav {
    display: none;
  }
  .product-copy {
    padding: 0 .5rem;
  }
  .product-copy-title {
    font-size: 1.75rem;
  }
  .product-copy-price {
    font-size: 1rem;
  }
  .product-copy-description {
    line-height: 1.4rem;
  }
  .product-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.1rem 0 0 0;
    padding: 0 1rem;
  }
  .product-dots button {
    appearance: none;
    border: 0;
    padding: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
  }
  .product-dots button.is-active {
    background: var(--brand_color_tertiary);
    transform: scale(1.1);
  }
}

/*=================================
       PRODUCT RECOMMENDATIONS
==================================*/

.product-recommendations {
  margin: 7rem 0 4rem;
}

.product-recommendations .grid-four-across {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.recommendations-header {
  font-size: 2.6rem;
  font-weight: 100;
  font-family: var(--font-accent); 
  color: var(--brand_color_dark);
  margin: 6rem 0 1rem 2rem;
}

@media (max-width: 767px) {
  .product-recommendations {
    margin: 1rem 0;
  }
  .product-recommendations .grid-four-across {
    grid-template-columns: repeat(2, 1fr);
  }
  .recommendations-header {
    margin: 3rem 0 1rem 2rem;
  }
}

/*========================================
      PRODUCT ACCORDION
=========================================*/

.product-accordion {
  margin-top: 1.5rem;
  overflow: hidden;
  max-width: 90%;
}

.product-accordion-item {
  border-top: 5px solid #fbf7f1;
}

.product-accordion-item:first-child {
  border-top: 0;
}

.product-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 1.1rem 1rem;
  cursor: pointer;
  background-color: #fff;
  border: .5px solid #eee3d3;
  font-size: .8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.product-accordion-header::after {
  content: "▾";
  font-weight: 400;
  transition: transform .2s ease;
}

.product-accordion-item[open] .product-accordion-header::after {
  content: "–";
}

.product-accordion-panel {
  padding: 0 1rem;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: .5px;
  font-size: 0.8rem;
}

.product-accordion-item:last-of-type .product-accordion-panel {
  border-bottom: 1px solid #eee3d3;
}

@media (max-width: 767px) {
  .product-accordion {
    max-width: 100%;
  }
}


/*==============================
      PAGE TEMPLATE
===============================*/

.basic-page-container {
  padding: 3rem 0 5rem 0;
  max-width: 60%;
  margin: 0 auto;
}

.basic-page-top_image {
  display: block; 
  max-width: 300px;
  padding: 0 0 2rem 0;
  width: 100%;
  margin: 0 auto;
  height: auto;
}

.basic-page-title {
  text-transform: uppercase;
  font-size: 3rem;
  text-align: center;
  font-family: var(--font-accent);
  color: var(--brand_color_dark);
  font-weight: 600;
}

.basic-page-container h4 {
  font-size: 2.2rem;
  padding: 2rem 0 .5rem 0;
  margin: 0;
  color: var(--brand_color_primary);
}

.basic-page-copy {
  font-weight: 300;
  line-height: 23px;
  color: #404041;
}

.contact-us-intro {
  margin: 0;
  text-align: center;
  line-height: 27px;
  padding: 0 0 2rem;
  font-size: 1rem;
  letter-spacing: .7px;
  font-weight: 300;
}

.contact-us {
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 0 3rem 0;
}

.contact-us .contact-field input,
.contact-us .contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  font-weight: 300;
}

.contact-us .contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-us textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-us .contact-submit {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--brand_color_primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  width: 100%;
  font-family:  var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-success {
  color: var(--brand_color_dark);
  font-size: 1rem;
  text-align: center;
  margin: 2rem 0;
  letter-spacing: .4px;
}

.our-story-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; 
  justify-content: center;
}

.our-story-image {
  max-width: 100%;
  height: auto; 
  display: block;
}

@media (max-width: 767px) {
.basic-page-top_image {
  max-width: 250px;
}
}



/*==============================
      FOOTER
===============================*/

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-inner {
  grid-template-columns: auto 1fr 1.4fr;
  padding: 4rem 0 4rem 0;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.footer-logo {
  margin: 0 auto;
}

.footer-nav ul {
  justify-items: left;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .9rem;
  font-weight: 300;
  font-family: var(--font-primary);
}

.footer-nav a,
.footer-bottom a {
  color: var(--footer-text);
  text-decoration: none;
}

.footer-shop-name {
  font-weight: 400;
  font-size: 2.3rem;
}

.footer-newsletter {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.newsletter-title {
  font-family: var(--font-accent);
  margin: 0rem 0 0.75rem 0;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}

.newsletter-field {
  background: #fff;
  border-radius: 20px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  display: flex;
}

.newsletter-field input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  color: #333;
  outline: none;
  padding: 0.4rem 0.6rem;
}

.newsletter-submit {
  border: 0;
  border-radius: 9999px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand_color_secondary);
  color: #fff;
  cursor: pointer;
}

.newsletter-message {
  margin-top: .65rem;
  font-size: 1rem;
  color: var(--brand_color_light);
  text-align: center;
}

.newsletter-disclaimer {
  text-align: center;
  padding-bottom: .5rem;
  letter-spacing: 1.2px;
  font-size: .7rem;
  text-transform: uppercase;
}

.footer-divider {
  width: 90%;
  max-width: 1200px;
  margin: 0.75rem auto 0;
  border: 0;
  height: 1px;
  background: #fff;
}

.footer-bottom {
  justify-content: left;
  display: flex;
  width: 90%;
  max-width: 1200px;
  margin: .75rem auto 0;
  padding-bottom: 4rem;
  gap: 1rem;
  align-items: center;
  font-size: .9rem;
  opacity: .85;
  font-weight: 300;
  letter-spacing: .3px;
}

.footer-copy {
  margin-right: 2rem; 
  text-align: center;
}

.footer-separator {
  margin-right: 1rem; 
}

.footer-bottom-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 767px) {
  .footer-inner {
    padding: 2rem 0;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo { 
    margin: 0; 
  } 
  .footer-nav ul {
    justify-items: center;
  }
  .newsletter-title {
    margin: 2rem 0 0.75rem 0;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr; 
    justify-content: center;
  }
}












/*===================================================================
        OLD TIDY PLANS CODE BELOW THIS POINT
=====================================================================*/


@keyframes spin { to { transform: rotate(360deg); } }

/* Any button with .is-loading gets the spinner */
.btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent; /* hide the text */
}

.btn-loading::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255,255,255,0.4); /* fallback */
  border-top-color: #fff; /* spinner color (adjust as needed) */
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

.btn-loading .button-text {
  opacity: 0;  
  transition: opacity .2s ease;
}

/* Spinner inside cart item row */
.cart-item.btn-loading {
  position: relative;
  opacity: 0.6;
  pointer-events: none;
  color: initial;
}

.cart-item.btn-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;  
  margin-left: -12px; 
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: #000;
  border-radius: 50%;
  z-index: 10;
  animation: spin 0.6s linear infinite;
}



/*==========================
    DRAWER STRUCTURE
===========================*/

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  width: 450px;
  max-width: 85vw;
}

.drawer--right {
  right: 0;
  transform: translateX(100%);
}

.drawer--right.is-open {
  transform: translateX(0);
}

.drawer--left {
  left: 0;
  transform: translateX(-100%);
}

.drawer--left.is-open {
  transform: translateX(0);
}

.drawer__close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  color: inherit;
}

/* Lock the page when a drawer is open */
html.drawer-open,
body.drawer-open {
  overflow: hidden;
  height: 100%;
}

.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.drawer.is-open + .drawer__overlay {
  opacity: 1;
  visibility: visible;
}

.drawer__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  overflow-y: auto;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.drawer__title {
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0;
  color: var(--brand_color_dark);
}

/*=================================
      FOR ITEMS WITHIN CART
==================================*/

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.cart-item__image img {
  width: 100;
  height: 100;
  object-fit: cover;
  display: block;
}

.cart-item__info {
  flex: 1;
}

.cart-item__title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  padding: 0 0 .5rem 0;
  overflow-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item__variant {
  font-size: .85rem;
  font-weight: 300;
  margin: 0;
  padding: 0 0 .5rem 0;
}

.cart-item__price {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
  padding: 0 0 .5rem 0;
  color: var(--brand_color_primary);
}

.cart-item__remove-form {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.cart-item__remove {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cart-item__remove:hover {
  color: #000;
}


.js-cart-drawer-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-footer {
  margin-top: auto;
  background: #fff;
  padding-top: 1rem;
  border-top: 1.5px solid #ddd;
  border-bottom: 1.5px solid #ddd;
}

.cart-total {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-top: .5rem;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.empty-cart-message {
  text-align: center;
  padding: 2rem;
  color: #777;
  font-size: 1rem;
}

.empty-cart-button {
  display: inline-block;
  background-color: var(--brand_color_primary);
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  margin: 1rem auto;
  max-width: 400px;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 1.1px;
  border-radius: 2px;
  text-decoration: none;
}

.cart-item__price {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  padding: 0 0 .5rem 0;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  width: fit-content;
}

.quantity-btn {
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 16px;
  font-family: var(--font-primary);
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: #000;
  border-radius: 0;
}

.quantity-input {
  width: 40px;
  text-align: center;
  border: none;
  padding: 5px 0;
  margin: 0;
  font-family: var(--font-primary);
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input {
  -moz-appearance: textfield;
}


/*================================
        FULL CART PAGE
=================================*/

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

.basic-page-top_image {
  display: block;
  margin: 0 auto;
}

.cartpage-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 100;
  font-family: var(--font-accent);
  margin-bottom: .5rem;
}

.cartpage-note {
  font-size: .8rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 0 0 .5rem 0;
}

.cartpage-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.cartpage-table th {
  font-size: 0.9rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}

.cart-header-product { 
  text-align: left; 
}

.cart-header-qty { 
  text-align: center; 
}

.cart-header-total { 
  text-align: right; 
}

.cartpage-table tbody td {
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}

.cartpage-table tbody tr:last-child td {
  border-bottom: none;
}

.cartpage-item-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cartpage-image {
  display: block;
  object-fit: cover;
}

.cartpage-item-title {
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
  letter-spacing: .2px;
  padding-right: 1rem;
}

.cartpage-item-title a {
  text-decoration: none;
  color: inherit;
}

.cartpage-variant-title {
  font-size: 0.9em;
  color: #666;
  margin: 0 0 10px;
}

.cartpage-remove {
  background: none;
  border: none;
  color: var(--brand_color_primary);
  font-size: 0.85em;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .8px;
}

.cartpage-quantity {
  text-align: center;
}

.quantity-selector {
  margin: 0 auto;
}

.cartpage-lineprice {
  font-weight: 500;
  font-size: 1.1rem;
  text-align: right;
}

.cartpage-subtotal-label {
  text-align: right; 
  padding-right: 20px;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.cartpage-subtotal-value {
  text-align: right;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-weight: 700;
  font-size: 1.3rem;
}

.cartpage-checkout-container {
  text-align: right; 
  margin-top: 20px;
}

.cartpage-empty {
  text-align: center;
  padding: 2rem;
}

.cartpage-empty-title {
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0 0 4rem 0;
}


/*================================
      MOBILE OVERRIDES (<767px)
      (Stacked / Big Image Layout)
=================================*/
@media (max-width: 767px) {

  .cartpage-table, 
  .cartpage-table tbody {
    display: block;
    width: 100%;
  }
  .cartpage-table thead {
    display: none; 
  }
  .cartpage-table tbody tr {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 2rem;
  }
  .cartpage-table tbody td {
    border: none;
    padding: 0.2rem 0;
    display: block;
    width: 100%;
  }
  .cartpage-item-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cartpage-image {
    width: 100%;      
    max-width: 280px; 
    height: auto;
  }
  .cartpage-item-title {
    font-size: 1.2rem;
    text-align: center;
    padding: 0;
  }
  .cartpage-quantity {
    margin: 0.5rem 0;
  }
  .cartpage-lineprice {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
  }
  .cartpage-subtotal-label,
  .cartpage-subtotal-value {
    display: block;
    width: auto;
    text-align: right;
    border: none;
    padding: 0.2rem 0;
  }

  .cartpage-table tfoot {
    display: block;
    width: 100% !important;
  }
  .cartpage-subtotal-row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cartpage-checkout-container {
    text-align: center;
  }


/*=======================================
    FOR MENU ITEMS WITHIN BURGER MENU
========================================*/

.drawer-nav {
  width: 100%;
  --drawer-row-h: 70px;        /* parent row height */
  --drawer-child-row-h: 60px;  /* child row height */
}

.drawer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav__parents {
  border-bottom: 1px solid #eee;
  position: relative;  /* for accordion toggle positioning */
}

/* Parent link */
.drawer-nav__parent {
  display: flex;
  align-items: center;
  min-height: var(--drawer-row-h);
  text-decoration: none;
  color: var(--brand_color_dark);
  text-transform: uppercase;
  padding: 0rem;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-right: 1rem; /* space for arrow toggle */
}

/* Children list under a parent */
.drawer-nav__children {
  list-style: none;
  margin: 0;
  padding: 0 0 0.25rem 0;
  display: none; /* closed by default */
}

/* Child link */
.drawer-nav__child {
  display: flex;
  align-items: center;
  min-height: var(--drawer-child-row-h);
  padding: 0 1rem;
  color: var(--brand_color_dark);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  position: relative;
  padding-right: 2.5rem; /* space for potential grandchild toggle */
}

.drawer-nav__child:hover {
  background: #f6f6f6;
}

/* Grandchildren list under a child - HIDDEN */
.drawer-nav__grandchildren {
  display: none !important;
}

/* ===== Parent Accordion Toggle (radio version) ===== */
.drawer-acc-button {
  position: absolute;
  top: 0;
  right: 0;
  height: var(--drawer-row-h);
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-acc-button::after {
  content: "▾";
  font-size: 0.9em;
  transition: transform 0.2s ease;
}

/* Rotate arrow when open */
.drawer-acc-toggle:checked + .drawer-acc-button::after {
  transform: rotate(180deg);
}

/* Show children when radio is checked */
.drawer-acc-toggle:checked ~ .drawer-nav__children {
  display: block;
}

/* Arrow inside full-width clickable parent */
.drawer-acc-icon {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg); /* down arrow */
  transition: transform 0.2s ease;
}

/* Rotate when accordion open */
.drawer-acc-toggle:checked + .drawer-nav__parent .drawer-acc-icon {
  transform: rotate(-135deg); /* up arrow */
}



/*========================================
      DOWNLOAD PAGE STYLING IMPROVEMENTS
=========================================*/

.sdd-download-button {
  background-color: var(--brand_color_secondary) !important;
  color: #fff !important;
  border-radius: 12px !important;
  border: none !important;
  box-shadow: none !important;
  appearance: none;
  font-family: var(--font-primary);
  font-weight: 400 !important;
  cursor: pointer;
}

.sdd-download-button.hover-fade:hover {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.sdd-download {
  padding: 20px 0 60px 0 !important;
}

.sdd-download-heading {
  font-family: var(--font-accent);
  font-color: var(--brand_color_dark) !important;
  font-size: 2.2rem !important;
  font-weight: 100 !important;
  margin: 0 1rem;
}

.sdd-download-image {
  display: inline-block;
  max-height: 350px !important;
  max-width: 350px !important;
  border-radius: 10px;
}

.sdd-download-heading {
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  margin: 0;
}

.sdd-download-product {
  letter-spacing: .7px;
  font-weight: 500;
}
