/** Shopify CDN: Minification failed

Line 177:8 Expected identifier but found whitespace
Line 177:14 Unexpected ";"

**/
.category-section {
    padding: 40px 20px 10px;
}

.category-section h2 {
    font-size: 34px;
    margin-bottom: 0px;
    font-weight: bold;
    text-align: center;
font-family:"Libre Baskerville", serif;
color:#ec1b24;
}

.categories {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 20px;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
}

.category img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 2px solid #ccc; */
}

.category p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
 width: 120px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-section h2 {
        font-size: 32px;
    }

    .category img {
        width: 80px;
        height: 80px;
    }

    .category p {
        font-size: 14px;
       max-width: 75px;
    }
}

@media (max-width: 480px) {
    .category-section h2 {
        font-size: 28px;
    }

    .categories {
        gap: 5px;
    }

    .category {
        max-width: 80px;
    }


    .category img {
        width: 60px;
        height: 60px;
    }

    .category p {
        font-size: 11px;
    }
}


/* Reel section code */
 /* .custom-carousel-container {
            position: relative;
            max-width: 100%;
            overflow: hidden;
            margin: 0 auto;
        }

        .custom-video-section {
            display: flex;
            gap: 20px;
            padding: 20px;
            flex-wrap: nowrap;
            transition: transform 0.5s ease-in-out;
        }

        .custom-video-container {
            position: relative;
            width: 300px;
            aspect-ratio: 9/16;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .custom-video-frame {
            width: 100%;
            height: 100%;
            border: none;
            margin: 0;
        }

        .custom-carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10px;
            font-size: 20px;
            border: none;
            cursor: pointer;
            z-index: 2;
            display: none;
        }

        .custom-prev-btn {
            left: 10px;
        }

        .custom-next-btn {
            right: 10px;
        }

        @media (max-width: 768px) {
            .custom-carousel-btn {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .custom-video-container {
                flex: 0 0 auto;
                margin-right: 10px;
            }
        } */


    .collapsible {
    width: 100%;
    list-style: none;
    position: relative;
    font-weight: var(--font-body-bold-weight, 600);
    font-size: 1rem;
    letter-spacing: .02em;
    line-height: 1;
    padding: 18px 20px 18px 0;
    cursor: pointer;
    text-align: left;
    /* border-top: 1px solid #e5e5e5; */
}

/* .collapsible:after {
  content: ' \002B'; /* "+" sign */
  float: right;
  font-size: 20px;
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
} */

/* .active:after {
  content: "\2212";
} */

.content {
  display: none;
  overflow: hidden;
  background-color: #f9f9f9;
  transition: max-height 0.5s ease-out;
}

.gallery__item figure {
  position: relative;
  overflow: hidden;
}

.gallery__item img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.featured-collection-list--img {
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.featured-collection-list--img.active {
  opacity: 1;
}

a.fuel-fabrics-button.side-panel-links--link {
    font-size: 15.75px;
    position: relative;
    bottom: 2px;
}