/** Shopify CDN: Minification failed

Line 1407:31 Unexpected "{"
Line 1407:40 Expected ":"
Line 1412:31 Unexpected "{"
Line 1412:40 Expected ":"
Line 1412:47 Unexpected "{"
Line 1417:31 Unexpected "{"
Line 1417:40 Expected ":"
Line 1423:31 Unexpected "{"
Line 1423:40 Expected ":"
Line 1429:31 Unexpected "{"
... and 47 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:animated-testimonials (INDEX:0) */
.animated-testimonials-section {
    width: 100%;
    margin: 0;
    padding: 1rem 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--anim-testimonial-bg, #f1f1f7) !important;
    font-family: var(--font-body-family), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .testimonial-container {
    width: 100%;
    max-width: 56rem;
    padding: 1rem;
  }

  .animated-testimonials-heading {
    font-size: clamp(1.25rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--anim-testimonial-text, #000);
    text-align: center;
    margin: 0 0 clamp(1.75rem, 5vw, 3rem) 0;
    line-height: 1.2;
  }

  .testimonial-grid {
    display: grid;
    gap: var(--anim-testimonial-content-image-gap-mobile, 1.25rem);
    grid-template-columns: 1fr;
  }

  .image-container {
    position: relative;
    width: 100%;
    height: min(var(--anim-testimonial-image-height-mobile, 280px), 40vh);
    order: 1;
    margin-block: clamp(1.25rem, 3vw, 2.5rem);
  }

  .image-stack-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    min-width: 0;
    perspective: 1000px;
  }

  .image-container--contain .image-stack-inner {
    width: auto;
    max-width: 100%;
    height: 100%;
    aspect-ratio: var(--anim-testimonial-first-aspect, 1);
    margin-inline: auto;
  }

  .testimonial-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: var(--anim-testimonial-image-object-fit, cover);
    border-radius: var(--anim-testimonial-border-radius, 1rem);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    will-change: transform, opacity;
    backface-visibility: hidden;
  }

  .testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.25rem;
    order: 2;
    min-height: auto;
  }

  .name {
    font-size: clamp(1.1rem, 3.5vw, var(--anim-testimonial-name-size, 1.5rem));
    font-weight: 700;
    color: var(--anim-testimonial-text, #000);
    margin: 0 0 0.2rem 0;
    line-height: 1.2;
  }

  .designation {
    font-size: clamp(0.7rem, 2.5vw, var(--anim-testimonial-designation-size, 0.875rem));
    color: var(--anim-testimonial-text, #6b7280);
    opacity: 0.7;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }

  .quote {
    font-size: clamp(0.9rem, 2.5vw, var(--anim-testimonial-quote-size, 1.125rem));
    color: var(--anim-testimonial-text, #4b5563);
    line-height: 1.5;
    min-height: 0;
    margin: 0;
  }

  .quote .word {
    display: inline-block;
    margin-right: 0.25em;
    white-space: pre-wrap;
  }

  .arrow-buttons {
    display: flex;
    gap: 0.75rem;
    padding-top: 0;
    justify-content: flex-start;
  }

  .arrow-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--anim-testimonial-button-bg, #141414);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    color: var(--anim-testimonial-button-icon, #fff);
  }

  .arrow-button:hover {
    background-color: var(--anim-testimonial-button-hover, #00a6fb);
    transform: scale(1.1);
  }

  .arrow-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
  }

  .prev-button:hover svg { transform: translateX(-2px); }
  .next-button:hover svg { transform: translateX(2px); }

  /* Tighter horizontal insets on small screens only (same for image + text — avoids full-bleed mismatch) */
  @media screen and (max-width: 767px) {
    .animated-testimonials-section {
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }
    .testimonial-container {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }
  }

  @media screen and (min-width: 768px) {
    .animated-testimonials-section { padding: 2rem 1rem; }
    .testimonial-container { padding: 2rem; }
    .animated-testimonials-heading { margin-bottom: clamp(1.25rem, 2.5vw, 2rem); }
    .testimonial-grid {
      grid-template-columns: 1fr 1fr;
      gap: var(--anim-testimonial-gap, 5rem);
    }
    .image-container {
      height: var(--anim-testimonial-image-height-tablet, 30rem);
      min-height: auto;
      margin-block: clamp(1rem, 2vw, 1.75rem);
    }
    .testimonial-content {
      gap: 1.5rem;
      min-height: var(--anim-testimonial-content-min-height-desktop, 320px);
    }
    .designation { margin-bottom: 2rem; }
    .quote { min-height: var(--anim-testimonial-quote-min-height, 100px); }
    .arrow-buttons { gap: 1rem; }
  }

  @media screen and (min-width: 1025px) {
    .image-container {
      height: var(--anim-testimonial-image-height-desktop, 35rem);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .testimonial-image, .word { transition: none !important; }
  }
/* END_SECTION:animated-testimonials */

/* START_SECTION:charity-leaf-panel (INDEX:11) */
.charity-leaf-section {
    position: relative;
    padding-block: 60px;
  }

  .charity-leaf__wavy-lines {
    margin-bottom: 40px;
    width: 100%;
  }

  .charity-leaf__panels-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--overlap-offset);
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .charity-leaf__panel {
    background: var(--panel-background);
    border: var(--panel-border-width) solid var(--panel-border-color);
    border-radius: var(--panel-border-radius);
    padding: 40px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .charity-leaf__panel--left {
    z-index: 2;
  }

  .charity-leaf__panel--right {
    z-index: 1;
    margin-left: calc(var(--overlap-offset) * -1);
  }

  .charity-leaf__panel-inner {
    width: 100%;
    height: 100%;
  }

  .charity-leaf__image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--panel-border-radius) - 10px);
  }

  .charity-leaf__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .charity-leaf__image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: calc(var(--panel-border-radius) - 10px);
  }

  .charity-leaf__bubble {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bubble-background);
    border: 2px solid var(--bubble-border-color);
    border-radius: 20px;
    padding: 15px 20px;
    max-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }

  .charity-leaf__bubble-content {
    color: var(--bubble-text-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
  }

  .charity-leaf__bubble-tail {
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--bubble-background);
  }

  .charity-leaf__bubble-tail::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -12px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--bubble-border-color);
    z-index: -1;
  }

  .charity-leaf__text-content {
    color: var(--text-color);
  }

  .charity-leaf__heading {
    color: var(--heading-color);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .charity-leaf__text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .charity-leaf__text p {
    margin-bottom: 15px;
  }

  .charity-leaf__text p:last-child {
    margin-bottom: 0;
  }

  .charity-leaf__button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--panel-border-color);
    color: var(--panel-background);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--panel-border-color);
  }

  .charity-leaf__button:hover {
    background: transparent;
    color: var(--panel-border-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* Animation Classes */
  .charity-leaf__animation-fade-in {
    animation: fadeIn var(--image-animation-duration) ease-out var(--image-animation-delay) forwards;
    opacity: 0;
  }

  .charity-leaf__animation-slide-left {
    animation: slideInLeft var(--image-animation-duration) ease-out var(--image-animation-delay) forwards;
    opacity: 0;
  }

  .charity-leaf__animation-slide-right {
    animation: slideInRight var(--image-animation-duration) ease-out var(--image-animation-delay) forwards;
    opacity: 0;
  }

  .charity-leaf__animation-slide-up {
    animation: slideInUp var(--image-animation-duration) ease-out var(--image-animation-delay) forwards;
    opacity: 0;
  }

  .charity-leaf__animation-slide-down {
    animation: slideInDown var(--image-animation-duration) ease-out var(--image-animation-delay) forwards;
    opacity: 0;
  }

  .charity-leaf__animation-zoom-in {
    animation: zoomIn var(--image-animation-duration) ease-out var(--image-animation-delay) forwards;
    opacity: 0;
  }

  .charity-leaf__animation-rotate {
    animation: rotateIn var(--image-animation-duration) ease-out var(--image-animation-delay) forwards;
    opacity: 0;
  }

  .charity-leaf__animation-bounce {
    animation: bounceIn var(--image-animation-duration) ease-out var(--image-animation-delay) forwards;
    opacity: 0;
  }

  /* Image-specific animations */
  .charity-leaf__image-animation-pulse {
    animation: pulse 2s ease-in-out infinite;
  }

  .charity-leaf__image-animation-float {
    animation: float 3s ease-in-out infinite;
  }

  .charity-leaf__image-animation-zoom-hover:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }

  .charity-leaf__image-animation-rotate-hover:hover {
    transform: rotate(5deg);
    transition: transform 0.3s ease;
  }

  /* Bubble animations */
  .charity-leaf__bubble-animation-fade-in {
    animation: fadeIn var(--bubble-animation-duration) ease-out var(--bubble-animation-delay) forwards;
    opacity: 0;
  }

  .charity-leaf__bubble-animation-bounce {
    animation: bounceIn var(--bubble-animation-duration) ease-out var(--bubble-animation-delay) forwards;
    opacity: 0;
  }

  .charity-leaf__bubble-animation-pulse {
    animation: pulse 2s ease-in-out infinite;
  }

  .charity-leaf__bubble-animation-float {
    animation: float 3s ease-in-out infinite;
  }

  /* Keyframe Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes rotateIn {
    from {
      opacity: 0;
      transform: rotate(-10deg) scale(0.8);
    }
    to {
      opacity: 1;
      transform: rotate(0deg) scale(1);
    }
  }

  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.3) translateY(-100px);
    }
    50% {
      opacity: 1;
      transform: scale(1.05) translateY(0);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  /* Responsive Design */
  @media screen and (max-width: 989px) {
    .charity-leaf__panels-wrapper {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .charity-leaf__panel--right {
      margin-left: 0;
    }

    .charity-leaf__panel {
      padding: 30px;
    }

    .charity-leaf__bubble {
      position: relative;
      top: auto;
      right: auto;
      margin-top: 20px;
      max-width: 100%;
    }
  }

  @media screen and (max-width: 749px) {
    .charity-leaf-section {
      padding-block: 40px;
    }

    .charity-leaf__panel {
      padding: 20px;
    }

    .charity-leaf__wavy-lines {
      margin-bottom: 30px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .charity-leaf__animation-fade-in,
    .charity-leaf__animation-slide-left,
    .charity-leaf__animation-slide-right,
    .charity-leaf__animation-slide-up,
    .charity-leaf__animation-slide-down,
    .charity-leaf__animation-zoom-in,
    .charity-leaf__animation-rotate,
    .charity-leaf__animation-bounce,
    .charity-leaf__image-animation-pulse,
    .charity-leaf__image-animation-float,
    .charity-leaf__bubble-animation-pulse,
    .charity-leaf__bubble-animation-float {
      animation: none;
      opacity: 1;
    }
  }
/* END_SECTION:charity-leaf-panel */

/* START_SECTION:expanding-cards (INDEX:15) */
.expanding-cards-section {
    position: relative;
    width: 100%;
    padding: 2rem 0;
    overflow: hidden;
  }
  
  /* Only set transparent if no custom background is set */
  .expanding-cards-section:not([style*="background-color"]) {
    background: transparent;
  }

  .expanding-cards-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
  }

  .expanding-cards-container {
    display: flex;
    width: 90vw;
    max-width: 1400px;
    margin: 0 auto;
    gap: 10px;
  }

  .expanding-cards-section[data-drag-expand="true"] .expanding-cards-container {
    cursor: grab;
  }
  .expanding-cards-section[data-drag-expand="true"] .expanding-cards-container:active {
    cursor: grabbing;
  }

  .expanding-cards-panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: var(--section-height, 80vh);
    border-radius: var(--border-radius, 15px);
    color: white;
    cursor: pointer;
    flex: var(--inactive-flex, 0.5);
    position: relative;
    transition: flex var(--transition-speed, 0.7s) ease-in;
    border: var(--border-width, 2px) solid var(--border-color, #000);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Desktop image by default */
    background-image: var(--panel-bg-desktop);
  }

  /* Ensure desktop image on desktop screens */
  @media screen and (min-width: 750px) {
    .expanding-cards-panel {
      background-image: var(--panel-bg-desktop) !important;
    }
  }

  .expanding-cards-panel.active {
    flex: var(--active-flex, 5);
  }

  .expanding-cards-title {
    font-size: clamp(18px, 2.5vw, 24px);
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    opacity: 0;
    background: rgba(0, 0, 0, var(--text-bg-opacity, 0.7));
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: opacity 0.3s ease-in 0.4s;
    pointer-events: none;
    white-space: nowrap;
  }

  .expanding-cards-panel.active .expanding-cards-title {
    opacity: 1;
  }

  /* Watermark Styles */
  .expanding-cards-watermark {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 2rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: watermark-fade-in 1.5s ease-out 0.5s forwards;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    z-index: 100;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
  }

  .expanding-cards-watermark:hover {
    color: rgba(0, 0, 0, 0.35);
    transform: translateY(0) scale(1.05);
    pointer-events: auto;
  }

  @keyframes watermark-fade-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Design */
  @media screen and (max-width: 749px) {
    /* Mobile image only on mobile */
    .expanding-cards-panel {
      background-image: var(--panel-bg-mobile) !important;
    }

    .expanding-cards-container {
      width: 100%;
      max-width: 100%;
      padding: 0 12px;
      box-sizing: border-box;
    }

    .expanding-cards-panel {
      margin: 0;
      height: 60vh;
    }

    .expanding-cards-title {
      font-size: 16px;
      bottom: 15px;
      left: 15px;
      padding: 8px 16px;
    }

    .expanding-cards-watermark {
      font-size: 1.5rem;
      bottom: 20px;
      right: 20px;
    }
  }

  @media screen and (max-width: 480px) {
    .expanding-cards-panel:nth-of-type(4),
    .expanding-cards-panel:nth-of-type(5) {
      display: none;
    }

    .expanding-cards-container {
      gap: 5px;
    }
  }

  /* Tablet adjustments */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .expanding-cards-container {
      width: 95vw;
    }

    .expanding-cards-panel {
      height: 70vh;
    }
  }
/* END_SECTION:expanding-cards */

/* START_SECTION:mobile-category-badges (INDEX:23) */
.category-bubbles {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 100px;
  }

  .category-bubbles[style*="--custom-bg-color"] {
    background-color: var(--custom-bg-color) !important;
  }

  .category-bubbles[style*="--bg-opacity-value"]:not([style*="rgba"]):not([style*="rgb"]) {
    opacity: var(--bg-opacity-value);
  }

  .category-bubbles[style*="--custom-bg-color"][style*="--bg-opacity-value"] {
    background-color: var(--custom-bg-color);
  }

  .category-bubbles__container--full {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding: 0;
  }

  .category-bubbles .swiper {
    padding: 10px 0;
    overflow: visible;
    position: relative;
  }

  .category-bubbles .swiper-wrapper {
    display: flex;
    align-items: center;
  }

  .category-bubbles__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    height: 100%;
    transition: transform 0.3s ease;
    box-sizing: border-box;
  }

  .category-bubbles__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: inherit;
    text-decoration: none;
  }

  .category-bubbles__circle {
    width: var(--circle-size-mobile);
    height: var(--circle-size-mobile);
    min-width: var(--circle-size-mobile);
    min-height: var(--circle-size-mobile);
    max-width: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: var(--circle-border-width) solid var(--circle-border-color);
    will-change: transform;
  }

  .category-bubbles__item:hover .category-bubbles__circle {
    transform: scale(var(--hover-scale));
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .category-bubbles__image,
  .category-bubbles__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .category-bubbles__placeholder {
    opacity: 0.5;
  }

  .category-bubbles__label {
    font-weight: var(--label-font-weight);
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    margin-top: 8px;
    transition: color 0.3s ease;
  }

  .category-bubbles__item:hover .category-bubbles__label {
    color: var(--bs-primary);
  }

  /* Arrows - Hidden on mobile, visible on desktop */
  .category-bubbles .swiper-button-prev,
  .category-bubbles .swiper-button-next {
    position: absolute;
    top: 50%;
    left: auto;
    right: auto;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    margin: 0;
    margin-top: 0;
    background: var(--nav-bg-color);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--nav-icon-color);
    transition: all 0.2s ease;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .category-bubbles .swiper-button-prev {
    left: 10px;
  }

  .category-bubbles .swiper-button-next {
    right: 10px;
  }

  .category-bubbles .swiper-button-prev:after,
  .category-bubbles .swiper-button-next:after {
    display: none;
  }

  .category-bubbles .swiper-button-prev:hover,
  .category-bubbles .swiper-button-next:hover {
    filter: brightness(0.9);
    transform: translateY(-50%) scale(1.1);
  }

  /* Pagination - Hidden everywhere */
  .category-bubbles__pagination {
    display: none !important;
  }

  .category-bubbles .swiper-pagination {
    display: none !important;
  }

  .category-bubbles .swiper-pagination-bullet {
    display: none !important;
  }

  .category-bubbles .swiper-pagination-bullet-active {
    display: none !important;
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .category-bubbles .swiper {
      padding: 8px 0;
    }

    .category-bubbles__item {
      padding: 4px;
    }

    .category-bubbles__circle {
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .category-bubbles__heading {
      font-size: 1.25rem;
      margin-bottom: 1rem !important;
    }

    .category-bubbles .swiper-button-prev,
    .category-bubbles .swiper-button-next {
      display: none !important;
    }

    .category-bubbles__label {
      font-size: 12px;
    }
  }

  /* Tablet and Desktop */
  @media (min-width: 768px) {
    .category-bubbles__circle {
      width: var(--circle-size-desktop);
      height: var(--circle-size-desktop);
      min-width: var(--circle-size-desktop);
      min-height: var(--circle-size-desktop);
    }

    .category-bubbles .swiper-button-prev,
    .category-bubbles .swiper-button-next {
      display: none !important;
    }

    .category-bubbles .swiper {
      padding: 12px 0 35px;
    }

    .category-bubbles__item {
      padding: 10px;
    }
  }

  @media (min-width: 1024px) {
    .category-bubbles .swiper {
      padding: 15px 0 40px;
    }

    .category-bubbles__item {
      padding: 12px;
    }

    .category-bubbles .swiper-button-prev,
    .category-bubbles .swiper-button-next {
      display: none !important;
    }

    .category-bubbles__circle {
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    }
  }

  /* Accessibility */
  .category-bubbles__link:focus-visible {
    outline: 2px solid var(--bs-primary);
    outline-offset: 4px;
    border-radius: 4px;
  }

  .category-bubbles__link:focus-visible .category-bubbles__circle {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
  }

  /* Performance optimizations */
  .category-bubbles__circle,
  .category-bubbles__item {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* Empty state */
  .category-bubbles:empty::before {
    content: "Add category bubbles to display";
    display: block;
    text-align: center;
    padding: 2rem;
    color: #999;
  }
/* END_SECTION:mobile-category-badges */

/* START_SECTION:our-story (INDEX:27) */
.our-story__decorative-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .our-story__video-wrapper {
    width: 100%;
    position: relative;
  }

  .our-story__video-container {
    width: 100%;
    position: relative;
    background: #000;
  }

  .our-story__video,
  .our-story__video-iframe {
    width: 100%;
    height: auto;
    display: block;
  }

  .our-story__logo-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
  }

  /* Responsive Design - Tablet */
  @media screen and (max-width: 989px) {
    .our-story__content-grid {
      grid-template-columns: 100px 1fr !important;
      gap: 20px !important;
    }

    .our-story__logo-circle {
      width: 100px !important;
      height: 100px !important;
    }
  }

  /* Responsive Design - Mobile */
  @media screen and (max-width: 749px) {
    .our-story {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
    }

    .our-story__content-grid {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
      text-align: center;
    }

    .our-story__logo-wrapper {
      display: flex;
      justify-content: center;
    }

    .our-story__logo-circle {
      width: 80px !important;
      height: 80px !important;
    }

    .our-story__heading {
      font-size: clamp(20px, 5vw, 24px) !important;
    }

    .our-story__founders-names {
      font-size: clamp(22px, 5.5vw, 28px) !important;
    }

    .our-story__description {
      font-size: clamp(14px, 4vw, 16px) !important;
    }

    .our-story__decorative-top-left,
    .our-story__decorative-right,
    .our-story__decorative-bottom-right {
      width: 100px !important;
      height: 100px !important;
    }
  }

  /* Responsive Design - Small Mobile */
  @media screen and (max-width: 480px) {
    .our-story {
      padding-top: 30px !important;
      padding-bottom: 30px !important;
    }

    .our-story__logo-circle {
      width: 70px !important;
      height: 70px !important;
    }

    .our-story__decorative-top-left,
    .our-story__decorative-right,
    .our-story__decorative-bottom-right {
      width: 80px !important;
      height: 80px !important;
    }
  }
/* END_SECTION:our-story */

/* START_SECTION:product-benefits-showcase (INDEX:31) */
.product-benefits-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .product-benefits__leaf-graphic {
    position: absolute;
    z-index: 1;
    opacity: 1;
  }

  .product-benefits__leaf-img,
  .product-benefits__leaf-graphic svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-benefits__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
  }

  .product-benefits__left-panel {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 0;
  }

  .product-benefits__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: var(--image-max-height);
    border-radius: var(--image-border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .product-benefits__image-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .product-benefits__image-wrapper img,
  .product-benefits__image-wrapper .product-benefits__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: var(--image-border-radius);
  }

  .product-benefits__image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: var(--image-border-radius);
  }

  .product-benefits__callout-box {
    position: absolute;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    box-sizing: border-box;
    word-wrap: break-word;
  }

  .product-benefits__callout-text {
    line-height: 1.3;
    white-space: normal;
  }

  .product-benefits__right-panel {
    padding-left: 20px;
    display: flex;
    align-items: flex-start;
  }

  .product-benefits__text-content {
    width: 100%;
  }

  .product-benefits__heading {
    line-height: 1.2;
    text-align: left;
    margin: 0;
  }

  .product-benefits__text {
    text-align: left;
    margin: 0;
  }

  .product-benefits__text p {
    margin-bottom: 15px;
  }

  .product-benefits__text p:last-child {
    margin-bottom: 0;
  }

  .product-benefits__benefits-section {
    width: 100%;
  }

  .product-benefits__benefits-title {
    line-height: 1.3;
    text-align: left;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product-benefits__benefits-grid {
    display: grid;
    margin: 0;
    width: 100%;
  }

  .product-benefits__benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .product-benefits__benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .product-benefits__benefit-icon-img,
  .product-benefits__benefit-icon-svg,
  .product-benefits__benefit-icon svg {
    width: 60%;
    height: 60%;
    object-fit: contain;
  }

  .product-benefits__benefit-icon svg {
    color: #ffffff;
  }

  .product-benefits__benefit-text {
    line-height: 1.4;
    text-align: center;
    margin: 0;
  }

  /* Responsive Design - Tablet */
  @media screen and (max-width: 989px) {
    .product-benefits-section .page-width {
      padding-left: 20px;
      padding-right: 20px;
    }

    .product-benefits__content-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: stretch;
    }

    .product-benefits__left-panel {
      justify-content: center;
      width: 100%;
      order: 2;
    }

    .product-benefits__image-wrapper {
      width: 100%;
      max-width: min(100%, 400px);
      height: auto;
      min-height: unset;
      aspect-ratio: 1 / 1;
      margin: 0 auto;
    }

    .product-benefits__right-panel {
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      order: 1;
    }

    .product-benefits__text-content {
      text-align: left;
      max-width: 100%;
    }

    .product-benefits__callout-box {
      position: absolute;
      bottom: 20px !important;
      left: 15px !important;
      right: auto !important;
      margin: 0;
      max-width: 70%;
    }

    .product-benefits__benefits-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 25px !important;
      max-width: 100%;
    }
  }

  /* Responsive Design - Mobile */
  @media screen and (max-width: 749px) {
    .product-benefits-section-{{ section.id }} .page-width {
      padding-left: 15px;
      padding-right: 15px;
    }

    .product-benefits-section-{{ section.id }} {
      padding-top: 30px !important;
      padding-bottom: 30px !important;
    }

    .product-benefits-section-{{ section.id }} .product-benefits__content-grid {
      gap: 30px;
      display: flex;
      flex-direction: column;
    }

    .product-benefits-section-{{ section.id }} .product-benefits__left-panel {
      margin-bottom: 0;
      order: 2;
      width: 100%;
    }

    .product-benefits-section-{{ section.id }} .product-benefits__image-wrapper {
      width: 100%;
      max-width: 100%;
      height: auto;
      min-height: unset;
      max-height: none;
      aspect-ratio: 1 / 1;
      margin: 0 auto;
    }

    .product-benefits__right-panel {
      padding-left: 0;
      padding-right: 0;
      order: 1;
      width: 100%;
    }

    .product-benefits__text-content {
      padding: 0;
      text-align: left;
      width: 100%;
    }

    .product-benefits__heading {
      font-size: clamp(24px, 6vw, 32px) !important;
      margin-bottom: 15px !important;
      line-height: 1.2;
      text-align: left;
    }

    .product-benefits__text {
      font-size: clamp(14px, 4vw, 16px) !important;
      margin-bottom: 25px !important;
      line-height: 1.6;
      text-align: left;
    }

    .product-benefits__text p {
      margin-bottom: 12px;
    }

    .product-benefits__benefits-section {
      margin-top: 25px;
      padding: 0;
      width: 100%;
    }

    .product-benefits__benefits-title {
      font-size: clamp(16px, 4vw, 20px) !important;
      margin-bottom: 20px !important;
      text-align: center;
    }

    .product-benefits__benefits-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px 15px !important;
      margin-top: 20px !important;
      width: 100%;
    }

    .product-benefits__benefit-item {
      padding: 0;
      width: 100%;
    }

    .product-benefits__benefit-icon {
      width: 50px !important;
      height: 50px !important;
      margin: 0 auto;
    }

    .product-benefits__benefit-text {
      font-size: clamp(12px, 3.5vw, 14px) !important;
      margin-top: 10px !important;
      line-height: 1.4;
      text-align: center;
    }

    .product-benefits__callout-box {
      position: absolute !important;
      bottom: 15px !important;
      left: 10px !important;
      right: auto !important;
      margin: 0 !important;
      padding: 10px 14px !important;
      max-width: 75%;
      border-radius: 8px !important;
      display: block;
    }

    .product-benefits__callout-text {
      font-size: clamp(12px, 3.5vw, 14px) !important;
      line-height: 1.3;
    }

    .product-benefits__leaf-graphic {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      width: 60px;
      height: 60px;
      z-index: 1;
    }
  }

  /* Responsive Design - Small Mobile */
  @media screen and (max-width: 480px) {
    .product-benefits-section .page-width {
      padding-left: 12px;
      padding-right: 12px;
    }

    .product-benefits-section {
      padding-top: 25px !important;
      padding-bottom: 25px !important;
    }

    .product-benefits__content-grid {
      gap: 25px;
    }

    .product-benefits__image-wrapper {
      max-width: 100%;
      border-radius: var(--image-border-radius);
    }

    .product-benefits__text-content {
      padding: 0;
    }

    .product-benefits__heading {
      font-size: clamp(20px, 7vw, 28px) !important;
      margin-bottom: 12px !important;
    }

    .product-benefits__text {
      font-size: clamp(13px, 4.5vw, 15px) !important;
      margin-bottom: 20px !important;
    }

    .product-benefits__benefits-section {
      margin-top: 20px;
      padding: 0;
    }

    .product-benefits__benefits-title {
      font-size: clamp(14px, 4.5vw, 18px) !important;
      margin-bottom: 15px !important;
    }

    .product-benefits__benefits-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 15px 12px !important;
      margin-top: 15px !important;
    }

    .product-benefits__benefit-icon {
      width: 45px !important;
      height: 45px !important;
    }

    .product-benefits__benefit-text {
      font-size: clamp(11px, 3.5vw, 13px) !important;
      margin-top: 8px !important;
    }

    .product-benefits__callout-box {
      position: absolute !important;
      bottom: 12px !important;
      left: 8px !important;
      padding: 8px 12px !important;
      max-width: 70%;
      border-radius: 6px !important;
    }

    .product-benefits__callout-text {
      font-size: clamp(11px, 3.5vw, 13px) !important;
    }

    .product-benefits__leaf-graphic {
      width: 50px;
      height: 50px;
    }
  }

  /* Responsive Design - Extra Small Mobile */
  @media screen and (max-width: 360px) {
    .product-benefits-section .page-width {
      padding-left: 10px;
      padding-right: 10px;
    }

    .product-benefits-section {
      padding-top: 20px !important;
      padding-bottom: 20px !important;
    }

    .product-benefits__content-grid {
      gap: 20px;
    }

    .product-benefits__heading {
      font-size: 18px !important;
    }

    .product-benefits__text {
      font-size: 13px !important;
    }

    .product-benefits__benefits-title {
      font-size: 14px !important;
    }

    .product-benefits__benefits-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 12px 10px !important;
    }

    .product-benefits__benefit-icon {
      width: 40px !important;
      height: 40px !important;
    }

    .product-benefits__benefit-text {
      font-size: 11px !important;
      margin-top: 6px !important;
    }

    .product-benefits__callout-box {
      padding: 6px 10px !important;
      bottom: 10px !important;
      left: 6px !important;
      max-width: 65%;
    }

    .product-benefits__callout-text {
      font-size: 11px !important;
    }
  }
