/* ── Shared card utilities ─────────────────────────────────────── */
.pc-oos-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,73,81,.9);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    white-space: nowrap;
    pointer-events: none;
}
.pc-price.has-sale { text-decoration: line-through; opacity: .6; }
.pc-sale { color: var(--primary-color, #e74c3c); font-weight: 700; }

/* ── Compact variant ───────────────────────────────────────────── */
.product-card--compact {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color, #e5e7eb);
    background: var(--surface, #fff);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
    position: relative;
    min-height: 110px;
}
.product-card--compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.1);
}
.pc-compact__img {
    width: 110px;
    flex-shrink: 0;
    overflow: hidden;
}
.pc-compact__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.product-card--compact:hover .pc-compact__img img { transform: scale(1.07); }
.pc-compact__body {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.pc-compact__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-1, #111827);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-compact__cat {
    font-size: 11px;
    color: var(--text-3, #9ca3af);
}
.pc-compact__price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1, #111827);
    margin-top: 2px;
}
.pc-compact__btn {
    margin-top: 8px;
    padding: 6px 14px !important;
    font-size: 12px !important;
    align-self: flex-start;
}

/* ── Minimal variant ───────────────────────────────────────────── */
.product-card--minimal {
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    position: relative;
    border: none;
    box-shadow: none;
}
.product-card--minimal:hover .pc-minimal__img img { transform: scale(1.06); }
.pc-minimal__img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: var(--surface, #f3f4f6);
}
.pc-minimal__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.pc-minimal__body {
    padding: 10px 4px 4px;
}
.pc-minimal__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1, #111827);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}
.pc-minimal__price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color, #3498db);
    margin-bottom: 8px;
}
.pc-minimal__btn {
    padding: 6px 14px !important;
    font-size: 12px !important;
    width: 100%;
    text-align: center;
}

/* ── Badge variant ─────────────────────────────────────────────── */
.product-card--badge {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: none;
    background: var(--surface, #fff);
    cursor: pointer;
}
.pc-badge__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}
.pc-badge__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.product-card--badge:hover .pc-badge__img img {
    transform: scale(1.08);
}
.pc-badge__price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color, #3498db);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 3;
    white-space: nowrap;
}
.pc-badge__oos {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 73, 81, .9);
    color: #fff;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 3;
    white-space: nowrap;
}
.pc-badge__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
    padding: 40px 14px 14px;
    transform: translateY(60px);
    transition: transform 0.3s ease;
    color: #fff;
    z-index: 2;
}
.product-card--badge:hover .pc-badge__overlay {
    transform: translateY(0);
}
.pc-badge__name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-badge__btn {
    padding: 6px 14px !important;
    font-size: 12px !important;
    width: 100%;
    text-align: center;
}

