/*
Theme Name: Cleaners Mexico
Theme URI: https://cleanersmexico.com
Author: Cleaners Mexico
Author URI: https://cleanersmexico.com
Description: Un sitio extremadamente limpio que ocasionalmente se rompe. Fondo blanco clínico, espacio amplio, objeto botella protagonista, desfragmentación en scroll y fichas de producto minimalistas.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleaners-mexico
Tags: e-commerce, woocommerce, minimalist, brutalist, glitch, clinical, silver
*/

/* ==========================================================================
   CSS Variables & Clinical Palette
   ========================================================================== */

:root {
    /* Clinical white & cold technical palette */
    --cm-white: #FFFFFF;
    --cm-off-white: #FBFBFC;
    --cm-clinical-tint: #F4F6F8;
    --cm-silver-light: #E8ECEF;
    --cm-silver: #D0D5DD;
    --cm-silver-dark: #8C929D;
    --cm-chrome: #B0B7C3;
    --cm-text-dark: #0D0E11;
    --cm-text-body: #3E434D;
    --cm-text-muted: #7D8592;
    --cm-border: #E4E7EC;
    --cm-border-focus: #111317;

    /* Aberration RGB Glitch Colors */
    --cm-glitch-cyan: #00E5FF;
    --cm-glitch-magenta: #FF0055;
    --cm-glitch-yellow: #FFEE00;

    /* Typography */
    --cm-font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --cm-font-mono: 'JetBrains Mono', 'Courier New', Courier, monospace;

    /* Layout */
    --cm-max-width: 1240px;
    --cm-telemetry-height: 28px;
    --cm-header-height: 64px;

    --cm-trans-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    --cm-trans-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--cm-white);
    color: var(--cm-text-dark);
}

body {
    font-family: var(--cm-font-heading);
    background-color: var(--cm-white);
    color: var(--cm-text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* System Break Event (Occasional glitch on the entire document) */
body.system-break {
    filter: invert(0.06) contrast(1.25) saturate(1.4);
    transform: translate3d(2px, 0, 0);
}
body.system-break::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: rgba(255, 0, 85, 0.04);
    mix-blend-mode: color-burn;
    z-index: 99998;
}
body.system-break::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 229, 255, 0.12) 0px,
        rgba(255, 0, 85, 0.12) 1px,
        transparent 2px,
        transparent 3px
    );
    z-index: 99999;
    animation: breakFlicker 0.08s steps(2) infinite;
}

@keyframes breakFlicker {
    0% { transform: translateY(0); }
    50% { transform: translateY(3px); }
    100% { transform: translateY(-2px); }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--cm-trans-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cm-container {
    max-width: var(--cm-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Top Telemetry Strip
   ========================================================================== */

.top-telemetry-strip {
    height: var(--cm-telemetry-height);
    background: var(--cm-off-white);
    border-bottom: 1px solid var(--cm-border);
    font-family: var(--cm-font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--cm-text-muted);
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1002;
}

.telemetry-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 1.5rem;
    width: 100%;
}

.telemetry-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.telemetry-item.highlight {
    color: var(--cm-text-dark);
    font-weight: 700;
}

.dot-pulse {
    width: 6px;
    height: 6px;
    background: #00E676;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #00E676;
    animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.site-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cm-border);
    position: sticky;
    top: var(--cm-telemetry-height);
    z-index: 1001;
    transition: var(--cm-trans-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-main-row {
    border-bottom: 1px solid rgba(228, 231, 236, 0.6);
    padding: 0.65rem 0;
}

.header-inner {
    max-width: var(--cm-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Brand Mark: Bottle + Typography */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-logo-bottle {
    transition: transform 0.2s ease;
}

.site-logo:hover .header-logo-bottle {
    transform: scale(1.05);
}

.site-logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-logo-glitch {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--cm-text-dark);
    font-family: var(--cm-font-heading);
    position: relative;
    display: inline-block;
    text-shadow: -1.5px 0 var(--cm-glitch-cyan), 1.5px 0 var(--cm-glitch-magenta);
}

.site-logo-sub {
    font-family: var(--cm-font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    color: var(--cm-text-dark);
    text-align: center;
    margin-top: 1px;
}

/* Search Bar (Centered) */
.header-search-wrap {
    flex: 1;
    max-width: 520px;
    margin: 0 1rem;
}

.header-search-form {
    display: flex;
    align-items: center;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #D8DCE3;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.header-search-form:focus-within {
    border-color: var(--cm-glitch-cyan);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.18);
}

.search-icon-btn {
    background: none;
    border: none;
    color: #8C929D;
    cursor: pointer;
    padding: 0.25rem 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--cm-font-heading);
    font-size: 0.88rem;
    color: var(--cm-text-dark);
    padding: 0.25rem 0.5rem;
}

.header-search-input::placeholder {
    color: #A0A7B5;
}

/* Right Header Utilities */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.header-delivery-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--cm-font-heading);
    color: var(--cm-text-dark);
}

.header-delivery-badge .delivery-icon {
    color: #8C929D;
}

.delivery-badge-city,
.delivery-text .delivery-city {
    font-size: 0.82rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
}

.delivery-badge-sub,
.delivery-text .delivery-note {
    font-size: 0.68rem;
    color: #7D8592;
    display: block;
    line-height: 1.1;
}

.header-action-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cm-text-dark);
    position: relative;
    padding: 0.35rem;
    transition: color 0.15s, transform 0.15s;
    text-decoration: none;
}

