﻿:root {
    /* Rose Gold */
    --rg: #C4866E;
    --rg-lt: #E8B4A0;
    --rg-dk: #8A5240;
    /* Gold */
    --gd: #C9A84C;
    --gd-lt: #E2C97E;
    --gd-dk: #8B6914;
    /* Light theme surfaces */
    --bg: #ffffff;
    --bg-soft: #ffffff;
    --card-bg: #ffffff;
    --tint-lt: #F6E9E3;
    --bdr: rgba(196,134,110,.22);
    --tx-l: #180e08;
    --mt-l: #6b5a50;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg-soft);
    color: var(--tx-l);
    font-family: 'Manrope',sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-font {
    font-family: 'Fraunces',serif;
}

/* ---------- Top bar ---------- */
.topbar {
    background: var(--bg);
    border-bottom: 1px solid var(--bdr);
    padding: 16px 0;
}

    .topbar .logo {
        font-family: 'Fraunces',serif;
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--rg-dk);
        letter-spacing: -0.02em;
    }

        .topbar .logo span {
            color: var(--rg);
        }

.search-wrap {
    position: relative;
}

    .search-wrap input {
        border-radius: 30px;
        border: 1px solid var(--bdr);
        padding: 10px 18px 10px 42px;
        background: var(--bg-soft);
        font-size: .9rem;
    }

        .search-wrap input:focus {
            outline: none;
            box-shadow: 0 0 0 3px var(--tint-lt);
            border-color: var(--rg);
        }

    .search-wrap i {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--mt-l);
    }

.page-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.texttop-list {
    width: 100%;
    max-width: 850px;
}

.page-head h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--tx-l);
    margin: 0;
    line-height: 1.2;
}

.page-head p {
    color: var(--mt-l);
    margin: 4px 0 0;
    font-size: .95rem;
}

/* one-line tagline under the intro paragraph */
.tagline-note {
    font-size: .8rem;
    font-weight: 600;
    color: var(--rg-dk);
    margin: 8px 0 0;
}

/* ================= FILTER SIDEBAR: Pinterest-style icon rail + flyout panel ================= */
.main-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.col-filter {
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 20px;
    align-self: flex-start;
    z-index: 30;
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    box-shadow: 0 6px 20px -10px rgba(138, 82, 64, .25);
}

.col-grid {
    flex: 1 1 auto;
    min-width: 0;
}

/* ---------- Icon rail: always visible, fixed on the left, one icon per filter group ---------- */
.icon-rail {
    width: 64px;
   
    border-radius: 0px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  
    padding-top: 148px;
}

.rail-icon {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    /* dark overlay by default */
    background: var(--tx-l);
    color: rgba(255,255,255,.92);
    transition: background .2s ease, color .2s ease, transform .15s ease;
}

    /* hover: dark layer is removed, brand tint shows through */
    .rail-icon:hover {
        background: var(--tint-lt);
        color: var(--rg-dk);
        transform: translateY(-1px);
    }

    .rail-icon.active {
        background: var(--rg);
        color: #fff;
    }

    .rail-icon .badge-count {
        position: absolute;
        top: -4px;
        right: -4px;
        background: var(--rg);
        color: #fff;
        font-size: .64rem;
        font-weight: 700;
        min-width: 17px;
        height: 17px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 2px;
        border: 2px solid var(--card-bg);
    }

    .rail-icon:hover .badge-count {
        border-color: var(--tint-lt);
    }

.rail-divider {
    width: 28px;
    height: 1px;
    background: var(--bdr);
    margin: 4px 0;
}

/* ---------- Flyout panel: opens beside the rail, never grows past the viewport ---------- */
.filter-flyout {
    position: absolute;
    top: 20px;
    left: 76px;
    width: 300px;
    max-height: calc(100vh - 40px);
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    box-shadow: 0 20px 48px -16px rgba(24,14,8,.28);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 9999999 !important;
}

    .filter-flyout.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

.filter-flyout-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 6px;
    flex-shrink: 0;
}

    .filter-flyout-head h5 {
        font-family: 'Fraunces',serif;
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0;
        color: var(--tx-l);
    }

.filter-close-btn, .filter-collapse-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--bdr);
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rg-dk);
    cursor: pointer;
    font-size: .85rem;
    flex-shrink: 0;
}

    .filter-close-btn:hover, .filter-collapse-btn:hover {
        background: var(--rg);
        color: #fff;
        border-color: var(--rg);
    }

/* scrollable middle area — this is what keeps the flyout from ever running below the viewport */
.filter-scroll {
    overflow-y: auto;
    flex: 1 1 auto;
    padding: 4px 20px 0;
    min-height: 0;
}

.filter-card h6 {
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .09em;
    color: var(--mt-l);
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.2;
}

