/** Shopify CDN: Minification failed

Line 203:1 Expected "}" to go with "{"

**/
/* Sticky ATC Bar */
.pdp-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 12px 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.3s ease-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.pdp-sticky-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-left-col {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-thumb {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
}

.sticky-text-info {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1;
    color: #000;
}

.sticky-price-text {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-top: 4px;
}

.sticky-right-col {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Sticky Pills */
.sticky-pills {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 200px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.sticky-pills::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.sticky-pill {
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #111;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    border-radius: 4px;
    /* Matches aesthetics */
}

.sticky-pill:hover {
    border-color: #000;
}

.sticky-pill.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.sticky-pill.sold-out {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.sticky-atc-btn {
    padding: 12px 24px;
    font-weight: 900;
    background: #2E2E2E;
    /* Charcoal Grey */
    color: #FFFFFF;
    /* White */
    border: none;
    font-style: italic;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sticky-atc-btn:hover {
    background: #1a1a1a;
    /* Darker Charcoal */
    /* Slightly darker */
}

.sticky-atc-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {

    .sticky-product-info .sticky-thumb,
    .sticky-product-info .sticky-text-info,
    .sticky-left-col {
        display: none !important;
    }

    .sticky-product-info {
        justify-content: center !important;
        padding: 0;
        max-width: 100%;
    }

    .sticky-right-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sticky-pills {
        max-width: 100%;
        width: 100%;
        flex-wrap: wrap;
        overflow-x: visible;
        /* No scroll */
        justify-content: center;
        gap: 6px;
    }

    .sticky-pill {
        font-size: 10px;
        /* Slightly smaller to fit more */
        padding: 6px 10px;
        flex: 0 1 auto;
        /* Allow wrapping and sizing */
    }

    .sticky-atc-btn {
        width: 100%;
        justify-content: center;
 