.header-action-icon-btn:hover {
    color: var(--cm-glitch-magenta);
    transform: translateY(-1px);
}

.cart-badge-count {
    position: absolute;
    top: -3px;
    right: -5px;
    background: #0D0E11;
    color: #FFFFFF;
    font-family: var(--cm-font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #FFFFFF;
}

/* Sub Navigation Bar (Row 2) */
.sub-navigation-bar {
    background: #FFFFFF;
}

.sub-nav-inner {
    max-width: var(--cm-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0.6rem 0;
}

.sub-nav-menu .nav-item {
    position: relative;
}

.sub-nav-menu .nav-item a {
    font-family: var(--cm-font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #1A1C20;
    text-decoration: none;
    padding: 0.25rem 0.1rem;
    display: block;
    transition: color 0.15s;
}

.sub-nav-menu .nav-item a:hover {
    color: var(--cm-glitch-magenta);
}

/* Active Pill Highlight under active nav item (e.g. PRODUCTOS) */
.sub-nav-menu .nav-item.active a,
.sub-nav-menu .nav-item.current-menu-item a {
    color: #0D0E11;
    font-weight: 700;
}

.sub-nav-menu .nav-item.active::after,
.sub-nav-menu .nav-item.current-menu-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 32px;
    height: 3px;
    background: #00E5FF;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cm-text-dark);
    margin: 4px 0;
}

/* ==========================================================================
   Hero Section: Bottle Object & Defragmentation Target
   ========================================================================== */

.hero-section {
    min-height: calc(100vh - var(--cm-header-height) - var(--cm-telemetry-height));
    background: var(--cm-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem 5rem;
    text-align: center;
    overflow: hidden;
}

/* Extremely subtle technical grid overlay */
.clinical-bg-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* Technical Corner Markers */
.telemetry-corner {
    position: absolute;
    font-family: var(--cm-font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--cm-silver-dark);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    pointer-events: none;
    z-index: 1;
}

.telemetry-corner.top-left { top: 2rem; left: 2.5rem; text-align: left; }
.telemetry-corner.top-right { top: 2rem; right: 2.5rem; text-align: right; }
.telemetry-corner.bottom-left { bottom: 2rem; left: 2.5rem; text-align: left; }
.telemetry-corner.bottom-right { bottom: 2rem; right: 2.5rem; text-align: right; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* System Initializing Tag */
.system-initializing-tag {
    font-family: var(--cm-font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    color: var(--cm-text-muted);
    margin-bottom: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--cm-off-white);
    border: 1px solid var(--cm-border);
    padding: 0.35rem 1rem;
}

.pulse-indicator {
    width: 7px;
    height: 7px;
    background: var(--cm-text-dark);
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

/* Central Bottle Object */
.hero-bottle-container {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-glitch-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    transition: transform var(--cm-trans-base);
}

.hero-bottle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.06));
    user-select: none;
}

/* Bottle Scanline */
.bottle-scanline {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.7), transparent);
    animation: scanVertical 4s infinite linear;
    pointer-events: none;
}