.filter-section {
    border-bottom: 1px solid var(--bdr);
    padding-bottom: 18px;
    margin-bottom: 18px;
    display: none;
}

    /* only the section matching the active rail icon is shown; "all" shows every section (JS adds this class) */
    .filter-flyout .filter-section.section-active {
        display: block;
    }

    .filter-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .filter-section .form-check {
        margin-bottom: 9px;
    }

    .filter-section .form-check-input {
        border-color: var(--rg-lt);
        width: auto;
        margin-bottom: 0;
    }

        .filter-section .form-check-input:checked {
            background-color: var(--rg);
            border-color: var(--rg);
        }

    .filter-section label {
        font-size: .88rem;
        color: var(--tx-l);
        cursor: pointer;
        margin: 0;
        padding: 0;
        width: auto;
    }

.filter-count {
    color: var(--mt-l);
    font-size: .78rem;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

    .color-swatches .sw {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 2px solid var(--bg);
        box-shadow: 0 0 0 1px var(--bdr);
        cursor: pointer;
        position: relative;
    }

        .color-swatches .sw.active {
            box-shadow: 0 0 0 2px var(--rg);
        }

/* sticky footer inside the flyout: Apply / Clear always visible, never scrolls off */
.filter-actions {
    flex-shrink: 0;
    background: var(--card-bg);
    padding: 14px 20px 20px;
    margin-top: 8px;
    border-top: 1px solid var(--bdr);
    border-radius: 0 0 16px 16px;
}

.btn-apply {
    background: var(--rg);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    font-size: .9rem;
}

    .btn-apply:hover {
        background: var(--rg-dk);
        color: #fff;
    }

.btn-clear {
    background: transparent;
    border: 1px solid var(--bdr);
    color: var(--mt-l);
    border-radius: 10px;
    padding: 8px;
    width: 100%;
    font-size: .85rem;
    margin-top: 8px;
}

    .btn-clear:hover {
        border-color: var(--rg);
        color: var(--rg-dk);
    }

.tag-pill {
    display: inline-block;
    border: 1px solid var(--bdr);
    background: var(--tint-lt);
    color: var(--rg-dk);
    font-size: .76rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 0 6px 8px 0;
    cursor: pointer;
    line-height: 1.2;
}

    .tag-pill:hover {
        border-color: var(--rg);
    }

    .tag-pill.active-tag {
        background: var(--rg);
        color: #fff;
        border-color: var(--rg);
    }

/* ---------- Mobile off-canvas overlay (behind the flyout, dims the page) ---------- */
.filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(24,14,8,.45);
    z-index: 1040;
    opacity: 0;
    transition: opacity .25s ease;
}

    .filter-overlay.show {
        display: block;
        opacity: 1;
    }

/* Mobile: icon rail becomes a horizontal strip up top, flyout becomes a full slide-in drawer */
@media (max-width:991px) {
    .main-row {
        flex-direction: column;
        gap: 12px;
    }

    .col-filter {
        position: static;
        width: 100%;
    }

    .icon-rail {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        border-radius: 14px;
    }

    .rail-divider {
        display: none;
    }

    .filter-flyout {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 86%;
        max-width: 340px;
        max-height: none;
        border-radius: 0;
        transform: translateX(-105%);
        z-index: 1050;
    }

        .filter-flyout.open {
            transform: translateX(0);
        }

    .filter-flyout-head {
        position: sticky;
        top: 0;
        background: var(--card-bg);
        z-index: 2;
    }
}

/* ---------- Masonry grid (TRUE masonry via CSS columns - no gaps) ---------- */
.masonry {
    column-count: 4;
    column-gap: 20px;
}

.masonry .v-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 20px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    cursor: pointer;
}

/* rail is always narrow (flyout overlays the grid instead of pushing it), so the grid can use the extra width */
@media (min-width:1200px) {
    .masonry {
        column-count: 5;
    }
}

@media (min-width:768px) and (max-width:1200px) {
    .masonry {
        column-count: 3;
    }
}

@media (max-width:767px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width:450px) {
    .masonry {
        column-count: 1;
    }
}

