/** Shopify CDN: Minification failed

Line 27:12 Expected identifier but found whitespace
Line 27:14 Unexpected "{"
Line 27:23 Expected ":"
Line 27:51 Expected ":"
Line 512:8 Unexpected "{"
Line 512:17 Expected ":"
Line 512:24 Unexpected "{"
Line 755:4 Unexpected "{"
Line 755:5 Expected identifier but found "%"
Line 756:30 Unexpected "{"
... and 5 more hidden warnings

**/

.ct2-section {
  background: var(--ct2-bg);
  padding: var(--ct2-pad) 0;
  padding-bottom: 60px;
  font-family: inherit;
  color: var(--ct2-text);
  overflow: hidden;
}

.ct2-wrap {
  max-width: {{ section.settings.content_width }}px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.ct2-header {
  text-align: center;
  margin-bottom: 36px;
}
.ct2-heading {
  font-size: clamp(22px, 3.5vw, {{ section.settings.heading_size }}px);
  font-weight: 700;
  color: var(--ct2-accent);
  margin: 0 0 6px;
  line-height: 1.25;
  font-family: Roboto Slab, serif;
}
.ct2-subheading {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  color: var(--ct2-accent);
  margin: 0 auto;
  opacity: 0.75;
  max-width:700px;
  line-height: 28px;
}

/* ── Tab Nav ── */
.ct2-nav-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 0;
}
.ct2-nav-outer::-webkit-scrollbar { display: none; }

.ct2-nav {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid #e5e7e4;
  position: relative;
  min-width: max-content;
  width: 100%;
}

.ct2-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 20px 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  color: #000;
  min-width: 130px;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.ct2-tab__icon {
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.ct2-tab__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.ct2-tab:hover .ct2-tab__icon {
  transform: translateY(-2px);
}
.ct2-tab:hover .ct2-tab__label {
  color: var(--ct2-accent);
  font-weight:700;
}

.ct2-tab__label {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s, font-weight 0.2s;
  font-family: 'Figtree';
}

.ct2-tab.is-active .ct2-tab__label {
  color: var(--ct2-accent);
  font-weight: 700;
}
.ct2-tab.is-active .ct2-tab__icon {
  color: var(--ct2-accent);
}

/* Hide the individual line spans — we use the indicator instead */
.ct2-tab__line { display: none; }

/* ── Sliding Indicator ── */
.ct2-indicator {
  position: absolute;
  bottom: -2px;
  height: 3px;
  background: var(--ct2-accent);
  border-radius: 3px 3px 0 0;
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1), width 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

/* ── Panel ── */
.ct2-panel { display: none; }
.ct2-panel.is-active { display: block; }

/* ── Product Card ── */
.ct2-card {
  flex: 0 0 var(--ct2-card-w);
  width: var(--ct2-card-w);
  scroll-snap-align: start;
  background: var(--ct2-card-bg);
  border-radius: var(--ct2-card-radius);
  overflow: hidden;
 /* border: 1px solid #ece9e2;*/
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ct2-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.ct2-card__img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: #f7f5f0;
  overflow: hidden;
}
.ct2-card__img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0px;
  transition: transform 0.4s ease;
}
.ct2-card:hover .ct2-card__img { transform: scale(1.04); }

.ct2-card__badges {
  position: absolute;
  top: 8px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
}

.ct2-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
  text-align: center;
}
.ct2-badge--discount {
  background: var(--ct2-accent);
  color: #fff;
}
.ct2-badge--bestseller {
  background: #fbbf24;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 3px;
}

.ct2-card__selling-fast {
  position: absolute;
  bottom: 8px; left: 8px;
  background: #fff7e6;
  color: #d97706;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.ct2-card__add {
  position: absolute;
  bottom: 8px; right: 8px;
  background: var(--ct2-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}
.ct2-card__add:hover { opacity: 0.88; transform: scale(1.03); }

.ct2-card__body { padding: 12px 14px 14px; }

.ct2-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ct2-text);
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
 /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ct2-card__title a { 
  font-family: Roboto Slab, serif;
  font-size: 14px;
  color: inherit; 
  text-decoration: none; 
}
.ct2-card__title a:hover { color: var(--ct2-accent); }

.ct2-card__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ct2-card__compare {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
.ct2-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--ct2-text);
}
.ct2-card__sold {
  font-size: 11px;
  color: #e05a2b;
  font-weight: 600;
  background: #fff0eb;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}

.ct2-card__coupon {
  margin-top: 6px;
  font-size: 11px;
  color: var(--ct2-accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.8;
}

/* ── See All Button ── */
/* .ct2-see-all-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
} */
.ct2-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ct2-text);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ct2-text);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  background: transparent;
}
.ct2-see-all:hover {
  background: var(--ct2-text);
  color: var(--ct2-bg);
  transform: translateX(2px);
}
.ct2-empty {
  padding: 40px;
  opacity: 0.4;
  font-size: 14px;
}

