/** Shopify CDN: Minification failed

Line 367:0 Unexpected "<"
Line 378:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
/* Add your custom styles here */
.category-buttons {
  display: flex;
  align-items: center;
      margin-top: 20px;
    margin-bottom: 20px;
}

.category-buttons__heading {
    font-family: 'DIN Next';
    font-size: 24px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
    margin-right: 20px;
    white-space: nowrap;
    margin: 20px 20px 20px 0;
}
  

.category-buttons-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    overflow: scroll;
    width: 100%;
    height: 60px;
    justify-content: flex-start;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.category-buttons__button {
    display: block;
    width: max-content;
    background-color: #fff;
    color: #000;
    border: 1px solid #D6D6D6;
    border-radius: 100px;
    padding: 8px 18px;
    text-decoration: none;
    transition: background-color .3s,color .3s,border-color .3s;
    font-size: 16px;
}

.category-buttons__button:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.category-buttons-container::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 989px) {
  .category-buttons {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-buttons.page-width {
    padding-right: 0;
  }

  .category-buttons-container {
    gap: 8px;
  }

  .category-buttons__button {
    padding: 8px 18px;
    font-size: 14px;
  }

  .category-buttons__heading {
    margin: 0;
  }
}
/* --- Base Desktop / Tablet Layout --- */
.rp-artistic-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--container-width, 1500px);
  margin-top: var(--margin-top, 60px);
  margin-bottom: var(--margin-bottom, 60px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.rp-artistic-container.full-bleed { max-width: 100%; width: 100%; }
.rp-artistic-container.height-medium { min-height: 600px; }
.rp-artistic-container.height-tall { min-height: 850px; }

.rp-artistic-media {
  flex: 0 0 var(--media-width, 900px);
  position: relative;
  z-index: 1;
}
.rp-artistic-media img,
.rp-artistic-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rp-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--overlay-color, #000);
  opacity: var(--overlay-opacity, 0.3);
  z-index: 2;
}
.rp-overlay.gradient {
  background: linear-gradient(180deg, rgba(0,0,0,var(--overlay-opacity,0.3)) 0%, rgba(0,0,0,0) 100%);
}

.rp-artistic-text {
  flex: 1 1 auto;
  margin-left: calc(-1 * var(--overlap-width, 100px));
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.rp-artistic-text-inner {
  background-color: var(--text-bg-color, #fff);
  opacity: var(--text-bg-opacity, 0.9);
  padding: var(--text-padding, 40px);
  width: 100%;
  max-width: var(--text-width, 800px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  z-index: 4;
  transition: all 0.3s ease;
}

.rp-artistic-text-inner.blur-bg {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255,255,255,0.6);
}

.rp-artistic-container.left-layout {
  flex-direction: row-reverse;
}
.rp-artistic-container.left-layout .rp-artistic-text {
  margin-left: 0;
  margin-right: calc(-1 * var(--overlap-width, 100px));
  justify-content: flex-end;
}

/* ✅ Default mobile responsiveness (when stack_mobile = false) */
@media (max-width: 768px) {
  .rp-artistic-container:not(.stack-mobile) {
    flex-direction: column;
    align-items: center;
  }

  .rp-artistic-container:not(.stack-mobile) .rp-artistic-text {
    margin: 20px 0 0 0;
    align-items: center;
    justify-content: center;
  }

  /* ✅ use Theme Editor color + opacity */
  .rp-artistic-container:not(.stack-mobile) .rp-artistic-text-inner {
    max-width: 90%;
    background-color: var(--text-bg-color, #fff);
    opacity: var(--text-bg-opacity, 0.9);
    box-shadow: none;
  }

  .rp-artistic-container:not(.stack-mobile) .rp-artistic-media img,
  .rp-artistic-container:not(.stack-mobile) .rp-artistic-media video {
    height: auto;
    object-fit: contain;
  }
}

/* ✅ Simplified stacked layout (when stack_mobile = true) */
@media (max-width: 768px) {
  .rp-artistic-container.stack-mobile {
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    margin-top: calc(var(--margin-top, 60px) / 2);
    margin-bottom: calc(var(--margin-bottom, 60px) / 2);
  }

  .rp-artistic-container.stack-mobile .rp-artistic-media {
    flex: 1 1 100%;
    width: 100%;
    margin: 0;
    z-index: 1;
  }

  .rp-artistic-container.stack-mobile .rp-artistic-text {
    flex: 1 1 100%;
    margin: 0;
    z-index: 2;
    display: block;
  }

  /* ✅ use Theme Editor color + opacity */
  .rp-artistic-container.stack-mobile .rp-artistic-text-inner {
    max-width: 100%;
    box-shadow: none;
    background-color: var(--text-bg-color, #fff);
    opacity: var(--text-bg-opacity, 0.9);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 30px 20px;
    text-align: left;
  }

  .rp-artistic-container.stack-mobile .rp-overlay {
    display: none;
  }

  .rp-artistic-container.stack-mobile .rp-artistic-media img,
  .rp-artistic-container.stack-mobile .rp-artistic-media video {
    height: auto;
    max-height: 500px;
    object-fit: contain;
  }
}

.rp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.rp-btn:hover { background-color: #444; }
.rp-two-column {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.rp-media {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
}

.rp-media img,
.rp-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rp-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Overlay Layer */
.rp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-color, #000);
  opacity: var(--overlay-opacity, 0.3);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.rp-overlay.gradient {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, var(--overlay-opacity, 0.3)) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Text container */
.rp-text {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: var(--text-vertical-align, center);
  z-index: 2;
}

.rp-text-inner {
  position: relative;
  background-color: var(--text-bg-color, #fff);
  opacity: var(--text-bg-opacity, 0.9);
  padding: var(--text-padding, 40px);
  max-width: var(--text-max-width, 600px);
  text-align: var(--text-horizontal-align, left);
  z-index: 3;
  transition: all 0.3s ease;
}

.rp-two-column.left-text {
  flex-direction: row-reverse;
}

.rp-two-column.left-text .rp-text {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .rp-two-column {
    flex-direction: column;
  }

  .rp-text,
  .rp-media {
    flex: 1 1 100%;
  }

  .rp-text-inner {
    max-width: 100%;
    padding: 30px 20px;
    text-align: left;
  }
}

.rp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.rp-btn:hover {
  background-color: #444;
}
<style>
/* Insert your CSS here */
.custom-section-wrapper {
  padding: 20px;
  text-align: center;
}
/* Example: target section content */
.custom-section-wrapper p {
  color: #333;
  font-size: 16px;
}
</style>