/** Shopify CDN: Minification failed

Line 599:1 Unexpected "0"

**/
/* =========================================================
   OFF THE HOOK - PREMIUM REELS
   ========================================================= */


/* =========================================================
   MAIN SECTION
   ========================================================= */

.premium-reels-section {
    width: 100%;
    padding: 20px;
    overflow: hidden;
}


/* =========================================================
   HEADING AREA
   ========================================================= */

.premium-reels-heading {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 28px;

    text-align: center;
}


/* Main heading */

.premium-reels-heading h2 {
    margin: 0;

    color: #111;

    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;

    letter-spacing: -0.5px;
}


/* Sub heading */

.premium-reels-heading p {
    margin: 10px 0 0;

    color: #666;

    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================================
   INSTAGRAM PROFILE
   ========================================================= */

.premium-instagram {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: fit-content !important;

    margin: 12px auto 0 !important;
    padding: 0 !important;

    gap: 7px !important;

    color: #111 !important;

    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;

    text-decoration: none !important;

    white-space: nowrap;
}


/* Instagram hover */

.premium-instagram:hover {
    color: #555 !important;

    opacity: 0.75;
}


/* Instagram icon wrapper */

.instagram-icon {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 18px !important;
    height: 18px !important;

    flex: 0 0 18px !important;
}


/* Instagram SVG */

.instagram-icon svg {
    display: block !important;

    width: 18px !important;
    height: 18px !important;

    fill: none !important;

    stroke: currentColor !important;

    stroke-width: 1.7 !important;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Instagram dot */

.instagram-icon svg circle:last-child {
    fill: currentColor !important;

    stroke: none !important;
}


/* =========================================================
   HEADING LINE
   ========================================================= */

.heading-line {
    display: block;

    width: 50px;
    height: 1px;

    margin: 12px auto 0;

    background: #111;
}


/* =========================================================
   SWIPER
   ========================================================= */

.premiumReels {
    width: 100%;

    overflow: hidden;

    position: relative;
}


/* Swiper wrapper */

.premiumReels .swiper-wrapper {
    align-items: stretch;
}


/* Swiper slide */

.premiumReels .swiper-slide {
    height: auto;

    display: flex;
}


/* =========================================================
   REEL CARD
   ========================================================= */

.reel-card {
    position: relative;

    display: block;

    width: 100%;

    overflow: hidden;

    background: #000;

    border-radius: 16px;

    aspect-ratio: 9 / 16;

    text-decoration: none;

    isolation: isolate;
}


/* Video */

.reel-video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* Hover zoom */

.reel-card:hover .reel-video {
    transform: scale(1.04);
}


/* =========================================================
   REEL OVERLAY
   ========================================================= */

.reel-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 25px 22px 20px;

    pointer-events: none;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.22) 0%,
        rgba(0, 0, 0, 0) 35%,
        rgba(0, 0, 0, 0.42) 100%
    );
}


/* =========================================================
   BRAND
   ========================================================= */

.reel-brand {
    color: #fff;

    font-size: 22px;
    line-height: 1.2;

    font-weight: 600;

    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   SHOP NOW BUTTON
   ========================================================= */

.reel-button {
    align-self: flex-end;

    color: #fff;

    font-size: 12px;
    line-height: 1.3;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0;

    padding-bottom: 4px;

    border-bottom: 1px solid #fff;

    transition:
        letter-spacing 0.3s ease,
        opacity 0.3s ease;
}


/* Button hover */

.reel-card:hover .reel-button {
    letter-spacing: 1.5px;
}


/* =========================================================
   SWIPER ARROWS
   ========================================================= */

.premiumReels .swiper-button-next,
.premiumReels .swiper-button-prev {
    width: 42px;
    height: 42px;

    margin-top: -21px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 50%;

    color: #111;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* Arrow icons */

.premiumReels .swiper-button-next::after,
.premiumReels .swiper-button-prev::after {
    font-size: 15px;

    font-weight: 600;
}


/* Arrow hover */

.premiumReels .swiper-button-next:hover,
.premiumReels .swiper-button-prev:hover {
    background: #111;

    color: #fff;

    transform: scale(1.05);
}


/* Arrow positioning */

.premiumReels .swiper-button-prev {
    left: 15px;
}

.premiumReels .swiper-button-next {
    right: 15px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .premium-reels-section {
        padding: 60px 20px 65px;
    }

    .premium-reels-heading {
        margin-bottom: 25px;
    }

    .premium-reels-heading h2 {
        font-size: 38px;
    }

    .premium-reels-heading p {
        font-size: 15px;
    }

    .reel-brand {
        font-size: 20px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .premium-reels-section {
        padding: 45px 12px 50px;
    }


    /* Heading */

    .premium-reels-heading {
        max-width: 100%;

        margin-bottom: 22px;
    }


    .premium-reels-heading h2 {
        font-size: 30px;

        line-height: 1.2;

        letter-spacing: -0.2px;
    }


    .premium-reels-heading p {
        margin-top: 8px;

        font-size: 14px;

        line-height: 1.45;
    }


    /* Instagram */

    .premium-instagram {
        margin-top: 10px !important;

        gap: 6px !important;

        font-size: 13px !important;
    }


    .instagram-icon,
    .instagram-icon svg {
        width: 17px !important;
        height: 17px !important;
    }


    /* Heading line */

    .heading-line {
        width: 40px;

        margin-top: 10px;
    }


    /* Reel */

    .premiumReels {
        overflow: hidden;
    }


    .premiumReels .swiper-slide {
        width: 72%;
    }


    .reel-card {
        border-radius: 13px;

        aspect-ratio: 9 / 16;
    }


    .reel-overlay {
        padding: 18px 16px 15px;
    }


    .reel-brand {
        font-size: 18px;
    }


    .reel-button {
        font-size: 10px;

        padding-bottom: 3px;
    }


    /* Hide arrows on mobile */

    .premiumReels .swiper-button-next,
    .premiumReels .swiper-button-prev {
        display: none !important;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .premium-reels-section {
        padding: 38px 10px 45px;
    }


    .premium-reels-heading {
        margin-bottom: 20px;
    }


    .premium-reels-heading h2 {
        font-size: 27px;
    }


    .premium-reels-heading p {
        font-size: 13px;
    }


    .premium-instagram {
        font-size: 12px !important;
    }


    .premiumReels .swiper-slide {
        width: 78%;
    }


    .reel-brand {
        font-size: 17px;
    }

}

/* Safari fix - keep reels in 9:16 vertical ratio */
.premiumReels .swiper-slide {
    width: 100%;
    height: auto !important;
    aspect-ratio: 9 / 16;
    align-self: flex-start;
    overflow: hidden;
}

.premiumReels .reel-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.premiumReels .reel-video {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Prevent Safari from stretching the Swiper wrapper */
.premiumReels .swiper-wrapper {
    align-items: flex-start;
}

.premiumReels {
    overflow: hidden;
}0