/* ── List variant ──────────────────────────────────────────────── */
.product-card--list {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100px;
    border-radius: 14px;
    border: 1px solid var(--border-color, #e5e7eb);
    background: var(--surface, #fff);
    overflow: hidden;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.product-card--list:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .09);
}
.pc-list__img {
    width: 100px;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}
.pc-list__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.product-card--list:hover .pc-list__img img {
    transform: scale(1.07);
}
.pc-list__body {
    flex: 1;
    padding: 10px 12px;
    min-width: 0;
    overflow: hidden;
}
.pc-list__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1, #111827);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 3px;
}
.pc-list__cat {
    font-size: 11px;
    color: var(--text-3, #9ca3af);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pc-list__price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1, #111827);
}
.pc-list__action {
    flex-shrink: 0;
    padding: 0 10px;
}
.pc-list__btn {
    padding: 6px 10px !important;
    font-size: 11px !important;
    white-space: nowrap;
}

/* ── Showcase variant ──────────────────────────────────────────── */
.product-card--showcase {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color, #e5e7eb);
    background: var(--surface, #fff);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}
.product-card--showcase:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}
.pc-showcase__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: var(--surface, #f3f4f6);
}
.pc-showcase__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.product-card--showcase:hover .pc-showcase__img img {
    transform: scale(1.06);
}
.pc-showcase__body {
    text-align: center;
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pc-showcase__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1, #111827);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-showcase__cat {
    font-size: 11px;
    color: var(--text-3, #9ca3af);
    margin-bottom: 8px;
}
.pc-showcase__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color, #3498db);
    margin-bottom: 12px;
    flex: 1;
    align-items: flex-end;
}
.pc-showcase__price .pc-price.has-sale {
    font-size: 14px;
}
.pc-showcase__btn {
    width: calc(100% + 32px);
    margin: 0 -16px -16px;
    border-radius: 0 0 12px 12px !important;
    padding: 12px !important;
    font-size: 13px !important;
    text-align: center;
    flex-shrink: 0;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .pc-compact__img { width: 85px; }
    .pc-compact__body { padding: 10px; }
    .pc-list__img { width: 80px; }
    .pc-list__action { padding: 0 6px; }
    .pc-list__btn { font-size: 10px !important; padding: 5px 7px !important; }
}

/* =========================================================================
   WOODMART POLISH LAYER for product cards
   Premium hover effects, refined typography, quick-action overlays.
   ========================================================================= */

/* ── Universal card surface refinement ── */
.product-card,
.product-card--compact,
.product-card--minimal,
.product-card--badge,
.product-card--list,
.product-card--showcase {
    background: var(--surface, #fff);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    transition: transform 0.32s cubic-bezier(0.22,0.61,0.36,1),
                box-shadow 0.32s cubic-bezier(0.22,0.61,0.36,1),
                border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.product-card:hover,
.product-card--compact:hover,
.product-card--minimal:hover,
.product-card--badge:hover,
.product-card--list:hover,
.product-card--showcase:hover {
    border-color: rgba(0,0,0,0.12);
    box-shadow: 0 14px 36px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
}

/* ── Image zoom on hover (all variants) ── */
.product-card img,
.product-card .product-image img,
.product-card--minimal img,
.product-card--badge img,
.product-card--showcase img {
    transition: transform 0.6s cubic-bezier(0.22,0.61,0.36,1);
}
.product-card:hover img,
.product-card--minimal:hover img,
.product-card--badge:hover img,
.product-card--showcase:hover img {
    transform: scale(1.08);
}

/* ── Sale / OOS badge styling ── */
.pc-oos-badge {
    background: #fff !important;
    color: #ef4444 !important;
    border: 1px solid #ef4444;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 12px !important;
    border-radius: 100px !important;
    top: 12px !important;
    left: 12px !important;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(239,68,68,0.18);
}
.pc-sale {
    color: var(--primary-color, #e74c3c) !important;
}

/* ── Default card typography refinements ── */
.product-card .title,
.product-card h4.title {
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: -0.008em;
    line-height: 1.32;
    color: var(--text, #1a1a1a);
    margin: 6px 0 4px;
    transition: color 0.18s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card:hover .title {
    color: var(--primary-color, #111);
}
.product-card .qty-item {
    font-size: 11px;
    font-weight: 500;
    color: rgba(0,0,0,0.45);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.product-card .price-spin {
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.012em;
}

/* ── Quick-view (magnifying glass) — refined fade-in ── */
.product_details_icon,
.product-details_icon {
    position: absolute !important;
    z-index: 4;
    top: 12px;
    inset-inline-end: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.04);
}
.product_item:hover .product_details_icon,
.product-card:hover .product-details_icon,
.product-card:hover .product_details_icon {
    opacity: 1;
    transform: translateY(0);
    visibility: visible !important;
}
.product_details_icon:hover,
.product-details_icon:hover {
    background: var(--primary-color, #111);
}
.product_details_icon:hover .glass,
.product-details_icon:hover .glass {
    filter: invert(1) brightness(2);
}

/* ── Add-to-cart button: WoodMart slide-up reveal ── */
.product-card .btn-addcart,
.product-card .btn.add_to_cart {
    background: var(--primary-color, #111) !important;
    border-radius: 100px !important;
    padding: 11px 20px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: filter 0.18s, transform 0.18s, box-shadow 0.18s !important;
    border: none !important;
}
.product-card .btn-addcart:hover,
.product-card .btn.add_to_cart:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18) !important;
}

/* ── Showcase variant: premium gradient border on hover ── */
.product-card--showcase {
    position: relative;
}
.product-card--showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary-color, #1abc9c), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2;
}
.product-card--showcase:hover::before { opacity: 1; }

/* ── Badge variant: stronger badge ── */
.product-card--badge .pc-oos-badge {
    background: var(--primary-color, #e74c3c) !important;
    color: #fff !important;
    border-color: transparent;
}

/* ── Minimal variant: ultra-clean, just the essentials ── */
.product-card--minimal {
    border: none;
    border-radius: 0;
    background: transparent;
}
.product-card--minimal:hover {
    border: none;
    box-shadow: none;
    transform: translateY(-2px);
}

/* ── Compact / list variants: refined separation ── */
.product-card--compact,
.product-card--list {
    border-radius: 12px;
}

/* ── Out-of-stock visual treatment ── */
.product-card.is-oos img,
.product_item:has(.pc-oos-badge) .product-image img {
    filter: grayscale(0.35);
}

/* =========================================================================
   WOODMART / XTEMOS-INSPIRED CARD VARIANTS
   Each variant gets a distinct visual identity drawn from the XTemos
   WoodMart demo store (woodmart.xtemos.com). Hover micro-interactions are
   the signature: image zoom, slide-up CTA, fade-in details.
   ========================================================================= */

/* ════════════ DEFAULT — clean WoodMart "Standard" card ════════════
   White card · image-top · hover lifts the card and slides the
   add-to-cart button up from the bottom · quick-view fades in. */
.product-card:not(.product-card--compact):not(.product-card--minimal):not(.product-card--badge):not(.product-card--list):not(.product-card--showcase) {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.32s cubic-bezier(0.22,0.61,0.36,1),
                box-shadow 0.32s cubic-bezier(0.22,0.61,0.36,1),
                border-color 0.2s;
}
.product-card:not(.product-card--compact):not(.product-card--minimal):not(.product-card--badge):not(.product-card--list):not(.product-card--showcase):hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.12);
    border-color: transparent;
}
.product-card:not(.product-card--compact):not(.product-card--minimal):not(.product-card--badge):not(.product-card--list):not(.product-card--showcase) .product-image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}
.product-card:not(.product-card--compact):not(.product-card--minimal):not(.product-card--badge):not(.product-card--list):not(.product-card--showcase) .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.product-card:not(.product-card--compact):not(.product-card--minimal):not(.product-card--badge):not(.product-card--list):not(.product-card--showcase):hover .product-image img {
    transform: scale(1.08);
}
.product-card:not(.product-card--compact):not(.product-card--minimal):not(.product-card--badge):not(.product-card--list):not(.product-card--showcase) .product-detail {
    padding: 16px 16px 18px;
    background: #fff;
    position: relative;
}
.product-card:not(.product-card--compact):not(.product-card--minimal):not(.product-card--badge):not(.product-card--list):not(.product-card--showcase) .btn-addcart {
    transform: translateY(8px);
    opacity: 0.85;
    transition: transform 0.32s ease, opacity 0.32s ease, box-shadow 0.32s ease;
}
.product-card:not(.product-card--compact):not(.product-card--minimal):not(.product-card--badge):not(.product-card--list):not(.product-card--showcase):hover .btn-addcart {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* ════════════ COMPACT — WoodMart "Quick" horizontal card ════════════ */
.product-card--compact {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    background: #fff;
    overflow: hidden;
}
.product-card--compact:hover {
    border-color: var(--primary-color, #111);
    box-shadow: 0 8px 22px rgba(0,0,0,0.07);
}
.pc-compact__img {
    background: #f3f4f6;
}
.pc-compact__name {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--text, #1a1a1a);
    line-height: 1.3;
}
.pc-compact__cat {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0,0,0,0.45);
    font-weight: 600;
}

/* ════════════ MINIMAL — Ultra-clean image-first card ════════════
   Just an image with the title appearing on hover from the bottom edge.
   Nothing visible until you interact. WoodMart's "Mask Hover" feel. */
.product-card--minimal {
    background: transparent;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.pc-minimal__img {
    aspect-ratio: 1;
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.pc-minimal__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.product-card--minimal:hover .pc-minimal__img img {
    transform: scale(1.08);
}
.pc-minimal__body {
    text-align: center;
    padding: 12px 8px 4px;
}
.pc-minimal__name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text, #1a1a1a);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
}
.pc-minimal__price {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-color, #111);
}
.pc-minimal__btn {
    margin-top: 8px;
    width: 100%;
    border-radius: 100px !important;
    padding: 9px 14px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: transparent !important;
    color: var(--primary-color, #111) !important;
    border: 1.5px solid currentColor !important;
}
.product-card--minimal:hover .pc-minimal__btn {
    background: var(--primary-color, #111) !important;
    color: #fff !important;
}

/* ════════════ BADGE — Image-only card with corner ribbon + hover overlay ════════════
   WoodMart "Boxed" badge variant: full-bleed image, prominent diagonal
   ribbon, full overlay on hover with title + CTA. */
.product-card--badge {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f4f6;
    aspect-ratio: 4/5;
}
.pc-badge__img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.pc-badge__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.product-card--badge:hover .pc-badge__img img { transform: scale(1.08); }

/* Price corner ribbon */
.pc-badge__price {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    background: var(--primary-color, #111);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 2;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.pc-badge__oos {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: #fff;
    color: #ef4444;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1.5px solid #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

/* Hover overlay with title + button */
.pc-badge__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.product-card--badge:hover .pc-badge__overlay { opacity: 1; }
.pc-badge__name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    transform: translateY(10px);
    transition: transform 0.32s ease 0.05s;
}
.product-card--badge:hover .pc-badge__name { transform: translateY(0); }
.pc-badge__btn {
    background: #fff !important;
    color: #111 !important;
    border-radius: 100px !important;
    padding: 11px 18px !important;
    font-weight: 700 !important;
    font-size: 11.5px !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none !important;
    transform: translateY(10px);
    transition: transform 0.32s ease 0.1s, background 0.18s, color 0.18s;
}
.product-card--badge:hover .pc-badge__btn { transform: translateY(0); }
.pc-badge__btn:hover {
    background: var(--primary-color, #111) !important;
    color: #fff !important;
}

/* ════════════ LIST — Detailed full-width row ════════════
   WoodMart "List view": large image left, generous info right,
   no hover state needed (everything is visible). */
.product-card--list {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    background: #fff;
    align-items: stretch;
    min-height: 160px;
}
.product-card--list:hover {
    border-color: rgba(0,0,0,0.18);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.pc-list__img {
    flex: 0 0 150px;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
}
.pc-list__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22,0.61,0.36,1);
}
.product-card--list:hover .pc-list__img img { transform: scale(1.06); }
.pc-list__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}
.pc-list__name {
    font-weight: 700;
    font-size: 18px;
    color: var(--text, #1a1a1a);
    letter-spacing: -0.012em;
    line-height: 1.25;
}
.pc-list__cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.5);
    font-weight: 600;
}
.pc-list__price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color, #111);
    letter-spacing: -0.015em;
}
.pc-list__action { flex-shrink: 0; align-self: center; }
.pc-list__btn {
    background: var(--primary-color, #111) !important;
    color: #fff !important;
    border-radius: 100px !important;
    padding: 13px 28px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none !important;
    transition: filter 0.15s, transform 0.15s, box-shadow 0.15s !important;
}
.pc-list__btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15) !important;
}
@media (max-width: 575px) {
    .product-card--list { flex-direction: column; }
    .pc-list__img { flex-basis: 180px; width: 100%; }
    .pc-list__action { align-self: stretch; }
    .pc-list__btn { width: 100%; }
}

/* ════════════ SHOWCASE — Hero premium card with text overlay ════════════
   WoodMart "Mask" + hero: full-bleed image, dark gradient mask, name + price
   permanently visible on the image, CTA at the bottom. Most prominent of all. */
.product-card--showcase {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3/4;
    background: #1a1a1a;
    border: none;
    transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1),
                box-shadow 0.4s cubic-bezier(0.22,0.61,0.36,1);
}
.product-card--showcase:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.pc-showcase__img,
.product-card--showcase .product-image,
.product-card--showcase > a > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.pc-showcase__img img,
.product-card--showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22,0.61,0.36,1);
}
.product-card--showcase:hover img { transform: scale(1.08); }
.product-card--showcase::after {
    /* Always-present gradient overlay so the text stays readable */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
    z-index: 1;
}
.pc-showcase__body,
.product-card--showcase .product-detail {
    position: absolute;
    inset-inline-start: 22px;
    inset-inline-end: 22px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}
.pc-showcase__name,
.product-card--showcase .title {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 19px !important;
    letter-spacing: -0.018em;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.pc-showcase__price,
.product-card--showcase .price-spin {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    letter-spacing: -0.012em;
    margin-bottom: 14px;
    display: block;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.pc-showcase__btn {
    width: 100%;
    background: #fff !important;
    color: #111 !important;
    border-radius: 100px !important;
    padding: 12px 18px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none !important;
    transition: background 0.15s, color 0.15s, transform 0.15s !important;
    margin: 0 !important;
}
.pc-showcase__btn:hover {
    background: var(--primary-color, #111) !important;
    color: #fff !important;
    transform: scale(1.02);
}
