:root {
    --sharp-bg: #050b14;
    --sharp-bg-2: #07111f;
    --sharp-bg-3: #0a1728;
    --sharp-panel: #0d1b2e;
    --sharp-panel-2: #10213a;
    --sharp-blue: #168dff;
    --sharp-blue-2: #57b8ff;
    --sharp-blue-3: #87d4ff;
    --sharp-white: #f7fbff;
    --sharp-silver: #dce7f2;
    --sharp-muted: #91a5ba;
    --sharp-border: rgba(145, 184, 224, .16);
    --sharp-border-strong: rgba(87, 184, 255, .36);
    --sharp-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    --sharp-radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.sharp-liquidations-v2 {
    margin: 0;
    background: var(--sharp-bg);
    color: var(--sharp-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.sharp-liquidations-v2 a { outline-offset: 3px; }
body.sharp-liquidations-v2 a:focus-visible,
body.sharp-liquidations-v2 button:focus-visible,
body.sharp-liquidations-v2 summary:focus-visible,
body.sharp-liquidations-v2 input:focus-visible { outline: 2px solid var(--sharp-blue-2); }

body.sharp-liquidations-v2 .site-content { padding-top: 0; background: var(--sharp-bg); }
body.sharp-liquidations-v2.home .site-content > .col-full { max-width: none; width: 100%; margin: 0; padding: 0; }
body.sharp-liquidations-v2:not(.home) .site-content > .col-full { max-width: 1360px; width: calc(100% - 48px); margin: 0 auto; padding: 54px 0 80px; }
body.sharp-liquidations-v2 .content-area,
body.sharp-liquidations-v2 .site-main { width: 100%; margin: 0; }
body.sharp-liquidations-v2 .widget-area { display: none; }
body.sharp-liquidations-v2 .site-content h1,
body.sharp-liquidations-v2 .site-content h2,
body.sharp-liquidations-v2 .site-content h3,
body.sharp-liquidations-v2 .site-content h4 { color: var(--sharp-white); }

.sharp-wide-shell {
    width: min(1360px, calc(100% - 64px));
    margin-inline: auto;
}

/* ---------- Announcement + Header ---------- */
.sharp-announcement {
    position: relative;
    z-index: 1001;
    padding: 7px 0;
    color: #b8ddff;
    background: #020812;
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: .18em;
}

.sharp-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 11, 20, .88);
    border-bottom: 1px solid var(--sharp-border);
    box-shadow: 0 12px 35px rgba(0,0,0,.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.admin-bar .sharp-site-header { top: 32px; }

.sharp-header-row {
    min-height: 82px;
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.sharp-header-logo { display: inline-flex; align-items: center; text-decoration: none; }
.sharp-header-logo img { display: block; width: 225px; height: auto; max-height: 64px; object-fit: contain; }

.sharp-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 1.8vw, 28px);
    min-width: 0;
}

.sharp-desktop-nav a {
    position: relative;
    padding: 29px 0 27px;
    color: #bdccdc;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .015em;
    white-space: nowrap;
    transition: color .18s ease;
}
.sharp-desktop-nav a::after {
    content: '';
    position: absolute;
    left: 50%; right: 50%; bottom: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sharp-blue), var(--sharp-blue-2));
    transition: left .18s ease, right .18s ease;
}
.sharp-desktop-nav a:hover { color: #fff; }
.sharp-desktop-nav a:hover::after { left: 0; right: 0; }

.sharp-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.sharp-icon-button {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d8e7f5 !important;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    text-decoration: none !important;
    cursor: pointer;
    list-style: none;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.sharp-icon-button::-webkit-details-marker { display: none; }
.sharp-icon-button:hover { color: #fff !important; background: rgba(255,255,255,.055); border-color: var(--sharp-border); }
.sharp-icon-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.sharp-cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: var(--sharp-blue);
    box-shadow: 0 5px 16px rgba(22,141,255,.45);
    font-size: 9px;
    font-weight: 900;
}

.sharp-search-popover,
.sharp-mobile-menu { position: relative; margin: 0; }

.sharp-search-popover[open] > summary,
.sharp-mobile-menu[open] > summary { background: rgba(255,255,255,.06); border-color: var(--sharp-border); }

.sharp-header-search {
    position: absolute;
    top: calc(100% + 15px);
    right: -92px;
    width: min(420px, calc(100vw - 32px));
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--sharp-border-strong);
    border-radius: 15px;
    background: rgba(8, 18, 32, .98);
    box-shadow: var(--sharp-shadow);
}
.sharp-header-search input[type="search"] {
    flex: 1;
    min-width: 0;
    height: 44px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid var(--sharp-border);
    border-radius: 10px;
    color: #fff;
    background: rgba(255,255,255,.045);
    box-shadow: none;
}
.sharp-header-search button {
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--sharp-blue);
}
.sharp-header-search button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.sharp-mobile-menu { display: none; }
.sharp-mobile-nav {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: min(330px, calc(100vw - 28px));
    padding: 10px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--sharp-border-strong);
    border-radius: 16px;
    background: rgba(8, 18, 32, .99);
    box-shadow: var(--sharp-shadow);
}
.sharp-mobile-nav a { padding: 13px 14px; border-radius: 10px; color: #c4d3e2; text-decoration: none; font-weight: 750; }
.sharp-mobile-nav a:hover { color: #fff; background: rgba(255,255,255,.055); }
.sharp-mobile-nav .sharp-mobile-shop { margin-bottom: 6px; color: #fff; background: linear-gradient(135deg, #147ee9, #239eff); }

/* ---------- Hero ---------- */
.sharp-homepage { overflow: hidden; }
.sharp-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(rgba(30,137,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,137,255,.035) 1px, transparent 1px),
        linear-gradient(135deg, #040a12 0%, #071321 50%, #08172a 100%);
    background-size: 38px 38px, 38px 38px, auto;
    border-bottom: 1px solid var(--sharp-border);
}
.sharp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(5,11,20,.98) 0%, rgba(5,11,20,.85) 42%, rgba(5,11,20,.18) 75%, rgba(5,11,20,.4) 100%);
}
.sharp-hero-glow { position: absolute; z-index: -2; border-radius: 999px; filter: blur(35px); opacity: .32; pointer-events: none; }
.sharp-hero-glow-one { width: 520px; height: 520px; right: -80px; top: -180px; background: #087dff; }
.sharp-hero-glow-two { width: 340px; height: 340px; right: 360px; bottom: -220px; background: #2dbbff; opacity: .18; }

.sharp-hero-inner {
    min-height: 650px;
    padding: 86px 0 80px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(35px, 5vw, 86px);
}

.sharp-hero-content { max-width: 660px; }
.sharp-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--sharp-blue-2);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.sharp-hero h1 {
    max-width: 650px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(56px, 6.1vw, 94px);
    line-height: .93;
    letter-spacing: -.055em;
    font-weight: 850;
}
.sharp-hero h1 span {
    color: transparent;
    background: linear-gradient(135deg, #fff 10%, #bce6ff 45%, #36a8ff 92%);
    -webkit-background-clip: text;
    background-clip: text;
}
.sharp-hero-content > p {
    max-width: 610px;
    margin: 0 0 30px;
    color: #9eb0c4;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.7;
}

.sharp-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; }
.sharp-btn {
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .055em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.sharp-btn:hover { transform: translateY(-2px); }
.sharp-btn svg,
.sharp-inline-link svg,
.sharp-category-arrow svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sharp-btn-primary { color: #fff !important; background: linear-gradient(135deg, #137ee9, #22a1ff); box-shadow: 0 12px 34px rgba(18,136,246,.27); }
.sharp-btn-primary:hover { box-shadow: 0 16px 40px rgba(18,136,246,.36); }
.sharp-btn-ghost { color: #e9f5ff !important; background: rgba(255,255,255,.045); border-color: var(--sharp-border); }
.sharp-btn-ghost:hover { background: rgba(255,255,255,.075); border-color: var(--sharp-border-strong); }
.sharp-btn-text { min-height: 44px; padding-inline: 8px; color: #91cfff !important; }

.sharp-hero-points { margin-top: 27px; display: flex; flex-wrap: wrap; gap: 10px 18px; color: #7990a8; font-size: 12px; font-weight: 700; }
.sharp-hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.sharp-hero-points span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--sharp-blue); box-shadow: 0 0 12px rgba(22,141,255,.7); }

.sharp-hero-brand { position: relative; min-height: 380px; display: grid; place-items: center; }
.sharp-hero-brand::before {
    content: '';
    position: absolute;
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,145,255,.25) 0%, rgba(20,145,255,.05) 48%, transparent 72%);
    filter: blur(4px);
}
.sharp-hero-brand-frame {
    position: relative;
    width: 100%;
    padding: 54px 32px;
    border: 1px solid rgba(100,193,255,.16);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(15,35,59,.8), rgba(7,18,32,.35));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 30px 80px rgba(0,0,0,.28);
    transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
}
.sharp-hero-brand-frame::before,
.sharp-hero-brand-frame::after { content:''; position:absolute; width:22px; height:22px; border-color: var(--sharp-blue-2); opacity:.65; }
.sharp-hero-brand-frame::before { left:13px; top:13px; border-left:2px solid; border-top:2px solid; }
.sharp-hero-brand-frame::after { right:13px; bottom:13px; border-right:2px solid; border-bottom:2px solid; }
.sharp-hero-brand-frame img { position: relative; z-index: 1; display: block; width: 100%; height: auto; filter: drop-shadow(0 18px 35px rgba(0,0,0,.48)); }
.sharp-floating-tag { position: absolute; z-index: 3; padding: 9px 12px; border: 1px solid rgba(120,203,255,.28); border-radius: 9px; color: #b9e4ff; background: rgba(4,13,24,.85); box-shadow: 0 12px 25px rgba(0,0,0,.25); font-size: 9px; font-weight: 900; letter-spacing: .15em; backdrop-filter: blur(10px); }
.sharp-tag-one { left: -18px; bottom: 54px; }
.sharp-tag-two { right: -16px; top: 70px; }

/* ---------- Section system ---------- */
.sharp-category-section,
.sharp-product-section,
.sharp-cta-section { padding: 84px 0; }
.sharp-category-section { background: #07111e; }
.sharp-section-dark { background: #050c16; border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }
.sharp-featured-section { background: #081321; }
.sharp-section-heading { margin-bottom: 32px; }
.sharp-section-heading h2 { margin: 0; color: #fff; font-size: clamp(36px, 3.8vw, 56px); line-height: 1; letter-spacing: -.04em; font-weight: 800; }
.sharp-section-heading p { max-width: 620px; margin: 10px 0 0; color: var(--sharp-muted); font-size: 15px; }
.sharp-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.sharp-inline-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 3px; color: #73c6ff !important; text-decoration: none !important; font-size: 13px; font-weight: 850; white-space: nowrap; }
.sharp-inline-link:hover { color: #fff !important; }

/* ---------- Categories ---------- */
.sharp-category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.sharp-category-card {
    position: relative;
    min-height: 228px;
    padding: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--sharp-border);
    border-radius: 20px;
    color: #fff !important;
    background: linear-gradient(150deg, rgba(20,56,92,.62), rgba(7,18,32,.92));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    text-decoration: none !important;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sharp-category-card::after { content:''; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 90% 5%, rgba(53,166,255,.16), transparent 38%); }
.sharp-category-card:hover { transform: translateY(-5px); border-color: var(--sharp-border-strong); box-shadow: 0 22px 45px rgba(0,0,0,.22); }
.sharp-category-icon { position: relative; z-index: 2; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(99,192,255,.28); border-radius: 14px; color: #8fd4ff; background: rgba(17,75,123,.27); }
.sharp-category-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sharp-category-watermark { position: absolute; z-index: 0; top: 25px; right: -24px; color: rgba(81,181,255,.055); transform: rotate(-12deg); }
.sharp-category-watermark svg { width: 132px; height: 132px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.sharp-category-copy { position: relative; z-index: 2; display: block; margin-top: auto; }
.sharp-category-copy strong { display: block; margin-bottom: 6px; color: #fff; font-size: 18px; line-height: 1.1; }
.sharp-category-copy small { display: block; padding-right: 18px; color: #7f94aa; font-size: 11px; line-height: 1.5; }
.sharp-category-arrow { position: absolute; z-index: 2; right: 18px; bottom: 22px; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--sharp-border); border-radius: 50%; color: #76caff; transition: transform .2s ease, background .2s ease; }
.sharp-category-card:hover .sharp-category-arrow { transform: translateX(3px); background: rgba(25,141,255,.12); }

/* ---------- Product cards ---------- */
.sharp-products-wrap ul.products { margin: 0 !important; display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.sharp-products-wrap ul.products::before,
.sharp-products-wrap ul.products::after { display: none !important; }
.sharp-products-wrap ul.products li.product,
body.sharp-liquidations-v2 ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 13px 13px 17px !important;
    overflow: hidden;
    border: 1px solid var(--sharp-border);
    border-radius: 18px;
    background: linear-gradient(160deg, #0d1a2c, #091421);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
body.sharp-liquidations-v2 ul.products li.product:hover { transform: translateY(-4px); border-color: rgba(88,184,255,.4); box-shadow: 0 18px 40px rgba(0,0,0,.22); }
body.sharp-liquidations-v2 ul.products li.product img { width: 100%; margin: 0 0 15px !important; aspect-ratio: 4 / 5; object-fit: contain; border-radius: 12px; background: #07101c; }
body.sharp-liquidations-v2 ul.products li.product .woocommerce-loop-product__title { margin: 0 0 7px !important; color: #f3f8fd !important; font-size: 14px !important; line-height: 1.4; font-weight: 760; }
body.sharp-liquidations-v2 ul.products li.product .price { display: block; margin: 0 0 13px; color: #7dccff !important; font-size: 15px; font-weight: 850; }
body.sharp-liquidations-v2 ul.products li.product .button { width: 100%; margin: auto 0 0 !important; padding: 12px 14px; border: 0; border-radius: 10px; color: #fff !important; background: linear-gradient(135deg, #167fe9, #209cf9); box-shadow: none; font-size: 11px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
body.sharp-liquidations-v2 ul.products li.product .button:hover { background: linear-gradient(135deg, #2395ff, #41b1ff); }
body.sharp-liquidations-v2 span.onsale { min-width: auto; min-height: auto; padding: 7px 9px; border: 1px solid rgba(94,194,255,.28); border-radius: 8px; color: #b9e6ff; background: rgba(6,23,40,.92); font-size: 9px; line-height: 1; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.sharp-empty-state,
.sharp-feature-placeholder {
    min-height: 150px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 22px;
    border: 1px dashed rgba(86,183,255,.27);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(17,39,64,.56), rgba(8,20,34,.72));
}
.sharp-empty-icon { flex: 0 0 60px; width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid rgba(85,185,255,.28); border-radius: 16px; color: #72c6ff; background: rgba(29,120,193,.12); }
.sharp-empty-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.sharp-empty-state > div:nth-child(2), .sharp-feature-placeholder > div { flex: 1; }
.sharp-empty-state strong, .sharp-feature-placeholder h3 { display: block; margin: 0 0 5px; color: #fff; font-size: 18px; }
.sharp-empty-state p, .sharp-feature-placeholder p { margin: 0; color: var(--sharp-muted); font-size: 13px; }
.sharp-feature-placeholder { justify-content: space-between; }
.sharp-feature-placeholder h3 { margin-bottom: 8px; font-size: 26px; }

/* ---------- Trust ---------- */
.sharp-trust-section { padding: 30px 0; background: #030912; border-top: 1px solid rgba(255,255,255,.045); border-bottom: 1px solid rgba(255,255,255,.045); }
.sharp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.sharp-trust-item { min-height: 72px; padding: 8px 26px; display: flex; align-items: center; gap: 15px; border-right: 1px solid rgba(255,255,255,.07); }
.sharp-trust-item:first-child { padding-left: 0; }
.sharp-trust-item:last-child { border-right: 0; padding-right: 0; }
.sharp-trust-icon { flex: 0 0 41px; width: 41px; height: 41px; display: grid; place-items: center; border-radius: 12px; color: #69c1ff; background: rgba(21,132,222,.10); }
.sharp-trust-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sharp-trust-item strong { display: block; margin-bottom: 3px; color: #f5faff; font-size: 13px; }
.sharp-trust-item span { display: block; color: #7890a7; font-size: 10px; line-height: 1.4; }

/* ---------- CTA ---------- */
.sharp-cta-section { background: #050b14; }
.sharp-cta-card {
    position: relative;
    min-height: 235px;
    padding: 45px 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    border: 1px solid rgba(83,183,255,.26);
    border-radius: 24px;
    background: linear-gradient(120deg, #0b1b2e 0%, #0c2644 55%, #091727 100%);
    box-shadow: var(--sharp-shadow);
}
.sharp-cta-card::after { content:''; position:absolute; width:420px; height:420px; right:-120px; top:-210px; border-radius:50%; background:rgba(24,145,255,.19); filter:blur(10px); }
.sharp-cta-card > * { position: relative; z-index: 2; }
.sharp-cta-card h2 { margin: 0 0 10px; color: #fff; font-size: clamp(36px, 4vw, 58px); line-height: .95; letter-spacing: -.045em; }
.sharp-cta-card p { max-width: 650px; margin: 0; color: #98aec3; }

/* ---------- WooCommerce interior pages ---------- */
body.sharp-liquidations-v2:not(.home) .site-main { color: #c2cfdd; }
body.sharp-liquidations-v2:not(.home) .entry-header,
body.sharp-liquidations-v2:not(.home) .woocommerce-products-header { margin-bottom: 30px; }
body.sharp-liquidations-v2:not(.home) .entry-title,
body.sharp-liquidations-v2:not(.home) .woocommerce-products-header__title { color: #fff; font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.04em; }
body.sharp-liquidations-v2 .woocommerce-breadcrumb { margin-bottom: 24px; color: #6f859b; font-size: 12px; }
body.sharp-liquidations-v2 .woocommerce-breadcrumb a { color: #74c5ff; }
body.sharp-liquidations-v2 .storefront-sorting { padding: 12px 14px; border: 1px solid var(--sharp-border); border-radius: 14px; background: #0a1727; }
body.sharp-liquidations-v2 select,
body.sharp-liquidations-v2 input.input-text,
body.sharp-liquidations-v2 input[type="text"],
body.sharp-liquidations-v2 input[type="email"],
body.sharp-liquidations-v2 input[type="tel"],
body.sharp-liquidations-v2 input[type="password"],
body.sharp-liquidations-v2 textarea { border: 1px solid var(--sharp-border); border-radius: 10px; color: #fff; background: #0b1727; box-shadow: none; }
body.sharp-liquidations-v2 table.shop_table,
body.sharp-liquidations-v2 .woocommerce-checkout-review-order,
body.sharp-liquidations-v2 .woocommerce-form-login,
body.sharp-liquidations-v2 .woocommerce-form-register { border: 1px solid var(--sharp-border); border-radius: 15px; color: #c8d4df; background: #0a1626; }
body.sharp-liquidations-v2 table th,
body.sharp-liquidations-v2 table td { border-color: rgba(255,255,255,.07); }
body.sharp-liquidations-v2 .woocommerce-info,
body.sharp-liquidations-v2 .woocommerce-message,
body.sharp-liquidations-v2 .woocommerce-error { border-radius: 12px; color: #d8e9f8; background: #0e2036; }
body.sharp-liquidations-v2 .button,
body.sharp-liquidations-v2 button.button,
body.sharp-liquidations-v2 input.button { border-radius: 10px; color: #fff; background: var(--sharp-blue); }
body.sharp-liquidations-v2 .button:hover,
body.sharp-liquidations-v2 button.button:hover,
body.sharp-liquidations-v2 input.button:hover { color: #fff; background: #35a7ff; }
body.sharp-liquidations-v2 .single-product div.product .summary .price { color: #72c8ff; }
body.sharp-liquidations-v2 .woocommerce-tabs ul.tabs li a { color: #a8b8c8; }
body.sharp-liquidations-v2 .woocommerce-tabs ul.tabs li.active a { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { padding: 0 !important; background: #020812 !important; color: #7f95aa !important; }
.sharp-footer { padding: 58px 0 24px; border-top: 1px solid var(--sharp-border); background: #020812; }
.sharp-footer-grid { display: grid; grid-template-columns: minmax(300px, 1.8fr) repeat(3, 1fr); gap: 55px; }
.sharp-footer-brand img { width: min(290px, 100%); height: auto; margin-bottom: 12px; }
.sharp-footer-brand p { max-width: 420px; margin: 0; color: #6e849a; font-size: 13px; line-height: 1.7; }
.sharp-footer-grid > div:not(.sharp-footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.sharp-footer-grid strong { margin-bottom: 6px; color: #e9f4fd; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.sharp-footer-grid a { color: #7790a7 !important; text-decoration: none !important; font-size: 12px; }
.sharp-footer-grid a:hover { color: #7bcaff !important; }
.sharp-footer-bottom { margin-top: 45px; padding-top: 20px; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.065); color: #4f667d; font-size: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
    .sharp-header-row { grid-template-columns: 205px minmax(0, 1fr) auto; gap: 18px; }
    .sharp-header-logo img { width: 195px; }
    .sharp-desktop-nav { gap: 15px; }
    .sharp-desktop-nav a { font-size: 11px; }
    .sharp-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); }
    .sharp-category-grid { grid-template-columns: repeat(3, 1fr); }
    .sharp-category-card:nth-child(4), .sharp-category-card:nth-child(5) { min-height: 190px; }
}

@media (max-width: 980px) {
    .sharp-wide-shell { width: min(100% - 40px, 1360px); }
    .sharp-desktop-nav { display: none; }
    .sharp-header-row { grid-template-columns: 1fr auto; min-height: 74px; }
    .sharp-header-logo img { width: 210px; }
    .sharp-mobile-menu { display: block; }
    .sharp-hero-inner { min-height: auto; padding: 72px 0 68px; grid-template-columns: 1fr; }
    .sharp-hero-content { max-width: 760px; }
    .sharp-hero-brand { min-height: auto; }
    .sharp-hero-brand-frame { max-width: 760px; margin-inline: auto; padding: 48px 34px; transform: none; }
    .sharp-floating-tag { display: none; }
    .sharp-category-grid { grid-template-columns: repeat(2, 1fr); }
    .sharp-products-wrap ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sharp-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .sharp-trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); padding: 18px 20px; }
    .sharp-trust-item:first-child { padding-left: 20px; }
    .sharp-trust-item:nth-last-child(-n+2) { border-bottom: 0; }
    .sharp-footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 35px; }
    .sharp-footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
    .admin-bar .sharp-site-header { top: 46px; }
    .sharp-wide-shell { width: min(100% - 28px, 1360px); }
    .sharp-announcement { font-size: 9px; letter-spacing: .12em; }
    .sharp-header-row { min-height: 68px; gap: 8px; }
    .sharp-header-logo img { width: 170px; max-height: 52px; }
    .sharp-header-actions { gap: 0; }
    .sharp-icon-button { width: 38px; height: 38px; }
    .sharp-account-link { display: none; }
    .sharp-header-search { right: -78px; }
    .sharp-hero-inner { padding: 58px 0 54px; gap: 36px; }
    .sharp-hero h1 { font-size: clamp(48px, 16vw, 68px); }
    .sharp-hero-content > p { font-size: 15px; line-height: 1.6; }
    .sharp-actions { align-items: stretch; }
    .sharp-btn-primary, .sharp-btn-ghost { flex: 1 1 calc(50% - 6px); }
    .sharp-btn-text { flex: 1 1 100%; justify-content: flex-start; }
    .sharp-hero-points { gap: 8px 12px; }
    .sharp-hero-brand-frame { padding: 34px 18px; border-radius: 20px; }
    .sharp-category-section, .sharp-product-section, .sharp-cta-section { padding: 60px 0; }
    .sharp-heading-row { align-items: flex-start; flex-direction: column; gap: 14px; }
    .sharp-section-heading { margin-bottom: 24px; }
    .sharp-category-grid { grid-template-columns: 1fr; }
    .sharp-category-card, .sharp-category-card:nth-child(4), .sharp-category-card:nth-child(5) { min-height: 165px; }
    .sharp-category-watermark svg { width: 110px; height: 110px; }
    .sharp-products-wrap ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .sharp-products-wrap ul.products li.product { padding: 9px 9px 12px !important; border-radius: 13px; }
    body.sharp-liquidations-v2 ul.products li.product .woocommerce-loop-product__title { font-size: 12px !important; }
    body.sharp-liquidations-v2 ul.products li.product .button { padding: 10px 7px; font-size: 9px; }
    .sharp-empty-state, .sharp-feature-placeholder { align-items: flex-start; flex-direction: column; }
    .sharp-trust-grid { grid-template-columns: 1fr; }
    .sharp-trust-item, .sharp-trust-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.06); }
    .sharp-trust-item:last-child { border-bottom: 0; }
    .sharp-cta-card { padding: 34px 26px; align-items: flex-start; flex-direction: column; }
    .sharp-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .sharp-footer-brand { grid-column: 1 / -1; }
    .sharp-footer-grid > div:last-child { grid-column: auto; }
    .sharp-footer-bottom { align-items: flex-start; flex-direction: column; }
    body.sharp-liquidations-v2:not(.home) .site-content > .col-full { width: calc(100% - 28px); padding-top: 36px; }
}

@media (max-width: 420px) {
    .sharp-header-logo img { width: 150px; }
    .sharp-search-popover { display: none; }
    .sharp-hero h1 { font-size: 47px; }
    .sharp-btn-primary, .sharp-btn-ghost { flex-basis: 100%; }
    .sharp-products-wrap ul.products { grid-template-columns: 1fr 1fr; }
    .sharp-footer-grid { grid-template-columns: 1fr; }
}