@keyframes scanVertical {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Bottle corruption glitch during break */
.bottle-glitch-wrapper.corrupt {
    animation: bottleCorrupt 0.2s steps(2) infinite;
}
@keyframes bottleCorrupt {
    0% { transform: translate(-3px, 1px) skewX(2deg); filter: invert(0.1) drop-shadow(3px 0 var(--cm-glitch-cyan)); }
    50% { transform: translate(3px, -2px) skewX(-2deg); filter: invert(0) drop-shadow(-3px 0 var(--cm-glitch-magenta)); }
    100% { transform: translate(0, 0); }
}

/* ==========================================================================
   HERO TITLE (CLEANERS / MEXICO - GLITCH EFFECT)
   ========================================================================== */
.hero-title-container {
    margin: 0 auto 2.5rem;
    text-align: center;
    user-select: none;
}

.cm-hero-title {
    font-size: clamp(3.8rem, 11vw, 7.8rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--cm-text-dark);
}

/* Diferenciar la palabra MEXICO para mantener el estilo original */
.hero-title-container .cm-hero-title:last-child {
    font-size: clamp(1.4rem, 3.5vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.55em;
    color: var(--cm-silver-dark);
    margin-top: 0.5rem;
}
/* ==========================================================================
   Hero Manifesto & Buttons
   ========================================================================== */

.hero-manifesto {
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.manifesto-text {
    font-family: var(--cm-font-heading);
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--cm-text-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    cursor: default;
}

.manifesto-text:hover {
    color: var(--cm-glitch-magenta);
    text-shadow: 2px 0 var(--cm-glitch-cyan);
}

.clinical-rule {
    width: 60px;
    height: 1px;
    background: var(--cm-silver);
    margin: 1.25rem auto;
}

.manifesto-sub {
    font-family: var(--cm-font-heading);
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--cm-text-muted);
}

/* Clinical Brutal Buttons */
.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cm-brutal-btn {
    font-family: var(--cm-font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    padding: 0.95rem 2rem;
    text-transform: uppercase;
    border: 1px solid var(--cm-text-dark);
    background: transparent;
    color: var(--cm-text-dark);
    cursor: pointer;
    transition: var(--cm-trans-fast);
    display: inline-block;
}

.cm-brutal-btn.primary {
    background: var(--cm-text-dark);
    color: var(--cm-white);
}

.cm-brutal-btn.primary:hover {
    background: var(--cm-white);
    color: var(--cm-text-dark);
    box-shadow: 4px 4px 0px var(--cm-glitch-cyan);
}

.cm-brutal-btn.secondary {
    background: var(--cm-white);
    border-color: var(--cm-border);
    color: var(--cm-text-body);
}

.cm-brutal-btn.secondary:hover {
    border-color: var(--cm-text-dark);
    color: var(--cm-text-dark);
    box-shadow: -4px 4px 0px var(--cm-glitch-magenta);
}

.scroll-down-notice {
    margin-top: 3.5rem;
    font-family: var(--cm-font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--cm-silver-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.scroll-arrow {
    font-size: 0.9rem;
    animation: bounceDown 2s infinite ease-in-out;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ==========================================================================
   Clinical Deconstruction & Specs Strip
   ========================================================================== */

.clinical-strip-section {
    padding: 6rem 0;
    background: var(--cm-off-white);
    border-top: 1px solid var(--cm-border);
    border-bottom: 1px solid var(--cm-border);
}

.strip-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--cm-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--cm-text-muted);
    border-bottom: 1px solid var(--cm-border);
    padding-bottom: 0.75rem;
    margin-bottom: 3rem;
}

.clinical-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.clinical-col {
    background: var(--cm-white);
    border: 1px solid var(--cm-border);
    padding: 2.5rem 2rem;
    transition: var(--cm-trans-base);
}

.clinical-col:hover {
    border-color: var(--cm-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.col-num {
    font-family: var(--cm-font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--cm-silver-dark);
    margin-bottom: 1.5rem;
}

.clinical-col h3 {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--cm-text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.clinical-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--cm-text-muted);
    margin-bottom: 1.75rem;
}

.col-meta {
    font-family: var(--cm-font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--cm-text-dark);
    border-top: 1px dashed var(--cm-border);
    padding-top: 0.75rem;
}

/* ==========================================================================
   PRODUCTS SECTION: Minimalist Secret Cards & WooCommerce
   ========================================================================== */

.products-section {
    padding: 7rem 0;
    background: var(--cm-white);
}

.catalog-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--cm-text-dark);
    padding-bottom: 1.25rem;
    margin-bottom: 4rem;
}

.meta-tag {
    display: block;
    font-family: var(--cm-font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--cm-text-muted);
    margin-bottom: 0.4rem;
}

.catalog-title-area h2 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-telemetry {
    font-family: var(--cm-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--cm-text-muted);
    display: flex;
    gap: 1.5rem;
}

/* Mockup Secret Cards Grid (Clean & Secret) */
.secret-product-grid-mockup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.secret-card {
    border: 1px solid var(--cm-border);
    background: var(--cm-white);
    padding: 2rem 1.75rem;
    transition: var(--cm-trans-base);
    display: flex;
    flex-direction: column;
}

.secret-card:hover {
    border-color: var(--cm-text-dark);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.secret-card-meta {
    font-family: var(--cm-font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--cm-silver-dark);
    margin-bottom: 1.25rem;
}

.secret-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--cm-off-white);
    border: 1px solid var(--cm-clinical-tint);
    padding: 1rem;
}

.secret-card-img img {
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--cm-trans-base);
}

.secret-card:hover .secret-card-img img {
    transform: scale(1.04);
}

.secret-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.secret-brand {
    font-family: var(--cm-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--cm-silver-dark);
    margin-bottom: 0.2rem;
}

.secret-title {
    font-family: var(--cm-font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.secret-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--cm-text-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.secret-price {
    font-family: var(--cm-font-mono);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cm-text-dark);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.secret-add-btn {
    font-family: var(--cm-font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    padding: 0.85rem;
    background: transparent;
    border: 1px solid var(--cm-text-dark);
    color: var(--cm-text-dark);
    cursor: pointer;
    transition: var(--cm-trans-fast);
    width: 100%;
    text-transform: uppercase;
}

.secret-add-btn:hover {
    background: var(--cm-text-dark);
    color: var(--cm-white);
}

.catalog-footer-action {
    margin-top: 4.5rem;
    text-align: center;
}

/* ==========================================================================
   WooCommerce Native Overrides (Clinical & Brutalist Minimal)
   ========================================================================== */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 2rem 1.75rem !important;
    border: 1px solid var(--cm-border) !important;
    background: var(--cm-white) !important;
    display: flex !important;
    flex-direction: column !important;
    transition: var(--cm-trans-base) !important;
    text-align: left !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Glitch Error Frame Pseudo-elements */
.woocommerce ul.products li.product::before,
.woocommerce ul.products li.product::after {
    content: '' !important;
    position: absolute !important;
    top: -1px !important;
    left: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    border: 2px solid transparent !important;
    z-index: -1 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.woocommerce ul.products li.product::before {
    border-color: rgba(255, 0, 60, 0.8) !important;
    transform: translate(2px, 2px) !important;
}

.woocommerce ul.products li.product::after {
    border-color: rgba(0, 255, 255, 0.8) !important;
    transform: translate(-2px, -2px) !important;
}

.woocommerce ul.products li.product:hover {
    border-color: var(--cm-text-dark) !important;
    background: #fdfdfd !important;
}

.woocommerce ul.products li.product:hover::before {
    opacity: 1 !important;
    animation: frameGlitch1 0.3s linear infinite alternate !important;
}

.woocommerce ul.products li.product:hover::after {
    opacity: 1 !important;
    animation: frameGlitch2 0.4s linear infinite alternate-reverse !important;
}

@keyframes frameGlitch1 {
    0% { clip-path: polygon(0 0, 100% 0, 100% 5%, 0 5%); transform: translate(3px, -1px); }
    20% { clip-path: polygon(0 20%, 100% 20%, 100% 28%, 0 28%); transform: translate(-2px, 2px); }
    40% { clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%); transform: translate(2px, -2px); }
    60% { clip-path: polygon(0 65%, 100% 65%, 100% 75%, 0 75%); transform: translate(-3px, 1px); }
    80% { clip-path: polygon(0 85%, 100% 85%, 100% 90%, 0 90%); transform: translate(1px, 2px); }
    100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: translate(0, 0); }
}

@keyframes frameGlitch2 {
    0% { clip-path: polygon(0 10%, 100% 10%, 100% 18%, 0 18%); transform: translate(-3px, 2px); }
    20% { clip-path: polygon(0 35%, 100% 35%, 100% 42%, 0 42%); transform: translate(2px, -1px); }
    40% { clip-path: polygon(0 55%, 100% 55%, 100% 60%, 0 60%); transform: translate(-2px, -2px); }
    60% { clip-path: polygon(0 75%, 100% 75%, 100% 82%, 0 82%); transform: translate(3px, 1px); }
    80% { clip-path: polygon(0 92%, 100% 92%, 100% 100%, 0 100%); transform: translate(-1px, -2px); }
    100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: translate(0, 0); }
}

.woocommerce ul.products li.product a img {
    margin: 0 auto 1.5rem !important;
    background: var(--cm-off-white) !important;
    border: 1px solid var(--cm-clinical-tint) !important;
    padding: 1.5rem !important;
    height: 220px !important;
    object-fit: contain !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--cm-font-heading) !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    color: var(--cm-text-dark) !important;
    padding: 0 !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
}

.woocommerce ul.products li.product .price {
    font-family: var(--cm-font-mono) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--cm-text-dark) !important;
    margin-bottom: 1.25rem !important;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    font-family: var(--cm-font-mono) !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.16em !important;
    padding: 0.85rem 1.25rem !important;
    background: transparent !important;
    border: 1px solid var(--cm-text-dark) !important;
    border-radius: 0 !important;
    color: var(--cm-text-dark) !important;
    cursor: pointer !important;
    transition: var(--cm-trans-fast) !important;
    text-transform: uppercase !important;
    text-align: center !important;
    display: block !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--cm-text-dark) !important;
    color: var(--cm-white) !important;
}

