/* --- GLOBAL STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800;900&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #cc0000;
    /* Red for sales/alerts if needed */
    --border-color: #e5e5e5;
    --font-main: 'Montserrat', sans-serif;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- HEADER --- */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    color: #000;
    width: 100%;
}

/* Scrolled State */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    /* White with slight transparency */
    backdrop-filter: blur(5px);
    color: #000;
    border-bottom: 1px solid #e5e5e5;
    /* Keep border or use shadow */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: inherit;
}

/* Navigation / Search Area */
.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: inherit;
    position: relative;
    padding: 5px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

/* Search Bar in Header */
.header-search {
    position: relative;
    width: 300px;
    display: none;
    /* Hidden on mobile by default */
}

@media(min-width: 1024px) {
    .header-search {
        display: block;
    }
}

.search-input-header {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e5e5e5;
    background: #f5f5f5;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.search-input-header:focus {
    border-color: #000;
    background: #fff;
}

.search-icon-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
}

/* Right Icons */
.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    color: inherit;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Large hero */
    background-color: #f0f0f0;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 600px;
    color: #fff;
    /* Assuming dark background or overlay */
}

/* If using image background */
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darken bg for text readability */
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    background: #000;
    color: #fff;
}

/* --- SUGGESTIONS BOX (SEARCH) --- */
#suggestions-box {
    position: absolute;
    top: 100%;
    /* Below input */
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

.suggestion-item {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:hover {
    background: #f9f9f9;
}

.suggestion-thumb {
    width: 40px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    background: #eee;
}

.suggestion-info {
    display: flex;
    flex-direction: column;
}

.suggestion-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.suggestion-price {
    font-size: 0.75rem;
    color: #666;
}



/* --- SECTIONS (SCROLL FIX) --- */
.collection-header {
    text-align: center;
    padding: 60px 0 30px;
    scroll-margin-top: 100px;
    /* Fix for sticky header covering title */
}

/* Also apply to IDs if used directly on section divs */
#bluzy,
#koszulki,
#spodnie {
    scroll-margin-top: 100px;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* --- PRODUCTS GRID --- */
.products-wrapper {
    padding: 0 20px 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.product-card {
    position: relative;
    cursor: pointer;
}

.product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f4f4f4;
    margin-bottom: 12px;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s, transform 0.5s;
}

.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
}

.product-card:hover .img-main {
    opacity: 0;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.03);
    /* Subtle zoom */
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    text-transform: uppercase;
    z-index: 5;
    border: 1px solid #000;
}

.badge.piping {
    background: #000;
    color: #fff;
}

.product-details {
    padding: 5px 0;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

/* --- MOBILE MENU --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.close-menu-btn {
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

/* Burger Icon */
.burger-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 15px;
}

/* --- PIPING MODAL --- */
.piping-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.piping-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.piping-modal-content {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    border-radius: 4px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.piping-modal-overlay.active .piping-modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: var(--accent-color);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
}

/* Modal Grid - Reuse or modify */
.modal-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .piping-modal-content {
        padding: 20px;
        width: 95%;
    }

    .modal-products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* --- FOOTER --- */
.site-footer {
    background: #111;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #aaa;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
    }

    .logo {
        padding-left: 0;
        font-size: 0.8rem;
        /* Smaller logo text on mobile */
    }

    .burger-btn {
        display: block;
    }

    .nav-center {
        display: none;
    }

    /* Hide desktop nav */

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        /* Full width cards on small mobile */
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Adjust header height or padding if needed */
    .header-actions {
        gap: 15px;
    }
}

/* --- MOVED FROM INDEX.PHP --- */
.snipcart-modal__container {
    z-index: 9999 !important;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 95vh;
    /* Increased height for better fade space */
    background-color: #f0f0f0;
    overflow: hidden;
    /* Fade out effect at the bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    margin-bottom: 50px;
    /* Space for the fade to be appreciated */
}

.scroll-arrow {
    position: absolute;
    bottom: 60px;
    /* Higher up due to fade */
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    z-index: 20;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}

.scroll-arrow:hover {
    opacity: 1;
    color: #cc0000;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    /* Flex center content */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mniejszy overlay (filtr) */
    filter: brightness(0.7);
    z-index: -1;
}

.hero-bg-contain {
    object-fit: contain !important;
    background-color: #000;
    /* Tło dla pustych przestrzeni */
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 20px;
    /* Reset external layout styles */
    top: auto;
    left: auto;
    transform: none;
    max-width: 800px;
    margin: 0 auto;
}

/* --- SPLIT HERO LAYOUT --- */
.hero-slide.split-layout {
    display: flex;
    background: #fff;
    /* Fallback */
}

.split-left {
    width: 50%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    position: relative;
}

