/** Shopify CDN: Minification failed

Line 6:0 Unexpected "#"

**/
#/* 1. OPEN THE SLIDER FRAME */
/* This prevents the title and price from being cut off at the bottom */
.flickity-viewport, 
.js-featured-collection--slider, 
.featured-collection--slider {
    overflow: visible !important;
    padding-bottom: 80px !important; /* Creates space for 3 lines + price */
    padding-top: 50px !important;    /* Creates space for the pop-up */
}

/* 2. FORCE TITLE TO 3 LINES */
.product-wrap .product-info__caption .title {
    color: #000000 !important;
    font-weight: bold !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important; /* Force exactly 3 lines */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 4.2em !important;    /* Keeps the box the same size for all products */
    line-height: 1.4em !important;
    margin-top: 10px !important;
    text-align: center;
}

/* 3. MAKE PRICE APPEAR & MATCH LOGO */
.product-wrap .product-info__caption .price {
    color: #00008B !important; /* Dark Blue to match your logo */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: bold !important;
    text-align: center;
    margin-top: 5px !important;
}

/* 4. THE POP-UP (NO ZOOM) */
.product-wrap {
    transition: transform 0.3s ease-out !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    position: relative !important;
}

.product-wrap:hover {
    transform: translateY(-25px) !important;
    box-shadow: -15px 15px 40px -10px rgba(0, 0, 139, 0.6) !important;
    z-index: 999;
}

/* 5. STOP PHOTO ZOOM */
.product-wrap:hover img, 
.product-wrap:hover .image__container {
    transform: none !important;
    scale: 1 !important;
}

/* 6. HIDE THE HOVER BOX OVER THE IMAGE */
.thumbnail-overlay {
    display: none !important;
}