.v-card {
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .v-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px -14px rgba(138,82,64,.28);
        border-color: var(--rg-lt);
    }

    /* Custom design CTA card - first card, distinct look */
    .v-card.custom-card {
        background: linear-gradient(155deg,var(--rg) 0%, var(--rg-dk) 100%);
        color: #fff;
        padding: 34px 26px;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-decoration: none;
        position: relative;
        isolation: isolate;
    }

        .v-card.custom-card::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background-image: radial-gradient(circle at 85% 15%, rgba(255,255,255,.18) 0, transparent 45%), repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 22px);
        }

        .v-card.custom-card .eyebrow {
            text-transform: uppercase;
            letter-spacing: .12em;
            font-size: .72rem;
            font-weight: 700;
            color: rgba(255,255,255,.75);
        }

        .v-card.custom-card h3 {
            font-size: 1.7rem;
            font-weight: 600;
            margin: 14px 0 8px;
            line-height: 1.15;
        }

        .v-card.custom-card p {
            color: rgba(255,255,255,.85);
            font-size: .9rem;
            margin: 0 0 22px;
        }

        .v-card.custom-card .cta-btn {
            background: #fff;
            color: var(--rg-dk);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: .88rem;
            padding: 11px 20px;
            border-radius: 10px;
            width: fit-content;
            transition: gap .2s ease;
        }

        .v-card.custom-card:hover .cta-btn {
            gap: 12px;
        }

        .v-card.custom-card .plus-icon {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(255,255,255,.18);
            border: 1px dashed rgba(255,255,255,.55);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

    /* Product image wrap */
    .v-card .img-wrap {
        position: relative;
        background: var(--tint-lt);
        overflow: hidden;
    }

        .v-card .img-wrap img {
            width: 100%;
            display: block;
            object-fit: cover;
            transition: transform .5s ease;
        }

    .v-card:hover .img-wrap img {
        transform: scale(1.045);
    }

    /* varying heights for masonry mix: vertical & horizontal-feel cards */
    .v-card.h-tall .img-wrap img {
        aspect-ratio: 3/4;
    }

    .v-card.h-square .img-wrap img {
        aspect-ratio: 1/1;
    }

    .v-card.h-wide .img-wrap img {
        aspect-ratio: 16/10;
    }

    .v-card.h-xtall .img-wrap img {
        aspect-ratio: 2/3;
    }

.like-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 6px 12px 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--rg-dk);
    box-shadow: 0 4px 12px rgba(138,82,64,.18);
    border: none;
    cursor: pointer;
    transition: background .2s;
    line-height: 1.4;
}

    .like-badge:hover {
        background: #fff;
    }

    .like-badge i {
        color: var(--rg);
        font-size: .85rem;
        transition: color .15s, transform .15s;
    }

    .like-badge.liked i {
        color: #c4413f;
    }

    .like-badge.liked {
        animation: pop .28s ease;
    }

@keyframes pop {
    50% {
        transform: scale(1.12);
    }
}

.new-flag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--rg);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* ---------- Pinterest-style overlay: text & actions sit ON the image, no white box below ---------- */
.card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding: 34px 14px 14px;
    background: linear-gradient(to top, rgba(12,7,4,.86) 0%, rgba(12,7,4,.5) 45%, transparent 100%);
    color: #fff;
    opacity: 0;
}

.img-wrap:hover .card-overlay {
    opacity: 1;
}

.card-overlay .overlay-text {
    min-width: 0;
}

    .card-overlay .name {
        font-weight: 700;
        font-size: .94rem;
        color: #fff;
        margin: 0 0 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-shadow: 0 1px 3px rgba(0,0,0,.4);
        line-height: 1.2;
    }

    .card-overlay .cat {
        color: rgba(255,255,255,.82);
        font-size: .74rem;
        margin: 0 0 8px;
    }

    .card-overlay .card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

        .card-overlay .card-tags span {
            background: rgba(255,255,255,.16);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,.28);
            color: #fff;
            font-size: .66rem;
            font-weight: 600;
            padding: 4px 9px;
            border-radius: 20px;
        }

.overlay-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity .2s ease, transform .2s ease;
}

.v-card:hover .overlay-actions, .v-card:focus-within .overlay-actions {
    opacity: 1;
    transform: translateX(0);
}

@media (hover:none) {
    .overlay-actions {
        opacity: 1;
        transform: translateX(0);
    }
}

.overlay-actions .icon-btn {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.32);
    color: #fff;
}

    .overlay-actions .icon-btn:hover {
        background: var(--rg);
        border-color: var(--rg);
        color: #fff;
    }

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--bdr);
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rg-dk);
    font-size: .85rem;
    cursor: pointer;
    transition: background .18s,border-color .18s,color .18s;
    flex-shrink: 0;
}

    .icon-btn:hover {
        background: var(--rg);
        border-color: var(--rg);
        color: #fff;
    }

    .icon-btn.sm {
        width: 28px;
        height: 28px;
        font-size: .76rem;
    }

/* skeleton shimmer for lazy loading */
.img-wrap {
    background: linear-gradient(100deg,var(--tint-lt) 30%,#fffaf7 50%,var(--tint-lt) 70%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite;
}

    .img-wrap img {
        animation: fadein .4s ease;
    }

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.results-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 14px;
}

    .results-bar .count {
        color: var(--mt-l);
        font-size: .88rem;
    }

