/** Shopify CDN: Minification failed

Line 6:2 Unexpected "="

**/
* ============================================================
   CARAZON SWIPER — Unified Carousel Styles
   All images: 2000x2000 (1:1 square)
   Rules: 1 slide visible, no crop, no zoom, no stretch,
          no background repeat, clean snap on swipe
   ============================================================ */

/* ─── SHARED CAROUSEL CONTAINER ──────────────────────────────── */
.crz-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--parchment);
    background-repeat: no-repeat;
}

/* Track: slides sit side by side, moves 100% per slide */
.crz-carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

/* Each slide: exactly 100% width = 1 image per view */
.crz-carousel-slide {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--parchment);
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Image: full fit inside square, never crop, never stretch */
.crz-carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    background-repeat: no-repeat;
    -webkit-user-drag: none;
    user-select: none;
}

/* ─── NAVIGATION ARROWS ─────────────────────────────────────── */
.crz-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(253, 250, 246, 0.9);
    border: 1px solid rgba(44, 36, 32, 0.08);
    box-shadow: 0 4px 16px rgba(44, 36, 32, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    color: var(--charcoal);
    transition: all 0.25s ease;
    padding: 0;
}

.crz-arrow:hover {
    background: var(--warm-white);
    box-shadow: 0 6px 24px rgba(44, 36, 32, 0.2);
    transform: translateY(-50%) scale(1.08);
    color: var(--merlot);
}

.crz-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.crz-arrow svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.crz-arrow-prev { left: 12px; }
.crz-arrow-next { right: 12px; }

.crz-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* ─── PAGINATION DOTS ────────────────────────────────────────── */
.crz-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 0 0;
}

.crz-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(44, 36, 32, 0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crz-dot.is-active {
    background: var(--merlot);
    width: 24px;
    border-radius: 4px;
}

.crz-dot:hover:not(.is-active) {
    background: rgba(44, 36, 32, 0.3);
}

/* ─── SLIDE COUNTER ──────────────────────────────────────────── */
.crz-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 5;
    background: rgba(44, 36, 32, 0.65);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

/* ─── MAIN PRODUCT GALLERY ───────────────────────────────────── */
.pdp-gallery-carousel {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    background-repeat: no-repeat;
}

/* Thumbnails — these ARE cropped (small squares, correct) */
.pdp-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pdp-thumb {
    width: 72px;
    height: 72px;
    border: 2px solid rgba(44, 36, 32, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: var(--parchment);
    transition: border-color var(--transition), transform 0.2s ease;
    flex-shrink: 0;
}

.pdp-thumb.is-active {
    border-color: var(--merlot);
    box-shadow: 0 0 0 2px rgba(107, 28, 45, 0.15);
}

.pdp-thumb:hover:not(.is-active) {
    border-color: var(--rose);
    transform: translateY(-1px);
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── ZOOM OVERLAY ───────────────────────────────────────────── */
.crz-zoom-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(12, 4, 8, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.crz-zoom-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.crz-zoom-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.crz-zoom-container:active {
    cursor: grabbing;
}

.crz-zoom-container img {
    display: block;
    max-width: none;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.crz-zoom-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(253, 250, 246, 0.15);
    border: 1px solid rgba(253, 250, 246, 0.2);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease;
    padding: 0;
}

.crz-zoom-close:hover {
    background: rgba(253, 250, 246, 0.25);
}

.crz-zoom-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: rgba(44, 36, 32, 0.5);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.pdp-gallery-carousel:hover .crz-zoom-hint {
    opacity: 1;
}

/* ─── WHAT'S INSIDE CAROUSEL ─────────────────────────────────── */
.wi-carousel-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-repeat: no-repeat;
}

.wi-carousel-wrap .crz-carousel-slide {
    background-color: var(--parchment);
    background-repeat: no-repeat;
}

.wi-carousel-wrap .crz-arrow {
    width: 38px;
    height: 38px;
}

.wi-carousel-wrap .crz-arrow svg {
    width: 16px;
    height: 16px;
}

/* ─── TOUCH / DRAG FEEDBACK ──────────────────────────────────── */
.crz-carousel.is-dragging .crz-carousel-track {
    transition: none;
}

/* ─── RESPONSIVE — MOBILE ────────────────────────────────────── */
@media (max-width: 768px) {
    .crz-arrow {
        width: 36px;
        height: 36px;
    }
    .crz-arrow svg {
        width: 15px;
        height: 15px;
    }
    .crz-arrow-prev { left: 8px; }
    .crz-arrow-next { right: 8px; }

    .pdp-thumbs {
        gap: 0.4rem;
    }
    .pdp-thumb {
        width: 60px;
        height: 60px;
    }

    .crz-zoom-hint { display: none; }
}

