
        .shop-gallery-wrapper {
            padding: 0;
            padding-bottom: 80px;
        }
        .shop-gallery-items {
            display: grid;
            gap: 5px;
        }
        .ast-container, .ast-container-fluid {
            margin-top: 100px;
            padding-left: 5px !important;
            padding-right: 5px !important;
        }
        .product-card {
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        .product-link {
            text-decoration: none !important;
            color: inherit;
            display: block;
        }
        .product-title {
            padding: 8px;
            font-family: "ENGRAVERS GOTHIS BOLD";
            font-weight: 400;
            line-height: 15px;
            font-size: 15px;
            text-align: left;
            
            text-decoration: none !important;
            color: black !important;
        }
        .product-title:hover {
            color: black !important;
        }
        .product-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
            padding: 0px 8px 8px 8px;
        }
        .price {
            font-family: "ENGRAVERS GOTHIC LIGHT";
            font-weight: 400;
            margin-right: auto !important;
            color: #333;
        }
        .gallery-swatches {
            display: flex;
            gap: 6px;
        }
        .gallery-swatch {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 1px solid #ccc;
        }
        .swiper {
            border-radius: 5px;
            width: 100%;
            position: relative;
        }
        .swiper-slide img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }
        .swiper-pagination {
            position: absolute !important;
            bottom: 8px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            display: flex !important;
            gap: 4px !important;
            justify-content: center !important;
            z-index: 2 !important;
        }
        .swiper-pagination-bullet {
            margin: 0 2px 4px 2px !important;
            border: 1px solid black !important;
            width: 9px !important;
            height: 9px !important;
            background: #fff !important;
            opacity: 0.6 !important;
            border-radius: 50% !important;
        }
        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #000 !important;
        }
        .shop-gallery-filters {
            border-radius: 8px;
            position: fixed;
            bottom: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            background: #fff;
            padding: 8px;
            display: flex;
            justify-content: center;
            z-index: 999;
            box-shadow: 0px 0px 20px -5px;
        }
        .shop-gallery-filters select {
            font-family: "ENGRAVERS GOTHIC LIGHT";
            font-weight: 400;
            text-transform: uppercase;
            padding: 6px;
            font-size: 14px;
            border: none;
            border-radius: 4px;
        }
        .shop-gallery-filters select option[disabled] {
            color: #888;
        }
        .filter-divider {
            width: 3px;
            height: 40px;
            background-color: #757575;
            margin: 0 10px;
        }
        select {
            padding-right: 20px;
            background-color: white;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .gallery-loader {
            display: none;
            justify-content: center;
            padding: 20px;
        }
        .gallery-loader::after {
            content: "";
            width: 30px;
            height: 30px;
            border: 4px solid #000;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
          .shop-gallery-banner{
                 height: auto !important;
    margin-top: 130px;
    margin-bottom: 50px;
    padding: 8px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
    position: relative;
    justify-content: flex-start;
        }
        
        .shop-gallery-header{
               text-transform: lowercase;
    text-align: center;
    font-size: 18px;
    font-family: "ENGRAVERS GOTHIC LIGHT";
    font-weight: 400;
    color: #757575;
    margin-top: auto;
    margin-bottom: 10px;
        }
        
        
        .shop-gallery-subheader{
                    text-align: center;
    font-family: "ENGRAVERS GOTHIS BOLD";
    font-size: 22px;
    line-height: 1.3;
    text-transform: uppercase;
    color: BLACK;
        }
        
        .shop-gallery-description{
    text-align: center;
    text-transform: lowercase;
    font-size: 16px;
    line-height: 1;
    font-family: "ENGRAVERS GOTHIC LIGHT";
    font-weight: 400;
    color: #757575;
    margin-bottom: auto;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 10px;
}
@media (min-width: 768px) {
  /* CSS rules for desktop and larger screens */
 .shop-gallery-banner{
     margin-top: 40px;
 }
}
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
    