.sort-select {
    border: 1px solid var(--bdr);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: .85rem;
    background: var(--bg);
    color: var(--tx-l);
    width: auto;
}

/* ---------- Share modal ---------- */
.share-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(24,14,8,.5);
    z-index: 1080;
    align-items: flex-end;
    justify-content: center;
}

    .share-overlay.show {
        display: flex;
    }

@media (min-width:576px) {
    .share-overlay {
        align-items: center;
    }
}

.share-modal {
    background: #fff;
    width: 100%;
    max-width: 380px;
    border-radius: 20px 20px 0 0;
    padding: 22px;
    animation: slideUp .25s ease;
}

@media (min-width:576px) {
    .share-modal {
        border-radius: 20px;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.share-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

    .share-modal-head h5 {
        font-family: 'Fraunces',serif;
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0;
        color: var(--tx-l);
    }

.share-options {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px 8px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--tx-l);
    font-size: .74rem;
    font-weight: 600;
    text-align: center;
}

    .share-option .ic {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        color: #fff;
        transition: transform .15s ease;
    }

    .share-option:hover .ic {
        transform: translateY(-3px);
    }

    .share-option .ic.whatsapp {
        background: #25D366;
    }

    .share-option .ic.facebook {
        background: #1877F2;
    }

    .share-option .ic.twitter {
        background: #000000;
    }

    .share-option .ic.linkedin {
        background: #0A66C2;
    }

    .share-option .ic.email {
        background: var(--rg);
    }

    .share-option .ic.copy {
        background: var(--rg-dk);
    }

.share-copy-row {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 8px 10px;
    margin-top: 18px;
    background: var(--tint-lt);
}

    .share-copy-row input {
        border: none;
        background: transparent;
        flex: 1;
        font-size: .8rem;
        color: var(--mt-l);
        outline: none;
        margin-bottom: 0;
    }

    .share-copy-row button {
        border: none;
        background: var(--rg);
        color: #fff;
        font-size: .76rem;
        font-weight: 700;
        padding: 7px 14px;
        border-radius: 8px;
        white-space: nowrap;
    }

        .share-copy-row button:hover {
            background: var(--rg-dk);
        }

.share-modal-close-bottom {
    margin-top: 14px;
}

.top-crumb {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #7a6e5e;
    padding: 8px;
    background-color: #fbf9f8;
    margin-bottom: 6px;
}

    .top-crumb .current {
        color: #211c15;
        font-weight: 500;
    }

/*----------- Grid --------------*/

@media (min-width: 768px) {
    .container {
        max-width: 900px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1200px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1400px !important;
    }
}

@media (min-width: 1400px) {
    .container,
    .nav-header-container {
        width: 100% !important;
        max-width: 1550px !important;
    }

    .tpl-img-wrap {
        height: 370px;
    }

    #sliderUltra .tpl-img-wrap {
        height: 470px;
    }
}

@media (min-width: 1600px) {
    .container,
    .nav-header-container {
        width: 100% !important;
        max-width: 1750px !important;
    }
}

@media (min-width: 1800px) {
    .container,
    .nav-header-container {
        width: 100% !important;
        max-width: 1850px !important;
    }
}

@media (min-width: 2000px) {
    .container,
    .nav-header-container {
        width: 100% !important;
        max-width: 1950px !important;
    }
}

/* ---------- Hover-to-play preview video over the card cover ---------- */
.v-card .card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    background: #000;
}

.v-card:hover .card-video,
.v-card:focus-within .card-video {
    opacity: 1;
}

a.v-card {
    text-decoration: none;
    color: inherit;
}

/* ---------- Pagination ---------- */
.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--bdr);
}

.pg-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--bdr);
    background: #fff;
    color: var(--tx-l);
    font-size: .86rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s,border-color .15s,color .15s;
}

    .pg-btn:hover {
        border-color: var(--rg);
        color: var(--rg-dk);
    }

    .pg-btn.active {
        background: var(--rg);
        border-color: var(--rg);
        color: #fff !important;
    }

    .pg-btn.disabled {
        opacity: .4;
        cursor: not-allowed;
        pointer-events: none;
    }

    .pg-btn.nav {
        font-size: .78rem;
        gap: 6px;
    }

.pg-ellipsis {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mt-l);
    font-size: .86rem;
}

div#gridCol {
    max-width: calc(100% - 90px);
    margin-left:auto;
}
footer#footer-box {
    z-index: 99999;
}

.v-card .img-wrap {
    position: relative;
    overflow: hidden;
}

    .v-card .img-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.12);
        transition: opacity .3s ease;
        pointer-events: none;
    }

.v-card:hover .img-wrap::after {
    opacity: 0;
}

.v-card .img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.filter-section h6 {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
}