.ct2-card__add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ct2-card__add-text {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.ct2-card__add-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.collection.collection-quick-add-bulk h2{
  font-family: Roboto Slab, serif;
  font-weight: 700;
  text-align: center;
  color: #235a49;
}

.collection-hero__title {
  font-family: Roboto Slab, serif;
  font-weight: 500;
  color: #235a49;
}

.collection-hero--with-image .collection-hero__text-wrapper, .collection-hero{
  padding-bottom:0px !important;
}

.collection-hero__inner {
  display:block !important;
}

.collection-hero__inner .collection-hero__image-container{
  margin-left:0px;
}

/*.collection-quick-add-bulk .product-grid {
  column-gap: 30px;
  row-gap: 30px;
}*/

.collection-quick-add-bulk .product-grid li.grid__item {
  padding: 10px;
}

.collection-quick-add-bulk .product-grid li.grid__item .card__heading{
  font-family: Roboto Slab, serif;
  font-size:14px;
}

.collection-quick-add-bulk .collection__description{
  text-align: center;
}

.collection-quick-add-bulk .product-grid li.grid__item .card__heading a{
  color: var(--ct2-accent);
}

.collection-quick-add-bulk .product-grid li.grid__item .rating-star:before {
  /*background: linear-gradient(
    90deg,
    #235a49 100%,
    #235a49 100%
  );*/
}

.collection-quick-add-bulk .card-wrapper{
  /*border: 1px solid #e9e9e9;
  border-radius: 10px;*/
  padding: 0px;
}

/*.collection-quick-add-bulk .card-wrapper:hover{
  box-shadow: 0 3px 4px #0000001d;
}*/
 
.collection-quick-add-bulk .quick-add__submit{
  background:#235a49;
  color:#FFF;
}

.collection-quick-add-bulk .button--secondary:after {
    --border-opacity: none;
}

.bulk-add-to-cart-bar {
  position: sticky;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 12px 20px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}

.bulk-add-summary {
  font-size: 0.95rem;
  color: #333;
}

.bulk-add-confirm-btn {
  min-width: 140px;
}

.bulk-atc-btn{
  background: #235a49;
  color: #FFF;
  padding: 0px 0px;
  font-size: 14px;
  width: 40% !important;
  min-width: 105px !important;
}

quick-add-bulk{
  display: flex;
  column-gap:5px;
}

.collection-quick-add-bulk .quantity__button {
  width: 35px;
}

.collection-quick-add-bulk .quantity {
    width: 100%;
    height: 10px;
    margin-top: 10px;
}

.footer-logo-marquee .logo-marquee-wrapper:before, .footer-logo-marquee .logo-marquee-wrapper:after {
  opacity:0;
}

.custom-footer-address a{
  color:#FFF;
}

.custom-footer-newsletter{
  padding-top:30px;
  padding-bottom:30px;
}

.header__active-menu-item {
  color: #FFF !important;
  font-weight: bold;
}

#cartDrawer .cart-drawer__header {
  background: #fafafa !important;
  color: #0d0d0d !important;
}

#cartDrawer .cart-drawer__close {
  color: #000 !important;
}

#cartDrawer .cart-item__title {
  font-weight: normal !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ct2-tab { padding: 6px 14px 12px; min-width: 130px; padding-left: 0px !important; padding-right: 0px !important; }
  .ct2-tab__icon { width: 80px; height: 80px; }
  .ct2-tab__icon img { width: 80px; height: 80px; }
  #ct2-{{ section.id }} { --ct2-card-w: 220px; }
  /* .ct2-see-all-wrap { justify-content: center; } */
}

/* Scroll bar + button row */
.ct2-see-all-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.ct2-scrollbar-track {
  flex: 1;
  height: 5px;
  background: #e5e7e4;
  border-radius: 99px;
  overflow: hidden;
  cursor: pointer;
}

.ct2-scrollbar-thumb {
  height: 100%;
  background: var(--ct2-accent);
  border-radius: 99px;
  transition: width 0.1s;
}

.ct2-see-all {
  flex-shrink: 0;
  /* keep your existing pill styles */
}

/* Products full width */
.ct2-product-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-top:25px;
  flex:1;
}
.ct2-product-row::-webkit-scrollbar { display: none; }

/* Cards equal width filling the row */
.ct2-card {
  flex: 0 0 calc((100% - 64px) / 4);
  scroll-snap-align: start;
}

@media (min-width: 1500px) {
  .ct2-card { flex: 0 0 calc((100% - 64px) / 5); }
}

