/* ═══════════════════════════════════════════════
   CHROME UNIVERSE — Category Listing Page Styles
   Mobile-first. Reuses variables from styles.css
   ═══════════════════════════════════════════════ */

/* ───────────────────────────────────────────────
   CATEGORY HERO
   ─────────────────────────────────────────────── */
.cat-hero {
    position: relative;
    min-height: 60svh;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 3rem;
    overflow: hidden;
    isolation: isolate;
}

.cat-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--cat-hero-img);
    background-size: cover;
    background-position: center;
    filter: brightness(0.32) contrast(1.15) saturate(0.7);
    transform: scale(1.05);
    animation: catHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes catHeroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.cat-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at center, transparent 20%, rgba(10,10,10,0.85) 90%),
        linear-gradient(180deg, rgba(10,10,10,0.6) 0%, transparent 25%, transparent 75%, rgba(10,10,10,0.95) 100%);
}

.cat-hero .grain {
    z-index: -1;
    opacity: 0.18;
}

/* Decorative frame */
.cat-hero-frame {
    position: absolute;
    top: calc(65px + clamp(1rem, 3vw, 2.5rem));
    left: clamp(1rem, 3vw, 2.5rem);
    right: clamp(1rem, 3vw, 2.5rem);
    bottom: clamp(1rem, 3vw, 2.5rem);
    z-index: 1;
    pointer-events: none;
}
.cat-hero-frame-line {
    position: absolute;
    background: rgba(192,192,192,0.18);
}
.cat-hero-frame-line-top,
.cat-hero-frame-line-bottom {
    height: 1px;
    left: 0; right: 0;
    transform: scaleX(0);
    animation: catFrameX 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.cat-hero-frame-line-top { top: 0; transform-origin: left; }
.cat-hero-frame-line-bottom { bottom: 0; transform-origin: right; }
.cat-hero-frame-line-left,
.cat-hero-frame-line-right {
    width: 1px; top: 0; bottom: 0;
    transform: scaleY(0);
    animation: catFrameY 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.cat-hero-frame-line-left { left: 0; transform-origin: top; }
.cat-hero-frame-line-right { right: 0; transform-origin: bottom; }
@keyframes catFrameX { to { transform: scaleX(1); } }
@keyframes catFrameY { to { transform: scaleY(1); } }

.cat-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cat-hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--silver-dark);
    opacity: 0;
    transform: translateY(20px);
    animation: catFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.cat-hero-title {
    font-family: var(--font-gothic);
    font-size: clamp(3.5rem, 11vw, 8rem);
    line-height: 0.95;
    color: var(--silver-bright);
    margin: 0;
    text-shadow: 0 0 80px rgba(192,192,192,0.15);
    opacity: 0;
    transform: translateY(40px);
    animation: catFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.cat-hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-style: italic;
    color: var(--silver-muted);
    max-width: 540px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    animation: catFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.cat-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    animation: catFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.cat-hero-cross {
    font-size: 0.7rem;
    color: var(--silver-dark);
}

.cat-hero-count {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver);
}

.cat-hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    animation: catFadeUp 1s ease 1.4s forwards;
}
.cat-hero-scroll span {
    font-family: var(--font-display);
    font-size: 0.5rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--silver-dark);
}
.cat-hero-scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--silver-dark), transparent);
}

@keyframes catFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ───────────────────────────────────────────────
   FILTERS BAR
   ─────────────────────────────────────────────── */
.cat-filters {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(192,192,192,0.06);
    border-bottom: 1px solid rgba(192,192,192,0.06);
}

.cat-filters-inner {
    display: none; /* hidden on mobile, shown on desktop */
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem clamp(1.5rem, 4vw, 3rem);
}

.cat-filter-count {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--silver-dark);
    white-space: nowrap;
}
.cat-filter-count span { color: var(--silver-bright); }

.cat-filter-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cat-filter-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cat-filter-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--silver-dark);
}

/* Custom select */
.cat-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.cat-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid rgba(192,192,192,0.15);
    color: var(--silver-bright);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.6rem 2.25rem 0.6rem 1rem;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    min-height: 44px;
}
.cat-select:hover,
.cat-select:focus { border-color: var(--silver); outline: none; }
.cat-select option { background: var(--black-soft); color: var(--white); }
.cat-select-arrow {
    position: absolute;
    right: 0.85rem;
    width: 10px;
    height: 7px;
    color: var(--silver-dark);
    pointer-events: none;
}

/* Filter button */
.cat-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(192,192,192,0.15);
    color: var(--silver-bright);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    min-height: 44px;
}
.cat-filter-btn:hover { border-color: var(--silver); }
.cat-filter-btn svg { width: 10px; height: 7px; color: var(--silver-dark); }
.cat-filter-btn-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--silver);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 0.05em;
    border-radius: 9px;
}

/* Popup (price filter) */
.cat-filter-popup {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    z-index: 200;
    min-width: 240px;
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(192,192,192,0.12);
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.cat-filter-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cat-filter-popup-title {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}
.cat-filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--silver);
    transition: color 0.3s;
}
.cat-filter-option:hover { color: var(--silver-bright); }
.cat-filter-option input { position: absolute; opacity: 0; pointer-events: none; }