/* Telemetry Bar inside Shop Page */
.system-telemetry-bar {
    display: flex;
    gap: 1rem;
    font-family: var(--cm-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    color: var(--cm-text-muted);
    border-bottom: 1px solid var(--cm-border);
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}
.telemetry-pill {
    background: var(--cm-off-white);
    border: 1px solid var(--cm-border);
    padding: 0.2rem 0.6rem;
}

/* ==========================================================================
   Occasional Glitch Terminal Disruption Strip
   ========================================================================== */

.system-disruption-strip {
    background: var(--cm-off-white);
    border-top: 1px solid var(--cm-border);
    padding: 1.25rem 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--cm-font-mono);
    font-size: 0.72rem;
    color: var(--cm-silver-dark);
    letter-spacing: 0.18em;
}

.terminal-text-wrap {
    display: inline-block;
    animation: scrollTicker 30s linear infinite;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--cm-white);
    border-top: 1px solid var(--cm-border);
}

.footer-telemetry-strip {
    background: var(--cm-off-white);
    border-bottom: 1px solid var(--cm-border);
    padding: 0.6rem 2rem;
    font-family: var(--cm-font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--cm-text-muted);
    overflow: hidden;
}

.footer-ticker-code {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.footer-inner {
    max-width: var(--cm-max-width);
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--cm-border);
}