@media (max-width: 1024px) {
  .ct2-card { flex: 0 0 calc((100% - 48px) / 4); }
}
@media (max-width: 768px) {
  .ct2-card { flex: 0 0 calc((100% - 32px) / 3); }
}
@media (max-width: 480px) {
  .ct2-card { flex: 0 0 calc((100% - 16px) / 2); }
}

.ct2-product-row {
  scroll-behavior: smooth;        /* smooth native scroll */
}

.ct2-scrollbar-thumb {
  cursor: grab;
  transition: width 0.15s, margin-left 0.05s, background 0.2s;
  display:block !important;
}
.ct2-scrollbar-thumb:active {
  cursor: grabbing;
  background: color-mix(in srgb, var(--ct2-accent) 80%, black);
}
.ct2-scrollbar-track {
  cursor: pointer;
}
/* Single Product Page */
.product__info-wrapper h1,
.related-products__heading{
   font-family: Roboto Slab, serif;
}
.product__description li p{
  margin:0;
  display:inline;
}
 
@media screen and (min-width: 990px) {
    .product--stacked .product__media-item:not(:first-of-type) {
        max-width: calc(33% - var(--grid-desktop-horizontal-spacing) / 2) !important;
    }
}
@media only screen and (min-width: 750px) {
    .product__info-wrapper  h1, .product__info-wrapper  .h1 {
        font-size: 30px;
    }
}

 .contact-page {
    font-family: 'Georgia', serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
  }

  .contact-page h1 {
    text-align: center;
    margin-bottom: 48px;
    color: #16423c;
    font-family: Roboto Slab, serif;
    font-size: 42px;
    font-weight: 600; 
  }

  .contact-page h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    margin-top:0;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
.contact-card{
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform .2s;
}
.contact-card:hover{
    transform:translateY(-5px);
}
  .contact-card h3 { 
    font-weight: 700; 
    color: #16423c;
    margin: 16px 0 8px;
    font-size: 19px;
  }

  .contact-card p,
  .contact-card a {
    font-size: 16px; 
    text-decoration: none; 
    display:block;
    color: #666;
    margin: 8px 0;
    line-height: 1.5;
  }

  .contact-card a:hover { color: #2d6a4f; }

  .map-tabs { 
    display: flex; 
    gap: 8px; 
    margin-bottom: 16px; 
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
    overflow:hidden;
}
 .contact-maps {
    min-height: 450px;
}
  .map-tab {
    flex: 1 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0);
    color: #222;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    font-size:16px;
  }

  .map-tab.active {
    background: #16423c;
    color: #fff;
    box-shadow: 0 2px 4px rgba(22, 66, 60, .2);
  }
  .map-tab:hover{
    background: rgba(22, 66, 60, .1);
    color: #16423c;
 }
  .map-frame { display: none; width: 100%; height: 90%; border: none; border-radius: 8px; }
  .map-frame.active { display: block; }
  .contact-row{
    display:flex;
    gap:50px;
    flex-wrap:wrap;   
    justify-content:space-between; 
    font-family: var(--font-body-family);
}
.contact-info,
.contact-maps{
    width:100%;
}
.contact-info svg{
    width: 28px;
    color: #16423c;
}
@media (min-width:1025px){
    .contact-info{
        width:30%;
    } 
    .contact-maps{
        width:65%;
    }
    .ct2-arrow{
      display:block !important;
    }
    /*.header__heading-logo{
      width:120px;
    }*/
}
.ct2-scroll-area {
    display: flex;
    align-items: center;
}
.ct2-arrow {
  border:none;
  background:none;
  padding:0;
  display:none;
  color:#235a49;
  cursor:pointer;
}
 .cat-row-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 20px 24px;
    {% comment %} scrollbar-width: none;
    -ms-overflow-style: none; {% endcomment %}
  }
  {% comment %} .cat-row-wrapper::-webkit-scrollbar { display: none; } {% endcomment %}

  .cat-row {
    display: flex;
    gap: 0;
    align-items: start;
    width: max-content;
    margin: 0 auto;
  }

  .cat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    transition: background-color .2s ease, color .2s ease;
    min-height: 80px;
    padding: 8px 8px 24px;
    text-decoration: none;
    width:100px;
  }

  .cat-img-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    transition: border 0.2s, transform 0.2s;
    /* background: #f3f3f3; */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cat-item:hover .cat-img-wrap {
    transform: scale(1.05);
  }

  .cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cat-img-wrap .cat-placeholder {
    font-size: 28px;
  }

  .cat-name {
    text-align: center;
    font-size: 12.7px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 1.2;
    height: 1em;
    color: #000000;
  }

  .cat-name:hover {
    color: #235a49;
  }

  .cat-item.active .cat-name,
  .cat-item:hover .cat-name {
    color: #235a49;
  }

  .cat-item.active .cat-name {
    font-weight: 600;
  }

  .cat-item.active   {
    /* background-color: #16423c;
    border-radius: 8px; */
    border-bottom: 3px solid #235a49;
  }
  .promo-banner {
    background-color: #16423c;
    padding: 40px 48px;
  }
  .promo-banner-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px; 
    max-width:950px;
    margin-inline:auto; 
}

  .promo-banner__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .promo-banner__heading {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.3;
  }

  .promo-banner__subheading {
    font-size: 16px;
    color: #a8d5c2;
    margin: 0 0 10px;
    line-height: 1.5;
  }

  .promo-banner__btn {
    padding: 12.8px 34px;
    background-color: #fff;
    color: #16423c;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17.5px;
    font-weight: 700;
    transition: background-color .3s ease-in-out; 
    flex-shrink: 0;
    display:flex;
    align-items:center;
    gap:8px;
  }

  .promo-banner__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  @media (max-width: 767px) {
    .promo-banner-inner {
      flex-direction: column;
      align-items: center;
      padding: 32px 24px;
      text-align:center;
    }

    .header__heading-logo{
      max-width: 100px;
    }
  }
  .header__heading-logo-wrapper.active img{
  /*transform: scale(0.85);*/
  transition: 0.3s;
}



