/** Shopify CDN: Minification failed

Line 200:1 Unexpected "/"
Line 491:54 Unexpected "{"
Line 491:63 Expected ":"
Line 491:69 Unexpected ","
Line 492:54 Unexpected "{"
Line 492:63 Expected ":"
Line 492:70 Unexpected "{"
Line 501:54 Unexpected "{"
Line 501:63 Expected ":"
Line 501:70 Unexpected "{"
... and 3 more hidden warnings

**/


/* CSS from section stylesheet tags */
.fum-prodspot-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    grid-column: span 12;
}

/* Title and icon container */
.fum-prodspot-carousel-title-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
}

/* Decorative swirl icon */
.fum-prodspot-carousel-swirl {
    width: auto;
    height: 13px;
}

.fum-prodspot-carousel-grid {
    display: grid;
    grid-column: span 12;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.fum-prodspot-carousel-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #F5F0E1;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    /* Background image positioning for product images */
    background-size: auto 75% !important;
    background-position: top right !important;
    background-repeat: no-repeat !important;
    background-origin: content-box !important;
    width:100%;
}

/* Overlay for background image area - creates content safe zone */
.fum-prodspot-carousel-card::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    width: 20%;
    height: calc(100% - 60px);
    background: transparent;
    z-index: 1;
}

.fum-prodspot-carousel-card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    position: relative;
    z-index: 2; /* Above background overlay */
}

.fum-prodspot-carousel-badges {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* Main content grid - left content, right for future expansion */
.fum-prodspot-carousel-card-main {
    display: grid;
    grid-column: span 6;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    position: relative;
    z-index: 2; /* Above background overlay */
}

/* Left content area - text content */
.fum-prodspot-carousel-card-left {
    grid-column: span 6;
    position: relative;
    z-index: 2;
    text-align: start;
}

/* Right content area - available for future content */
.fum-prodspot-carousel-card-right {
    grid-column: span 6;
    position: relative;
    z-index: 2;
}

/* Product image within cards */
.fum-prodspot-carousel-card-image {
    width: 100%;
    height: auto;
}


/* Main card heading */
.fum-prodspot-carousel-heading {
    text-transform: uppercase;
    font-family: Lexend;
    font-weight: 700 !important;
}



/* Container for product highlight items */
.fum-prodspot-carousel-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 32px 0px 16px 0px;
}

/* Individual highlight item container */
/* .fum-prodspot-carousel-item serves as base container - styled by child elements */

/* Highlight text and icon wrapper */
.fum-prodspot-carousel-text-wrapper {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: start;
    padding-top: 5px;
}

/* Item border wrapper */
.fum-prodspot-carousel-item-border-wrapper {
    width: 43px;
}

/* Item border line */
.fum-prodspot-carousel-item-border {
    width: 100%;
    height: 2px;
}

/* Highlight title text */
.fum-prodspot-carousel-text-title {
    font-family: Lexend;
    font-weight: 700;
    font-size: 16px;
}

/* Highlight description text */
.fum-prodspot-carousel-text {
    color: #3f603f !important;
    font-size: 14px !important;
    font-family: Lexend !important;
    line-height: 14px !important;
    letter-spacing: -.42px !important;
}

/* 
==================================================
9. CARD FOOTER & ACTIONS
==================================================
*/

/* Card footer containing action button */
.fum-prodspot-carousel-card-footer {
    margin-top: 20px;
}



/* Mobile-specific content layout - hidden on desktop */
.fum-prodspot-carousel-mobile-content {
    display: none;
}


*/
@media (min-width: 1200px) {
    /* Increased spacing for larger screens */
    .fum-prodspot-carousel-wrapper {
        padding: 68px var(--fum-g-padding-desktop);
    }
    
    /* More generous card padding */
    .fum-prodspot-carousel-card {
        padding: 32px;
    }
    
    /* Increased grid spacing */
    .fum-prodspot-carousel-grid {
        margin-top: 36px;
    }
}