.footer-logo-title {
    font-family: var(--cm-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
}

.footer-motto {
    font-family: var(--cm-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--cm-text-dark);
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--cm-text-muted);
}

.footer-column h4 {
    font-family: var(--cm-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--cm-text-dark);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    font-family: var(--cm-font-mono);
    font-size: 0.78rem;
    color: var(--cm-text-muted);
}

.footer-column ul li a:hover {
    color: var(--cm-text-dark);
}

.status-indicator-inline {
    font-family: var(--cm-font-mono);
    font-size: 0.72rem;
    color: var(--cm-silver-dark);
}

.warning-tag {
    font-family: var(--cm-font-mono);
    font-size: 0.65rem;
    color: var(--cm-glitch-magenta);
    border: 1px solid rgba(255, 0, 85, 0.3);
    padding: 0.2rem 0.4rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-family: var(--cm-font-mono);
    font-size: 0.72rem;
    color: var(--cm-text-muted);
}

.footer-diag {
    display: flex;
    gap: 1.5rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
    .clinical-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .secret-product-grid-mockup,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .telemetry-corner {
        display: none;
    }
}

@media (max-width: 680px) {
    .secret-product-grid-mockup,
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .main-navigation {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

/* ==========================================================================
   Shop Catalog Layout (Two-Column Cyberpunk / Glitch Grid Matching Mockup)
   ========================================================================== */

.shop-page-main {
    min-height: 80vh;
    background-color: #FAFAFB;
    padding: 2.5rem 0 5rem;
}

.cm-shop-layout-wrapper {
    width: 100%;
}

.cm-shop-layout-inner {
    max-width: var(--cm-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

/* --------------------------------------------------------------------------
   Sidebar Filters (Left Column)
   -------------------------------------------------------------------------- */
.cm-shop-sidebar {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group-title {
    font-family: var(--cm-font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0D0E11;
    margin-bottom: 0.85rem;
    position: relative;
    display: inline-block;
}

.filter-group-title .title-underline {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF 0%, #FF007F 70%, transparent 100%);
    margin-top: 5px;
    border-radius: 2px;
}

/* Category List */
.filter-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.filter-category-list .cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--cm-font-heading);
    font-size: 0.85rem;
    color: #4A505C;
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-category-list .cat-item:hover {
    color: #0D0E11;
    background: rgba(0, 0, 0, 0.03);
}

.filter-category-list .cat-item.active {
    font-weight: 600;
    color: #0D0E11;
}

.filter-category-list .cat-item .cat-count {
    font-family: var(--cm-font-mono);
    font-size: 0.78rem;
    color: #8C929D;
}

.filter-category-list .cat-item.active .cat-count {
    color: #FF007F;
    font-weight: 700;
}

/* Brand Checkboxes */
.filter-brand-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--cm-font-heading);
    font-size: 0.84rem;
    color: #4A505C;
    user-select: none;
    gap: 0.55rem;
}

.brand-checkbox-label input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 15px;
    height: 15px;
    border: 1.5px solid #BAC0CB;
    border-radius: 2px;
    background: #FFFFFF;
    position: relative;
    flex-shrink: 0;
    transition: all 0.15s;
}

.brand-checkbox-label input[type="checkbox"]:checked + .custom-checkbox {
    background: #0D0E11;
    border-color: #0D0E11;
}

.brand-checkbox-label input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 4px;
    width: 4px;
    height: 7px;
    border: solid #00E5FF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.brand-checkbox-label .brand-name {
    flex: 1;
}

.brand-checkbox-label .brand-count {
    font-family: var(--cm-font-mono);
    font-size: 0.75rem;
    color: #8C929D;
}

/* Price Range Slider */
.price-slider-container {
    padding-top: 0.5rem;
}

.price-track-wrapper {
    position: relative;
    margin-bottom: 0.8rem;
}

.price-track-wrapper input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #E2E6EC;
    outline: none;
    margin: 0;
    cursor: pointer;
}