.split-right {
    width: 50%;
    height: 100%;
    background: #000;
    /* Ciemny, ale nie #000 żeby odciąć bluzę jeśli trzeba */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.split-right img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.split-content {
    text-align: left;
    max-width: 500px;
    padding: 40px;
}

.hero-badge {
    display: inline-block;
    background: #e0e0e0;
    color: #555;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9em;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.split-title {
    font-size: 5em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: capitalize;
    /* "Balaclava Hoodie" */
}

.split-subtitle {
    font-size: 1.4em;
    color: #555;
    font-weight: 500;
}

/* Mobile adjust */
@media (max-width: 768px) {
    .hero-slide.split-layout {
        flex-direction: column-reverse;
        /* Obrazek na górze? Albo na dole. Standard: Obraz góra, tekst dół lub odwrotnie */
    }

    .split-left,
    .split-right {
        width: 100%;
        height: 50%;
    }

    .split-title {
        font-size: 3em;
    }

    .split-content {
        text-align: center;
        padding: 20px;
    }

    .split-right img {
        max-width: 60%;
        max-height: 90%;
    }
}

/* STRZAŁKI / KROPKI */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 15px;
    cursor: pointer;
    z-index: 20;
    font-size: 1.5rem;
    border-radius: 5px;
    transition: 0.3s;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* --- HERO SLIDE 2 DESIGN (CSS ONLY) --- */
.hero-design-2 {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Grid pattern overlay */
.hero-design-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hd-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    transform: skew(-2deg);
}

.hd-label {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 0.9em;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hd-title {
    font-size: 6em;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-style: italic;
}

.hd-title span {
    display: block;
    color: #fff;
    -webkit-text-stroke: 0;
}

.hd-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 50px;
    background: #fff;
    color: #000;
    font-weight: 900;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
    border: 2px solid #fff;
}

.hd-btn:hover {
    background: transparent;
    color: #fff;
}

.hd-floating-img {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(10deg);
    height: 90%;
    max-width: 50%;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    opacity: 0.9;
    transition: 0.5s;
}

.hero-design-2:hover .hd-floating-img {
    transform: translateY(-50%) rotate(0deg) scale(1.05);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
    opacity: 1;
}

.hd-floating-img-left {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%) rotate(-10deg);
    height: 90%;
    max-width: 50%;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    opacity: 0.9;
    transition: 0.5s;
}

.hero-design-2:hover .hd-floating-img-left {
    transform: translateY(-50%) rotate(0deg) scale(1.05);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
    opacity: 1;
}

@media (max-width: 768px) {
    .hd-title {
        font-size: 3em;
    }

    .hd-content {
        transform: none;
        width: 90%;
    }

    .hd-floating-img {
        right: 50%;
        transform: translate(50%, -50%);
        height: 60%;
        opacity: 0.4;
        max-width: 80%;
    }

    .hd-floating-img-left {
        left: 50%;
        transform: translate(-50%, -50%);
        /* Center it behind as well */
        height: 60%;
        opacity: 0.3;
        /* Slightly less opacity to blend */
        max-width: 80%;
    }

    .hero-design-2:hover .hd-floating-img,
    .hero-design-2:hover .hd-floating-img-left {
        transform: translate(50%, -50%);
        /* Keep mobile transform static-ish or centered */
    }

    /* Override hover transform for mobile if needed to avoid weird shifts */
    .hero-design-2:hover .hd-floating-img-left {
        transform: translate(-50%, -50%);
    }

    .hd-cluster-main {
        right: 50%;
        transform: translate(50%, -50%);
        height: 50%;
        width: 60%;
        opacity: 0.5;
    }

    .hd-cluster-sec {
        right: 50%;
        transform: translate(10%, -40%) rotate(-10deg);
        height: 40%;
        width: 50%;
        opacity: 0.3;
    }
}

/* --- CLUSTER LAYOUT (SLIDE 1) --- */
.hd-cluster-main {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%) rotate(-5deg);
    height: 85%;
    width: auto;
    max-width: 45%;
    object-fit: contain;
    z-index: 4;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: 0.5s;
}

.hd-cluster-sec {
    position: absolute;
    top: 55%;
    right: 30%;
    transform: translateY(-50%) rotate(-15deg);
    height: 70%;
    width: auto;
    max-width: 40%;
    object-fit: contain;
    z-index: 3;
    filter: brightness(0.7) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: 0.5s;
}

.hero-design-2:hover .hd-cluster-main {
    transform: translateY(-50%) rotate(0deg) scale(1.05);
    z-index: 5;
}

.hero-design-2:hover .hd-cluster-sec {
    transform: translateY(-50%) rotate(-10deg) translateX(-20px);
    filter: brightness(0.9);
}

/* --- Unavailable Product Style --- */
/* --- Unavailable Product Style --- */
.product-card.unavailable-product {
    /* Filters removed from container to allow red warning text to stand out */
    user-select: none;
    cursor: default;
}

.product-card.unavailable-product .product-image-wrap,
.product-card.unavailable-product .product-title,
.product-card.unavailable-product .product-price,
.product-card.unavailable-product .badge {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

.product-card.unavailable-product:hover .product-image-wrap,
.product-card.unavailable-product:hover .product-title,
.product-card.unavailable-product:hover .product-price,
.product-card.unavailable-product:hover .badge {
    filter: grayscale(0%);
    opacity: 1;
}

.product-card.unavailable-product .badge {
    background: #999 !important;
    color: #ccc !important;
}