@media (max-width: 1366px) {
    /* Hide desktop titles - will show in mobile content */
    .fum-prodspot-carousel-card-header > .fum-prodspot-carousel-card-title,
    .fum-prodspot-carousel-card-left > .fum-prodspot-carousel-heading {
        display: none;
    }

 .fum-prodspot-carousel-collection-swiper-slide > .fum-best-seller-collection-regular-slide-content
    > a  >.fum-best-seller-collection-regular-slide-content-img {
        max-height: 70% !important;
        width: 100% !important;
        margin-inline:0 !important;
        margin-top:50px !important;
    }

    /* Show mobile content layout */
    .fum-prodspot-carousel-card > .fum-prodspot-carousel-card-main > .fum-prodspot-carousel-card-left > .fum-prodspot-carousel-mobile-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .fum-prodspot-carousel-card > .fum-prodspot-carousel-card-main > .fum-prodspot-carousel-card-left > .fum-prodspot-carousel-mobile-content > img {
        max-width:80%;
        margin:auto;
        margin-top: -30px;
    }

    /* Remove background images and maintain 2-column layout */
    .fum-prodspot-carousel-card {
        background-image: none !important;
        grid-column: span 6; /* Maintain 2 cards per row */
    }

    /* Full width content areas */
    .fum-prodspot-carousel-card-left {
        grid-column: span 12;
    }
    
    .fum-prodspot-carousel-card-right {
        grid-column: span 12;
    }

    .fum-prodspot-carousel-list{
      padding:6px 0px 0px 0px;
    }
    
    /* Mobile content styles */
    .fum-prodspot-carousel-card-title {
        font-size: 12px !important;
    }
    
    .fum-prodspot-carousel-heading {
        margin-top: -4px !important;
    }
    
    .fum-prodspot-carousel-grid {
        gap: 14px !important;
        margin-top: 40px;
    }

    /* Full width border wrapper when mobile content is visible */
    .fum-prodspot-carousel-item-border-wrapper {
        width: 100%;
    }
    .fum-prodspot-carousel-card-footer{
      margin:0px;
    }
}

@media (max-width: 990px) {
    /* Reduced desktop padding */
    .fum-prodspot-carousel-wrapper {
        padding: 80px var(--fum-g-padding-desktop);
    }
    
    /* Hide desktop titles - will show in mobile content */
    .fum-prodspot-carousel-card-header > .fum-prodspot-carousel-card-title,
    .fum-prodspot-carousel-card-left > .fum-prodspot-carousel-heading {
        display: none;
    }

    /* Show mobile content layout */
    .fum-prodspot-carousel-card > .fum-prodspot-carousel-card-main > .fum-prodspot-carousel-card-left > .fum-prodspot-carousel-mobile-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Remove background images and adjust layout */
    .fum-prodspot-carousel-card {
        background-image: none !important;
        grid-column: span 6; /* Maintain 2-column layout */
        padding: 25px;
    }

    /* Full width content areas */
    .fum-prodspot-carousel-card-left {
        grid-column: span 12;
    }
    
    .fum-prodspot-carousel-card-right {
        grid-column: span 12;
    }
    
    /* Mobile content styles */
    .fum-prodspot-carousel-card-title {
        font-size: 12px !important;
    }
    
    .fum-prodspot-carousel-heading {
        margin-top: 4px !important;
    }
    
    .fum-prodspot-carousel-grid {
        gap: 14px !important;
        margin-top: 40px;
    }
}


@media (max-width: 671px) {
    /* Mobile padding using CSS variable */
    .fum-prodspot-carousel-wrapper {
        padding: 16px var(--fum-g-padding-mobile) 48px;
    }
    
    /* Two column layout for mobile */
    .fum-prodspot-carousel-card {
        grid-column: span 6; /* 2 cards per row */
        padding: 20px;
        background-image: none !important;
    }
    
    /* Full width content areas */
    .fum-prodspot-carousel-card-left {
        grid-column: span 12;
    }
    
    .fum-prodspot-carousel-card-right {
        grid-column: span 12;
    }

    /* Hide desktop titles */
    .fum-prodspot-carousel-card > .fum-prodspot-carousel-card-header > .fum-prodspot-carousel-card-title,
    .fum-prodspot-carousel-card > .fum-prodspot-carousel-card-main > .fum-prodspot-carousel-card-left > .fum-prodspot-carousel-heading {
        display: none;
    } 

    /* Show mobile content layout */
    .fum-prodspot-carousel-card > .fum-prodspot-carousel-card-main > .fum-prodspot-carousel-card-left > .fum-prodspot-carousel-mobile-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Reduced footer spacing */
    .fum-prodspot-carousel-card-footer {
        margin-top: 20px;
    }
    
    /* Mobile content styles */
    .fum-prodspot-carousel-card-title {
        font-size: 12px !important;
    }
    
    .fum-prodspot-carousel-heading {
        margin-top: 4px !important;
    }
    
    /* Tighter grid spacing */
    .fum-prodspot-carousel-grid {
        gap: 14px !important;
        margin-top: 16px;
    }
    .fum-prodspot-carousel-card > .fum-prodspot-carousel-card-main > .fum-prodspot-carousel-card-left > .fum-prodspot-carousel-mobile-content > img{
      max-width:100%;
      margin:0px;
    }
    .fum-prodspot-carousel-collection-swiper-slide > .fum-best-seller-collection-regular-slide-content
    > a  >.fum-best-seller-collection-regular-slide-content-img {
        max-height: 70% !important;
        width: 100% !important;
        margin:0 !important;
    }
}