/* Collection */

.collection .product-grid {
  /*gap: 50px !important;*/
}

.collection .product-grid .grid__item {
  /*width: 30% !important;
  max-width: 30% !important;*/
}


/* @media (min-width: 1500px) {

  .collection .product-grid .grid__item {
    width: 21% !important;
    max-width: 21% !important;
  }

} */


@media (min-width: 821px) and (max-width: 1024px) {

  .collection .product-grid .grid__item {
    width: 28% !important;
    max-width: 28% !important;
  }

}


@media (min-width: 601px) and (max-width: 820px) {

  .collection .product-grid .grid__item {
    width: 45% !important;
    max-width: 45% !important;
  }

}


@media (max-width: 600px) {

  /*.collection .product-grid .grid__item {
    width: 100% !important;
    max-width: 100% !important;
  }*/

}




/* About Us page */

.about-section {
  padding: 40px 20px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-title {
  color: #235a49;
  font-family: Roboto Slab, serif;
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
}

.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* 70% LEFT */
.about-left {
  flex: 0 0 65%;
  max-width: 65%;
}

/* 30% RIGHT */
.about-right {
  flex: 0 0 30%;
  max-width: 30%;
  text-align: center;
}

.about-heading {
  color: #235a49;
  font-family: Roboto Slab, serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-highlight {
  font-weight: 600;
  color: #1f3d3a;
}

.about-image {
  max-width: 100%;
  height: auto;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-left,
  .about-right {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .about-left {
    order: 2;
  }

  .about-right {
    order: 1;
  }

  .about-title {
    font-size: 28px;
  }

  .about-image {
    max-width: 50%;
  }

}

@media (max-width: 600px) {
  .about-heading {
    font-size: 22px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-section {
    padding: 60px 15px;
  }

  .about-image {
    max-width: 100%;
  }
}



/* Our Promise Section */

.promise-section {
  padding: 40px 20px;
  padding-bottom: 60px;
}

.promise-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* HEADING */
.promise-heading {
  color: #235a49;
  font-family: Roboto Slab, serif;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

/* TEXT */
.promise-text {
  color: #444;
  font-size: 15.5px;
  line-height: 1.9;
}

.promise-paragraph {
  margin-bottom: 20px;
}

.promise-paragraph p {
  margin: 0;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {
  .promise-heading {
    font-size: 24px;
  }

  .promise-text {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .promise-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .promise-heading {
    font-size: 22px;
  }

  .promise-text {
    font-size: 14px;
  }
}


/* Video Section */

/* REMOVE ALL SPACING */
.fullwidth-video-section {
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: 0;
}

/* VIDEO FULL WIDTH */
.fullwidth-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



/* Express Order page */

@media (max-width: 640px) {

  .eo-table-wrap .prod-price {
    display: flex;
    justify-content: center;
  }

  .eo-table-wrap .qty-cell {
    display: flex;
    justify-content: center;
  }

  .eo-table-wrap .eo-table td:last-child {
    display: flex;
    justify-content: center;
  }

  .eo-table-wrap .eo-table td:last-child .atc-btn {
    width: 50%;
  }

}



/* Shipping and Delivery page */

#shipping,
#exchanges,
#cancellations,
#returns,
#damages,
#non-returnable,
#refunds {
  scroll-margin-top: 120px !important;
}