/* Minification failed. Returning unminified contents.
(114,27): run-time error CSS1039: Token not allowed after unary operator: '-bs-aspect-ratio'
(127,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(131,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(135,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(139,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
/* card */
.card--pfc {
    background-color: #fff;
    border: 0;
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 1rem;
    transition: box-shadow 0.4s ease;
}

    .card--pfc:hover, .card--pfc:focus {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .25);
        -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.25);
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .25);
    }

    .card--pfc .card__body {
        flex: 1 1 auto;
    }

    .card--pfc .card__attributes {
        align-items: center;
        color: #aaa;
        display: flex;
        font-size: .9rem;
        gap: .75rem;
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    .card--pfc .card__media {
        aspect-ratio: 1 / 1;
        border: 1px solid #eee;
        margin-bottom: 1rem;
        padding: .25rem;
        position: relative;
    }

    .card--pfc .card__image {
        display: block;
        margin: 0 auto;
    }

    .card--pfc .card__title {
        color: #000;
        font-family: Oswald, "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

        .card--pfc .card__title a {
            color: inherit;
            text-decoration: none;
        }

        .card--pfc .card__title:hover a {
            color: inherit;
            text-decoration: underline;
        }

    .card--pfc .card__button {
        background-color: #89cf00;
        border-radius: 1000px;
        display: block;
        font-weight: 700;
    }

        .card--pfc .card__button::after {
            content: "\f178";
            font-family: "Font Awesome 6 Free";
            font-weight: 700;
            margin-left: .5em;
        }

        .card--pfc .card__button:hover {
            background-color: #6ea600;
        }

    .card--pfc .card__price {
        color: #808080;
        font-size: .9rem;
        font-weight: 700;
        line-height: 1;
    }

    .card--pfc .card__productcolors {
        display: flex;
        flex-wrap: wrap;
        gap: 3px;
        justify-content: center;
        width: 80%;
        padding: 0 .5rem .5rem .5rem;
        position: absolute;
        left: 10%;
        bottom: 0;
    }

        .card--pfc .card__productcolors a {
            line-height: 1;
        }

.ratio {
    position: relative;
    width: 100%;
}

    .ratio::before {
        display: block;
        padding-top: var(--bs-aspect-ratio);
        content: "";
    }

    .ratio > * {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%;
}

.GridView--pfc th, .GridView--pfc td {
    font-size: .9rem;
}

/* colorswatch */
.colorswatch {
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ccc;
    display: inline-block;
    height: 35px;
    width: 35px;
}

.colorswatch--small {
    height: 20px;
    width: 20px;
}

.colorswatch--xsmall {
    border: 1px solid #ccc;
    box-shadow: none;
    height: 16px;
    width: 16px;
}

/* Utilities */
.h-100 {
    height: 100% !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

#main-container,
#content-container {
    padding: 0;
    max-width: none;
}

    #content-container > .grid-x {
        margin-right: 0;
        margin-left: 0;
    }

#content {
    padding-right: 0;
    padding-left: 0;
}



.nav-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.nav-pill {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    padding: 8px 18px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

    .nav-pill:hover {
        border-color: #cbd5e1;
        color: #000;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

.nav-pill__image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 50%;
}

.product-grid .card__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.filter-scrollable {
    max-height: 250px;
    overflow-y: auto;
}

.card__ink-drop {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 5;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

    .card__ink-drop i {
        font-size: 14px;
    }

.ink-drop--multi {
    background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.filter-swatch {
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    display: inline-block;
    cursor: pointer;
    border-radius: 2px;
    box-sizing: border-box;
    vertical-align: middle;
}

    .filter-swatch.is-active {
        border: 1px solid #000;
        padding: 2px;
        box-shadow: inset 0 0 0 1px #fff;
    }

.filter-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

    .filter-disabled .filter-swatch,
    .filter-disabled input {
        cursor: not-allowed !important;
    }

.filter-label {
    cursor: pointer;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.filter-tag {
    background-color: #004c72;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

    .filter-tag:hover {
        background-color: #003a58;
    }

.filter-tag-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    padding: 0 0 0 4px;
    display: inline-flex;
    align-items: center;
}

    .filter-tag-close:hover {
        color: #ddd;
    }

.filter-tag-reset {
    background: none;
    border: none;
    color: #333;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 10px;
}

    .filter-tag-reset:hover {
        color: #000;
    }

.card__price-wrapper {
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
    margin-bottom: 12px;
}


.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

    .pagination li {
        list-style: none;
        margin: 0;
    }

        .pagination li a,
        .pagination li span {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 36px;
            padding: 0 10px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            background-color: #fff;
            transition: all 0.2s ease;
        }

.pagination li a:hover {
    border-color: #004c72;
    color: #004c72;
}

.pagination li.current a {
    background-color: #004c72;
    color: white;
    border-color: #004c72;
    pointer-events: none;
}

        .pagination li.disabled span,
        .pagination li.ellipsis span {
            color: #a0aec0;
            border-color: transparent;
            background-color: transparent;
        }