@media (max-width: 480px) {
    /* Minimal wrapper padding */
    .fum-prodspot-carousel-wrapper {
        padding: 32px var(--fum-g-padding-mobile) 48px;
    }
    
    /* Minimal card padding - 2 cards per row */
    .fum-prodspot-carousel-card {
        grid-column: span 6; /* 2 cards per row on small mobile */
        padding: 15px;
        background-image: none !important;
    }

    /* Smaller heading for mobile */
    .fum-prodspot-carousel-heading {
        font-size: 20px !important;
        margin-top: 0px !important;
        margin-bottom: 6px !important;
    }
    
    /* Smaller card titles */
    .fum-prodspot-carousel-card-title {
        font-size: 12px !important;
        margin-top: 20px !important;
    }

    /* Minimal grid spacing */
    .fum-prodspot-carousel-grid {
        gap: 14px !important;
        margin-top: 16px;
    }

    /* Tighter mobile content spacing */
    .fum-prodspot-carousel-card > .fum-prodspot-carousel-card-main > .fum-prodspot-carousel-card-left > .fum-prodspot-carousel-mobile-content {
        gap: 2px !important;
    }
    
    /* Minimal footer spacing */
    .fum-prodspot-carousel-card-footer {
        margin-top: 0px;
    }

    .fum-prodspot-carousel-list {
        padding-top: 0px;
    }
}


/* General styles for all screen sizes */
.fum-prodspot-carousel-overlay-left,
.fum-prodspot-carousel-overlay-right {
  display: none !important;
}

.fum-prodspot-carousel-collection {
  padding-left: var(--fum-g-padding-desktop);
}

.fum-prodspot-carousel-collection-swiper {
  width: 100% !important;
  height: 100% !important;
  grid-column: span 12;
}

.fum-prodspot-carousel-collection-swiper-slide {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 333px !important;
  max-width:333px;
}


.fum-prodspot-carousel-collection-swiper-slide > .fum-best-seller-collection-regular-slide-content
 > a  >.fum-best-seller-collection-regular-slide-content-img {
  max-height: 70%;
  width: 90%;
  margin-inline:5%;
}
.fum-prodspot-carousel-collection-prodspot-carousel-slide{
   width: 50% !important;
   max-width:647px !important;
}

.fum-prodspot-carousel-collection-swiper-button-next-{{ section.id }},
.fum-prodspot-carousel-collection-swiper-button-prev-{{ section.id }} {
  width: 24px !important;
  height: 24px !important;
  cursor: pointer;
  display: flex;
  justify-content: center !important;
  font-size: 20px !important;
}

.fum-prodspot-carousel-collection-swiper-button-next-{{ section.id }} {
  right: 20px;
}

.fum-prodspot-carousel-collection-swiper-button-prev-{{ section.id }} {
  left: 20px;
}

.fum-prodspot-carousel-collection-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  padding: 80px 0px 80px 0px;
  position: relative;
}
.fum-collection-prodspot-carousel-grid{
  padding: 60px 0px 80px 0px;
}
.fum-prodspot-carousel-collection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  grid-column: span 12;
  padding: 0px var(--fum-g-padding-desktop) 32px var(--fum-g-padding-desktop);
}

.fum-prodspot-carousel-collection-title {
  color: #3f603f;
  max-width: 340px;
  
}

.fum-prodspot-carousel-collection-header-title-icon {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fum-prodspot-carousel-collection-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
}

.fum-prodspot-carousel-collection-controls  img {
  cursor:pointer;
}

.fum-prodspot-carousel-collection-prodspot-carousel-slide-content {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  grid-template-rows: repeat(12, 1fr) !important;
  color: #fdfcf5 !important;
  width: 100% !important;
  height: 460px;
  padding: 16px !important;
}