.price-track-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00E5FF;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 5px rgba(0, 229, 255, 0.8), 0 2px 4px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.1s;
}

.price-track-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.price-range-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--cm-font-mono);
    font-size: 0.84rem;
    font-weight: 600;
    color: #1A1C20;
}

/* Trust Perks Box */
.trust-perks-box {
    background: #FFFFFF;
    border: 1px solid var(--cm-border);
    border-radius: 6px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.perk-icon {
    font-size: 1.15rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.perk-text strong {
    font-family: var(--cm-font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: #0D0E11;
}

.perk-text span {
    font-size: 0.72rem;
    color: #7D8592;
}

/* WhatsApp CTA Button */
.sidebar-cta-wrap {
    margin-top: 0.25rem;
}

.cm-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: #0D0E11;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    font-family: var(--cm-font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: 1px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 0 8px rgba(0, 229, 255, 0.15);
    transition: all 0.2s ease;
}

.cm-whatsapp-btn:hover {
    background: #000000;
    border-color: #00E5FF;
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.25);
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Catalog Main Area (Right Column)
   -------------------------------------------------------------------------- */
.cm-shop-catalog {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cm-border);
}

.toolbar-title {
    font-family: var(--cm-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0D0E11;
    margin: 0;
}

.toolbar-title .count-badge {
    color: #7D8592;
    font-weight: 500;
}

.custom-select-wrap {
    position: relative;
    display: inline-block;
}

.cm-sort-select {
    appearance: none;
    -webkit-appearance: none;
    background: #FFFFFF;
    border: 1px solid var(--cm-border);
    border-radius: 4px;
    padding: 0.5rem 2.2rem 0.5rem 0.85rem;
    font-family: var(--cm-font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    color: #1A1C20;
    cursor: pointer;
    outline: none;
}

.cm-sort-select:focus {
    border-color: #0D0E11;
}

.select-chevron {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.8rem;
    color: #7D8592;
}

/* Product Grid (4 Columns) */
.cm-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.cm-product-card {
    background: #FFFFFF;
    position: relative;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
    overflow: hidden;
}

.cm-product-card:hover {
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Card Style 1: GLITCH CHROMATIC ABERRATION FRAME
   -------------------------------------------------------------------------- */
.card-glitch-frame {
    border: 1px solid rgba(17, 19, 23, 0.9);
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    padding: 0.9rem 0.85rem 1rem;
    position: relative;
}

/* Subtle glitch outline border */
.card-glitch-frame::before,
.card-glitch-frame::after {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1.5px solid transparent;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0.35;
    transition: opacity 0.2s, transform 0.2s;
}

.card-glitch-frame::before {
    border-color: rgba(0, 229, 255, 0.6);
    transform: translate(-0.8px, -0.8px);
}

.card-glitch-frame::after {
    border-color: rgba(255, 0, 127, 0.6);
    transform: translate(0.8px, 0.8px);
}

.card-glitch-frame:hover::before {
    opacity: 0.9;
    transform: translate(-1.5px, -1.5px);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.card-glitch-frame:hover::after {
    opacity: 0.9;
    transform: translate(1.5px, 1.5px);
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.4);
}

.glitch-border-outline {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 4px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.card-glitch-frame:hover .glitch-border-outline {
    opacity: 1;
    border-color: rgba(255, 0, 127, 0.4);
}

/* Wishlist Heart */
.card-wishlist-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 4px;
    z-index: 2;
    transition: color 0.15s, transform 0.15s;
}

.card-wishlist-toggle:hover,
.card-wishlist-toggle.active {
    color: #FF007F;
    transform: scale(1.15);
}

.card-wishlist-toggle.active svg {
    fill: #FF007F;
}

/* Image container */
.card-image-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f6 100%);
    border: 1px solid #edf1f5;
    border-radius: 2px;
}

.card-image-wrap .card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glitch-frame:hover .card-img {
    transform: scale(1.05);
}

/* Card Body */
.card-info-area {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.card-glitch-frame .card-product-title {
    font-size: 1.08rem;
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
}

.card-glitch-frame .card-product-volume {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-product-title {
    font-family: var(--cm-font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #0D0E11;
    margin: 0;
    line-height: 1.25;
}

.card-product-volume {
    font-family: var(--cm-font-mono);
    font-size: 0.72rem;
    color: #7D8592;
    margin-bottom: 0.25rem;
}

.card-price-tag {
    font-family: var(--cm-font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FF007F;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.card-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    background: #0D0E11;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.65rem 0.5rem;
    border-radius: 4px;
    font-family: var(--cm-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: 1px solid #0D0E11;
    transition: all 0.2s ease;
}

.card-action-btn:hover {
    background: #000000;
    border-color: #00E5FF;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

/* --------------------------------------------------------------------------
   Card Style 2: TECHNICAL HUD / SPECIAL EDITION / BARCODE
   -------------------------------------------------------------------------- */
.card-tech-frame {
    border: 2px solid #0A0A0A;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 310px;
    background: #FFFFFF;
    position: relative;
    box-shadow: 4px 0 0 -1px #00E5FF, -4px 0 0 -1px #FF0055, 0 4px 0 -1px #E6E600;
}

.card-tech-frame::before {
    content: '';
    position: absolute;
    inset: 10px 10px auto 10px;
    height: 12px;
    background: linear-gradient(90deg, #0D0E11 0 18%, transparent 18% 100%);
    opacity: 0.08;
    pointer-events: none;
}

.tech-hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--cm-font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: #0D0E11;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #0D0E11;
    background: #F7F7F8;
    border-left: 1px solid #111;
    border-right: 1px solid #111;
    border-top: 1px solid #111;
    padding: 0.45rem 0.5rem 0.35rem;
    text-transform: uppercase;
}

.hud-tag-left,
.hud-tag-right {
    display: inline-block;
    white-space: nowrap;
    text-transform: uppercase;
}

.hud-side-notch {
    position: absolute;
    font-family: var(--cm-font-mono);
    color: #8C929D;
    pointer-events: none;
}

.hud-side-notch.top-right {
    right: 8px;
    top: 12px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
}

.hud-side-notch.mid-right {
    right: 4px;
    top: 45%;
    font-size: 0.8rem;
}

.tech-card-image-wrap {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.25;
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    pointer-events: none;
}

.tech-card-image-wrap .card-img {
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
}

.tech-center-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.2rem 0 1.5rem;
    text-align: center;
    z-index: 1;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
    border-left: 1px solid rgba(17, 19, 23, 0.9);
    border-right: 1px solid rgba(17, 19, 23, 0.9);
}

.tech-center-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(255, 0, 127, 0.06));
    pointer-events: none;
}

.tech-banner-glitch-text {
    font-family: var(--cm-font-heading);
    font-size: 2.05rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #0D0E11;
    text-shadow: -2px 0 #00E5FF, 2px 0 #FF007F;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.tech-banner-badge {
    font-family: var(--cm-font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #4A505C;
    margin-top: 0.75rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.tech-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #0D0E11;
    padding-top: 0.65rem;
    margin-bottom: 0.4rem;
    z-index: 1;
    position: relative;
}

.tech-price-display {
    font-family: var(--cm-font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0D0E11;
}

.tech-cart-quick-btn {
    width: 34px;
    height: 34px;
    background: #0D0E11;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tech-cart-quick-btn:hover {
    background: #000000;
    color: #00E5FF;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.tech-barcode-strip {
    font-family: var(--cm-font-mono);
    font-size: 0.65rem;
    letter-spacing: -0.05em;
    color: #8C929D;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
    opacity: 0.7;
}

/* Empty State */
.cm-no-products-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: #FFFFFF;
    border: 1px dashed var(--cm-border);
    border-radius: 6px;
}

.empty-glitch-icon {
    font-family: var(--cm-font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF007F;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.cm-no-products-found h3 {
    font-family: var(--cm-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0D0E11;
    margin-bottom: 0.5rem;
}

.cm-no-products-found p {
    font-size: 0.9rem;
    color: #7D8592;
    margin-bottom: 1.5rem;
}

.cm-reset-filters-btn {
    background: #0D0E11;
    color: #FFFFFF;
    border: 1px solid #0D0E11;
    padding: 0.75rem 1.5rem;
    font-family: var(--cm-font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s;
}

.cm-reset-filters-btn:hover {
    background: #FFFFFF;
    color: #0D0E11;
}

/* --------------------------------------------------------------------------
   Responsive Adaptations
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .cm-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 880px) {
    .cm-shop-layout-inner {
        grid-template-columns: 1fr;
    }
    .cm-shop-sidebar {
        background: #FFFFFF;
        padding: 1.5rem;
        border: 1px solid var(--cm-border);
        border-radius: 6px;
    }
    .cm-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .header-delivery-badge {
        display: none;
    }
}

@media (max-width: 600px) {
    .cm-catalog-grid {
        grid-template-columns: 1fr;
    }
    .sub-nav-menu {
        gap: 1.2rem;
        overflow-x: auto;
        padding-bottom: 0.8rem;
        justify-content: flex-start;
    }
    .header-search-wrap {
        display: none;
    }
}