.cat-filter-check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(192,192,192,0.4);
    position: relative;
    transition: all 0.3s;
}
.cat-filter-check::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--silver-bright);
    transform: scale(0);
    transition: transform 0.25s var(--ease-bounce);
}
.cat-filter-option input:checked ~ .cat-filter-check { border-color: var(--silver-bright); }
.cat-filter-option input:checked ~ .cat-filter-check::after { transform: scale(1); }
.cat-filter-check-radio,
.cat-filter-check-radio::after { border-radius: 50%; }

.cat-filter-popup-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(192,192,192,0.08);
}
.cat-filter-popup-clear,
.cat-filter-popup-apply {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.cat-filter-popup-clear {
    background: transparent;
    color: var(--silver-dark);
    border: 1px solid rgba(192,192,192,0.15);
}
.cat-filter-popup-clear:hover { color: var(--silver-bright); border-color: var(--silver); }
.cat-filter-popup-apply {
    background: var(--silver);
    color: var(--black);
    border: 1px solid var(--silver);
}
.cat-filter-popup-apply:hover { background: var(--white); border-color: var(--white); }

/* View toggle */
.cat-view-toggle {
    display: flex;
    gap: 0;
    border: 1px solid rgba(192,192,192,0.15);
}
.cat-view-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-dark);
    background: transparent;
    border-right: 1px solid rgba(192,192,192,0.15);
    transition: all 0.3s;
    cursor: pointer;
}
.cat-view-btn:last-child { border-right: none; }
.cat-view-btn svg { width: 16px; height: 16px; }
.cat-view-btn:hover { color: var(--silver-bright); }
.cat-view-btn.active {
    background: rgba(192,192,192,0.08);
    color: var(--silver-bright);
}

/* Mobile trigger */
.cat-filters-mobile-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--silver-bright);
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    min-height: 48px;
    cursor: pointer;
}
.cat-filters-mobile-trigger svg { width: 16px; height: 16px; color: var(--silver); }

/* ───────────────────────────────────────────────
   PRODUCT GRID
   ─────────────────────────────────────────────── */
.cat-products {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem) clamp(5rem, 10vw, 8rem);
    max-width: 1500px;
    margin: 0 auto;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* mobile default */
    gap: clamp(0.5rem, 1.5vw, 1.5rem);
}

/* Card */
.cat-card-product {
    position: relative;
    background: var(--black-card);
    border: 1px solid rgba(192,192,192,0.05);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    opacity: 1;
}

@keyframes catCardIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Stagger first batch of cards */

.cat-card-product.is-hidden { display: none; }

.cat-card-product-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #222 0%, #141414 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.cat-card-product-img img {
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
    transition: transform 0.9s var(--ease), filter 0.6s;
    filter: brightness(0.92) contrast(1.08);
}

.cat-card-product-info {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cat-card-product-name {
    font-family: var(--font-display);
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    letter-spacing: 0.06em;
    color: var(--silver-bright);
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.cat-card-product-price {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    color: var(--silver-bright);
    font-weight: 500;
}

/* cat-card-product-cta — removed (product name + price always visible) */

/* Mobile: touch feedback */
@media (hover: none) and (pointer: coarse) {
    .cat-card-product:active { transform: scale(0.98); transition: transform 0.1s; }
}

@media (hover: hover) and (pointer: fine) {
    .cat-card-product:hover {
        border-color: rgba(192,192,192,0.18);
        transform: translateY(-4px);
    }
    .cat-card-product:hover .cat-card-product-img img {
        transform: scale(1.07) rotate(0.5deg);
        filter: brightness(1.05) contrast(1.1);
    }
}

/* ───────────────────────────────────────────────
   EMPTY STATE
   ─────────────────────────────────────────────── */
.cat-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.cat-empty-cross {
    font-size: 2rem;
    color: var(--silver-dark);
    margin-bottom: 0.5rem;
}
.cat-empty-title {
    font-family: var(--font-gothic);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--silver-bright);
    font-weight: 400;
}
.cat-empty-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--silver-muted);
    margin-bottom: 0.5rem;
}

/* ───────────────────────────────────────────────
   MOBILE BOTTOM SHEET
   ─────────────────────────────────────────────── */
.cat-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.cat-sheet-backdrop.active { opacity: 1; visibility: visible; }

.cat-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9001;
    background: var(--black-soft);
    border-top: 1px solid rgba(192,192,192,0.12);
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 85svh;
    display: flex;
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom);
    overscroll-behavior-y: contain;
}
.cat-sheet.active { transform: translateY(0); }

.cat-sheet-handle {
    width: 40px;
    height: 4px;
    background: rgba(192,192,192,0.3);
    border-radius: 2px;
    margin: 0.75rem auto 0.25rem;
}

.cat-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(192,192,192,0.06);
}
.cat-sheet-header h3 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver-bright);
    font-weight: 400;
}
.cat-sheet-close {
    width: 44px;
    height: 44px;
    color: var(--silver);
    font-size: 1.75rem;
    line-height: 1;
}