.fum-prodspot-carousel-collection-prodspot-carousel-slide-info {
  grid-column: span 12;
  grid-row: span 6;
  display: flex;
  align-items: flex-start;
  margin: 14px 0px 0px 18px;
}

.fum-prodspot-carousel-collection-prodspot-carousel-slide-sold {
  color: #f7f782;
  padding-left: 4px;
}

.fum-prodspot-carousel-collection-prodspot-carousel-slide-details {
  grid-column: span 12;
  grid-row: span 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  text-align: start;
  margin: 16px;
}

.fum-prodspot-carousel-collection-prodspot-carousel-slide-details-p {
  padding-bottom: 6px;
}

.fum-prodspot-carousel-collection-prodspot-carousel-slide-details h1,
.fum-prodspot-carousel-collection-prodspot-carousel-slide-details p,
.fum-prodspot-carousel-collection-prodspot-carousel-slide-details button {
  grid-column: span 12;
}

.fum-prodspot-carousel-collection-regular-slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #f5f0e1;
  width: 100% !important;
  border-radius: 10px;
  height:100%;
  position:relative;
}

.fum-prodspot-carousel-collection-regular-slide-content-heading {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position:relative;
}

.fum-prodspot-carousel-collection-regular-slide-content-heading-head {
  padding-left: 7px;
}

.fum-prodspot-carousel-collection-regular-slide-content-img {
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position:absolute;
  top:0;
  min-height: 150px;
  max-height: 65%;
}

.fum-prodspot-carousel-collection-regular-slide-text {
  display: flex;
  width:100%;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #131313;
  position: absolute;
  bottom:20px;
 
}
.fum-prodspot-carousel-collection-regular-slide-text-padding {
  padding: 20px;
}

.fum-prodspot-carousel-shop-all{
  bottom:40%;
}

@media only screen and (max-width: 1024px) {
  .fum-prodspot-carousel-collection {
    padding-left: var(--fum-g-padding-tablet);
  }

  .fum-prodspot-carousel-collection-grid {
    padding: 68px 0px 68px 0px;
  }

  .fum-prodspot-carousel-collection-header {
    padding: 0px var(--fum-g-padding-tablet) 32px var(--fum-g-padding-tablet);
  }
}

@media only screen and (max-width: 671px) {
  .fum-prodspot-carousel-collection {
    padding-left: var(--fum-g-padding-mobile);
  }

  .fum-prodspot-carousel-collection-grid {
    padding: 68px 0px 68px 0px;
  }

  .fum-prodspot-carousel-collection-header {
    padding: 0px var(--fum-g-padding-mobile) 32px var(--fum-g-padding-mobile);
  }

  .fum-prodspot-carousel-collection-swiper-slide {
    width: 75% !important;
 
  }

  .fum-prodspot-carousel-collection-prodspot-carousel-slide {
    width: 45% !important;
  }

  .fum-prodspot-carousel-collection-prodspot-carousel-slide-content {
    padding: 21px 18px !important;
  }

  .fum-prodspot-carousel-collection-prodspot-carousel-slide-details {
    gap: 4px;
    margin: 0px 0px 2px 2px;
  }

  .fum-prodspot-carousel-collection-prodspot-carousel-slide-info {
    margin: 2px 0px 0px 8px;
  }
  .fum-prodspot-carousel-collection-prodspot-carousel-slide-content {
    height: 410px;
  }
}

/* Media query for large screens */
@media only screen and (min-width: 1500px) {
  .fum-prodspot-carousel-collection-grid {
    position: relative;
  }

  .fum-prodspot-carousel-overlay-left,
  .fum-prodspot-carousel-overlay-right {
    display: block !important; /* Ensure they are displayed */
    position: absolute !important;
    top: 5px !important;
    width: var(--fum-g-padding-desktop) !important;
    height: 95% !important;
    z-index: 2 !important;
  }

  .fum-prodspot-carousel-overlay-left {
    left: 0 !important;
    background: linear-gradient(to left, rgba(255, 254, 251, 0), #fdfcf5);
    display: flex !important;
    align-items: center !important;
  }

  .fum-prodspot-carousel-overlay-right {
    right: 0 !important;
    background: linear-gradient(to right, rgba(255, 254, 251, 0), #fdfcf5) !important;
    display: flex !important; /* Ensure the right overlay is displayed */
    align-items: center !important;
  }
}