/** Shopify CDN: Minification failed

Line 9:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<link rel="stylesheet" href="https://use.typekit.net/xny0tfi.css">

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .tremuchi-carousel-wrapper {
        font-family: "neue-haas-grotesk-display", sans-serif;
        background: #ffffff;
        color: #000C52;
        padding: 2rem 0;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .tremuchi-carousel-container {
        width: 100%;
        padding: 0;
    }

    .tremuchi-carousel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding: 0 2rem;
    }

    .tremuchi-carousel-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .tremuchi-carousel-nav button {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .tremuchi-carousel-nav button:hover {
        transform: scale(1.15);
    }

    .tremuchi-carousel-nav button:active {
        transform: scale(0.95);
    }

    .tremuchi-carousel-nav button svg {
        width: 28px;
        height: 28px;
    }

    .tremuchi-carousel-nav button svg polyline {
        stroke: #000C52;
        stroke-width: 3;
        fill: none;
    }

    .tremuchi-shop-link {
        text-decoration: none;
        color: #000C52;
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        text-transform: uppercase;
        transition: opacity 0.3s ease;
        line-height: 0.9;
    }

    .tremuchi-shop-link:hover {
        opacity: 0.7;
    }

    .tremuchi-carousel-scroll-wrapper {
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tremuchi-carousel-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tremuchi-carousel-track {
        display: flex;
        gap: clamp(10px, 1vw, 18px);
        cursor: grab;
        padding: 0 2rem;
    }

    .tremuchi-carousel-track.dragging {
        cursor: grabbing;
    }

    .tremuchi-product-card {
        width: clamp(320px, 30vw, 480px);
        min-width: clamp(320px, 30vw, 480px);
        flex-shrink: 0;
        text-align: center;
    }

    .tremuchi-product-image-container {
        position: relative;
        overflow: hidden;
        margin-bottom: 0.75rem;
        border-radius: 6px;
    }

    .tremuchi-product-image {
        width: 100%;
        height: auto;
        aspect-ratio: 5/6;
        object-fit: cover;
        display: block;
        border-radius: 6px;
    }

    .tremuchi-product-image-hover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 6px;
    }

    .tremuchi-product-card:hover .tremuchi-product-image-hover {
        opacity: 1;
    }

    .tremuchi-add-to-cart {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 12, 82, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .tremuchi-product-card:hover .tremuchi-add-to-cart {
        opacity: 1;
    }

    @media (max-width: 800px) {
        .tremuchi-add-to-cart {
            opacity: 1;
        }
    }

    .tremuchi-add-to-cart:hover {
        background: #000C52;
        transform: scale(1.1);
    }

    .tremuchi-add-to-cart:hover svg path {
        fill: #ffffff;
    }

    .tremuchi-add-to-cart svg {
        width: 16px;
        height: 16px;
    }

    .tremuchi-add-to-cart svg path {
        fill: #000C52;
        transition: fill 0.3s ease;
    }

    .tremuchi-quantity-selector {
        position: absolute;
        bottom: 10px;
        right: 10px;
        display: none;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 12, 82, 0.15);
        border-radius: 25px;
        padding: 0.4rem 0.6rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        z-index: 10;
    }

    .tremuchi-quantity-selector.active {
        display: flex;
        animation: fadeInScale 0.2s ease;
    }

    .tremuchi-quantity-selector.active ~ .tremuchi-add-to-cart {
        display: none;
    }

    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .tremuchi-quantity-btn {
        background: rgba(0, 12, 82, 0.08);
        border: 1px solid rgba(0, 12, 82, 0.12);
        color: #000C52;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .tremuchi-quantity-btn:hover {
        background: rgba(0, 12, 82, 0.15);
        transform: scale(1.05);
    }

    .tremuchi-quantity-btn:active {
        transform: scale(0.95);
    }

    .tremuchi-quantity-display {
        font-family: "logic-monospace", mono;
        font-size: 1.4rem;
        font-weight: 600;
        color: #000C52;
        min-width: 32px;
        text-align: center;
    }

    .tremuchi-quantity-add {
        background: #000C52;
        color: #ffffff;
        border: 1px solid #000C52;
        min-width: 50px;
        height: 32px;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 0 0.75rem;
        font-family: "neue-haas-grotesk-display", sans-serif;
    }

    .tremuchi-quantity-add:hover {
        background: #001a7a;
        transform: scale(1.05);
    }

    .tremuchi-quantity-add:active {
        transform: scale(0.95);
    }

    .tremuchi-quantity-add.adding {
        opacity: 0.8;
        cursor: wait;
    }

    .tremuchi-product-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
        padding: 0 0.5rem;
    }

    .tremuchi-product-details {
        width: 100%;
    }

    .tremuchi-product-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.1rem;
        line-height: 1.1;
        letter-spacing: -0.01em;
        text-transform: uppercase;
        color: #000C52;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .tremuchi-product-variant {
        font-family: "logic-monospace", mono;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
        letter-spacing: -0.05em;
        word-spacing: -0.35em;
        color: #636363;
    }

    .tremuchi-product-variant-count {
        font-size: 1.2rem;
        color: rgba(0, 12, 82, 0.5);
        font-weight: 600;
        text-transform: uppercase;
        margin-left: 0.25rem;
        letter-spacing: 0.05em;
    }

    .tremuchi-product-price {
        font-family: "logic-monospace", mono;
        font-size: 1.5rem;
        font-weight: 600;
        color: #000C52;
        margin-top: 0.15rem;
    }

    .tremuchi-view-more-card {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
        background: transparent;
        border: none;
    }

    .tremuchi-view-more-arrow {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        color: #000C52;
        font-weight: 300;
    }

    .tremuchi-view-more-text {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #000C52;
    }

    @media (max-width: 800px) {
        .tremuchi-carousel-header {
            padding: 0 1rem;
        }

        .tremuchi-carousel-track {
            padding: 0 1rem;
        }

        .tremuchi-product-card {
            width: clamp(200px, 45vw, 300px);
            min-width: clamp(200px, 45vw, 300px);
        }

        .tremuchi-carousel-nav button svg {
            width: 20px;
            height: 20px;
        }

        .tremuchi-add-to-cart {
            width: 32px;
            height: 32px;
        }

        .tremuchi-add-to-cart svg {
            width: 12px;
            height: 12px;
        }

        .tremuchi-product-title {
            font-size: 1.3rem;
        }

        .tremuchi-product-variant {
            font-size: 1rem;
        }

        .tremuchi-product-price {
            font-size: 1.1rem;
        }

        .tremuchi-shop-link {
            font-size: 1.5rem;
        }

        .tremuchi-view-more-arrow {
            font-size: 2rem;
        }

        .tremuchi-view-more-text {
            font-size: 0.85rem;
        }
    }