.cat-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem 1.5rem;
}

.cat-sheet-section { margin-bottom: 1.75rem; }
.cat-sheet-section h4 {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.cat-sheet-options { display: flex; flex-direction: column; gap: 0.25rem; }
.cat-sheet-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--silver);
    min-height: 44px;
}
.cat-sheet-option input { position: absolute; opacity: 0; pointer-events: none; }

.cat-sheet-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem calc(1rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(192,192,192,0.06);
}
.cat-sheet-footer .btn {
    flex: 1;
    padding: 1rem 1.5rem;
}

/* ───────────────────────────────────────────────
   RESPONSIVE — TABLET (≥640px)
   ─────────────────────────────────────────────── */
@media (min-width: 640px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .cat-hero { padding-top: 9rem; padding-bottom: 4rem; }
}

/* ───────────────────────────────────────────────
   RESPONSIVE — DESKTOP (≥900px)
   ─────────────────────────────────────────────── */
@media (min-width: 900px) {
    .cat-hero { min-height: 65svh; padding-top: 11rem; padding-bottom: 5rem; }

    .cat-filters-inner { display: flex; }
    .cat-filters-mobile-trigger { display: none; }

    .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

    /* View toggle override */
    .cat-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
    .cat-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
    .cat-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }

    /* Hide mobile bottom sheet on desktop */
    .cat-sheet,
    .cat-sheet-backdrop { display: none; }

    .cat-hero-scroll { display: flex; }
}

/* ───────────────────────────────────────────────
   RESPONSIVE — LARGE DESKTOP (≥1280px)
   ─────────────────────────────────────────────── */
@media (min-width: 1280px) {
    .cat-grid { gap: 1.5rem; }
}

/* ───────────────────────────────────────────────
   ACCESSIBILITY — Reduced Motion
   ─────────────────────────────────────────────── */
/* ───────────────────────────────────────────────
   CATEGORY HERO — Gothic Ornaments
   ─────────────────────────────────────────────── */

/* Cross draw animation */
.cat-hero-cross-draw {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: clamp(100px, 20vw, 200px);
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}
.cat-hero-cross-draw .cross-draw-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: catDrawCross 3s ease 0.5s forwards;
    fill: none;
}
@keyframes catDrawCross {
    to { stroke-dashoffset: 0; }
}
.cat-hero-cross-draw svg {
    animation: catCrossGlow 4s ease-in-out 3.5s infinite;
}
@keyframes catCrossGlow {
    0%, 100% { filter: drop-shadow(0 0 0px transparent); opacity: 0.1; }
    50% { filter: drop-shadow(0 0 15px rgba(192,192,192,0.1)); opacity: 0.18; }
}

/* Corner ornaments */
.cat-hero-corner {
    position: absolute;
    width: clamp(30px, 5vw, 60px);
    height: clamp(30px, 5vw, 60px);
    color: var(--silver);
    opacity: 0;
    animation: catCornerFadeIn 0.8s ease 1s forwards;
}
@keyframes catCornerFadeIn { to { opacity: 1; } }
.cat-hero-corner-tl { top: 0; left: 0; }
.cat-hero-corner-tr { top: 0; right: 0; }
.cat-hero-corner-bl { bottom: 0; left: 0; }
.cat-hero-corner-br { bottom: 0; right: 0; }

/* Fleur-de-lis */
.cat-hero-fleur {
    position: absolute;
    top: -2px; left: 50%; transform: translateX(-50%);
    width: clamp(30px, 4vw, 50px);
    color: var(--silver);
    opacity: 0;
    animation: catCornerFadeIn 0.8s ease 1.5s forwards;
}

/* ───────────────────────────────────────────────
   ACCESSIBILITY — Reduced Motion
   ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .cat-hero-bg { animation: none; }
    .cat-card-product,
    .cat-hero-eyebrow,
    .cat-hero-title,
    .cat-hero-tagline,
    .cat-hero-meta,
    .cat-hero-scroll {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .cat-hero-frame-line { transform: none !important; animation: none !important; }
    .cat-hero-cross-draw,
    .cat-hero-cross-draw .cross-draw-path,
    .cat-hero-cross-draw svg {
        animation: none !important;
        opacity: 0.1 !important;
    }
    .cat-hero-cross-draw .cross-draw-path {
        stroke-dashoffset: 0 !important;
    }
    .cat-hero-corner,
    .cat-hero-fleur {
        animation: none !important;
        opacity: 1 !important;
    }
    .smoke-effect::before,
    .smoke-effect::after {
        animation: none !important;
    }
}

/* ─── Sale Pricing in Category Cards ─── */
.cat-card-product {
    position: relative;
}
.cat-card-product-price .price-original {
    text-decoration: line-through;
    color: var(--silver-dark);
    font-size: 0.85em;
    margin-right: 0.3rem;
}
.cat-card-product-price .price-sale {
    color: #e74c3c;
    font-weight: 600;
}