/* END_SECTION:product-benefits-showcase */

/* START_SECTION:richtext (INDEX:33) */
.richtext__decorative-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .richtext__circle-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
  }

  .richtext__placeholder {
    width: 100%;
    height: 100%;
  }

  /* Responsive Design - Tablet */
  @media screen and (max-width: 989px) {
    .richtext__two-column-grid {
      grid-template-columns: 1fr !important;
      gap: 40px !important;
    }

    .richtext__left-column {
      display: flex;
      justify-content: center;
      order: 1;
    }

    .richtext__image-wrapper {
      margin: 0 auto;
    }

    .richtext__right-column {
      text-align: center;
      order: 2;
    }
  }

  /* Responsive Design - Mobile */
  @media screen and (max-width: 749px) {
    .richtext__two-column-grid {
      grid-template-columns: 1fr !important;
      gap: {{ section.settings.mobile_column_gap | default: 30 }}px !important;
      display: flex !important;
      flex-direction: column !important;
    }

    .richtext__left-column {
      order: 1;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .richtext__right-column {
      order: 2;
      width: 100%;
      text-align: {{ section.settings.mobile_text_align | default: 'center' }};
      padding: 0 {{ section.settings.mobile_text_padding | default: 20 }}px;
    }

    .richtext__title {
      font-size: clamp({{ section.settings.mobile_title_min_size | default: 22 }}px, {{ section.settings.mobile_title_vw | default: 6 }}vw, {{ section.settings.mobile_title_max_size | default: 28 }}px) !important;
      margin-bottom: {{ section.settings.mobile_title_margin_bottom | default: 15 }}px !important;
      text-align: {{ section.settings.mobile_text_align | default: 'center' }};
    }

    .richtext__description {
      font-size: clamp({{ section.settings.mobile_description_min_size | default: 14 }}px, {{ section.settings.mobile_description_vw | default: 4 }}vw, {{ section.settings.mobile_description_max_size | default: 16 }}px) !important;
      margin-bottom: {{ section.settings.mobile_description_margin_bottom | default: 15 }}px !important;
      text-align: {{ section.settings.mobile_text_align | default: 'center' }};
    }

    .richtext__cta-link {
      font-size: clamp({{ section.settings.mobile_cta_min_size | default: 14 }}px, {{ section.settings.mobile_cta_vw | default: 4 }}vw, {{ section.settings.mobile_cta_max_size | default: 16 }}px) !important;
    }
  }

  /* Responsive Design - Small Mobile */
  @media screen and (max-width: 480px) {
    #richtext-{{ section.id }} .richtext__image-wrapper {
      width: {{ section.settings.small_mobile_circle_image_size | default: 200 }}px !important;
      height: {{ section.settings.small_mobile_circle_image_size | default: 200 }}px !important;
    }

    #richtext-{{ section.id }} .richtext__callout-box {
      padding: {{ section.settings.small_mobile_callout_padding | default: 12 }}px !important;
      max-width: {{ section.settings.small_mobile_callout_max_width | default: 200 }}px !important;
    }

    .richtext__decorative-top-left,
    .richtext__decorative-bottom-right {
      width: 100px !important;
      height: 100px !important;
    }
  }
/* END_SECTION:richtext */