/* EM Tech Shop v2.6.7 — Edworthy Media */

/* ===== Variables ===== */
.em-tech-shop {
    --em-navy:    #0c1832;
    --em-navy-dk: #091428;
    --em-navy-lt: #e8f0fc;
    --em-red:     #dc2626;
    --em-green:   #059669;
    --em-amber:   #b45309;
    --em-bg:      #ffffff;
    --em-card:    #ffffff;
    --em-border:  #e2e6ed;
    --em-text:    #111827;
    --em-muted:   #6b7280;
    --em-light:   #f8f9fb;
    --em-radius:  10px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== OUTER SHOP WRAPPER ===== */
.em-tech-shop {
    background: #fff;
    padding: 16px;
    color: var(--em-text);
}

/* ===== LAYOUT ===== */
.em-tech-shop .em-shop-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 18px;
    align-items: start;
}
@media (max-width: 991px) {
    .em-tech-shop .em-shop-layout { display: block; }
}

/* ===== MOBILE FILTER TOGGLE ===== */
.em-tech-shop .em-filter-toggle {
    display: none;
    width: 100%; padding: 13px 16px;
    background: var(--em-navy); color: #fff;
    border: none; border-radius: var(--em-radius);
    font-family: inherit; font-size: 14px; font-weight: 700;
    cursor: pointer; margin-bottom: 14px;
    align-items: center; gap: 10px; justify-content: center;
    transition: background 0.15s;
}
.em-tech-shop .em-filter-toggle:hover { background: var(--em-navy-dk); }
.em-tech-shop .em-filter-toggle svg { stroke: #fff; }
.em-tech-shop .em-filter-badge {
    display: inline-flex; align-items: center; justify-content: center;
    background: #e53e3e; color: #fff;
    font-size: 11px; font-weight: 800;
    min-width: 20px; height: 20px;
    border-radius: 999px; padding: 0 5px; margin-left: 4px;
}

/* ===== SIDEBAR ===== */
.em-tech-shop .em-sidebar {
    background: var(--em-card);
    border: 1px solid var(--em-border);
    border-radius: var(--em-radius);
    overflow: hidden;
    position: sticky; top: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.em-tech-shop .em-sidebar-header {
    padding: 13px 16px;
    background: var(--em-navy);
    display: flex; align-items: center; justify-content: space-between;
}
.em-tech-shop .em-sidebar-header h3 {
    margin: 0; font-size: 11px; font-weight: 800;
    color: #fff; letter-spacing: 0.1em; text-transform: uppercase;
}
.em-tech-shop .em-filter-close {
    display: none; background: none; border: none;
    cursor: pointer; padding: 4px; color: rgba(255,255,255,0.7); line-height: 1;
}
.em-tech-shop .em-filter-close:hover { color: #fff; }
.em-tech-shop .em-filter-close svg { stroke: currentColor; }

.em-tech-shop .em-filter-block {
    border-bottom: 1px solid var(--em-border);
    padding: 11px 14px;
}
.em-tech-shop .em-filter-block:last-child { border-bottom: none; }
.em-tech-shop .em-filter-block h4 {
    font-size: 10px; font-weight: 800;
    color: var(--em-muted); text-transform: uppercase;
    letter-spacing: 0.08em; margin: 0 0 9px;
}

/* Search */
.em-tech-shop .em-search-form {
    display: flex; align-items: center;
    background: var(--em-light); border: 1px solid var(--em-border);
    border-radius: 8px; overflow: hidden; transition: border-color 0.15s;
}
.em-tech-shop .em-search-form:focus-within { border-color: var(--em-navy); }
.em-tech-shop .em-search-form input {
    flex: 1; border: none; background: transparent;
    padding: 9px 11px; font-family: inherit; font-size: 13px;
    outline: none; color: var(--em-text); min-width: 0;
}
.em-tech-shop #em-search-btn {
    background: var(--em-navy); border: none; padding: 9px 14px;
    color: #fff; font-family: inherit; font-size: 12px; font-weight: 700;
    cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background 0.15s;
}
.em-tech-shop #em-search-btn:hover { background: var(--em-navy-dk); }

/* Spec filter groups */
.em-tech-shop .em-spec-group,
.em-tech-shop .em-filter-section { border-bottom: 1px solid var(--em-border); }
.em-tech-shop .em-spec-group:last-child { border-bottom: none; }

.em-tech-shop .em-spec-group-toggle {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; padding: 11px 14px;
    background: none; border: none; cursor: pointer;
    font-family: inherit; text-align: left; gap: 8px; transition: background 0.1s;
}
.em-tech-shop .em-spec-group-toggle:hover { background: var(--em-light); }
.em-tech-shop .em-spec-group-label { font-size: 13px; font-weight: 600; color: var(--em-text); flex: 1; }
.em-tech-shop .em-spec-count {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--em-navy); color: #fff;
    font-size: 10px; font-weight: 800;
    min-width: 18px; height: 18px;
    border-radius: 10px; padding: 0 5px; flex-shrink: 0;
}
.em-tech-shop .em-chevron {
    flex-shrink: 0; stroke: var(--em-muted);
    transition: transform 0.2s; width: 14px; height: 14px;
}
.em-tech-shop .em-spec-open > .em-spec-group-toggle .em-chevron { transform: rotate(180deg); }

.em-tech-shop .em-spec-options {
    display: none; padding: 2px 14px 10px;
    max-height: 200px; overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: var(--em-border) transparent;
}
.em-tech-shop .em-spec-options-open { display: block; }

.em-tech-shop .em-spec-label {
    display: flex; align-items: center; gap: 9px;
    padding: 5px 6px; cursor: pointer; user-select: none;
    border-radius: 6px; transition: background 0.1s;
}
.em-tech-shop .em-spec-label:hover { background: var(--em-light); }
.em-tech-shop .em-spec-cb {
    width: 15px; height: 15px; flex-shrink: 0;
    accent-color: var(--em-navy); cursor: pointer;
}
.em-tech-shop .em-spec-label-text { flex: 1; font-size: 13px; color: #374151; line-height: 1.4; }
.em-tech-shop .em-spec-label-count { font-size: 11px; color: var(--em-muted); flex-shrink: 0; }
#em-spec-filters-wrap .em-spec-filters { border-bottom: 1px solid var(--em-border); }

/* Category list */
.em-tech-shop .em-cat-list,
.em-tech-shop .em-subcats { list-style: none; margin: 0; padding: 0; }
.em-tech-shop .em-cat-item { margin-bottom: 1px; }
.em-tech-shop .em-cat-row { display: flex; align-items: center; gap: 4px; }
.em-tech-shop .em-cat-row a {
    flex: 1; display: flex; align-items: center;
    color: var(--em-muted); text-decoration: none;
    font-size: 13px; font-weight: 500;
    padding: 6px 8px; border-radius: 6px; transition: all 0.12s;
}
.em-tech-shop .em-cat-row a:hover { background: var(--em-light); color: var(--em-navy); }
.em-tech-shop .em-cat-row .em-filter-active {
    color: var(--em-navy); font-weight: 700; background: var(--em-navy-lt);
}
.em-tech-shop .em-cat-row .em-filter-active::before {
    content: ''; display: inline-block;
    width: 3px; height: 14px; background: var(--em-navy);
    border-radius: 2px; margin-right: 8px; flex-shrink: 0;
}
.em-tech-shop .em-subcat-toggle {
    background: none; border: none; cursor: pointer;
    font-size: 9px; color: var(--em-muted); padding: 2px 4px; line-height: 1;
}
.em-tech-shop .em-subcat-toggle:hover { color: var(--em-navy); }
.em-tech-shop .em-subcats { padding-left: 14px; margin-top: 2px; }
.em-tech-shop .em-cat-toggle {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--em-muted);
    text-decoration: none; padding: 5px 8px; border-radius: 6px; transition: color 0.12s;
}
.em-tech-shop .em-cat-toggle:hover { color: var(--em-navy); }

/* Price filter */
.em-tech-shop .em-price-row { display: flex; gap: 8px; margin-bottom: 10px; }
.em-tech-shop .em-price-input {
    flex: 1; padding: 8px 10px;
    border: 1px solid var(--em-border); border-radius: 7px;
    font-family: inherit; font-size: 13px; color: var(--em-text);
    background: var(--em-light); outline: none; width: 100%;
    transition: border-color 0.15s;
}
.em-tech-shop .em-price-input:focus { border-color: var(--em-navy); }
.em-tech-shop #em-price-btn {
    width: 100%; padding: 9px;
    background: var(--em-navy); border: none; border-radius: 7px;
    color: #fff; font-family: inherit; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: background 0.15s;
}
.em-tech-shop #em-price-btn:hover { background: var(--em-navy-dk); }

/* Active filter pills */
.em-tech-shop .em-active-filters {
    display: flex; flex-wrap: wrap; gap: 6px;
    align-items: center; margin-bottom: 12px;
}
.em-tech-shop .em-active-label {
    font-size: 12px; font-weight: 700; color: var(--em-muted); flex-shrink: 0;
}
.em-tech-shop .em-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; background: var(--em-navy-lt);
    border: 1px solid #c5d5f0; border-radius: 999px;
    color: var(--em-navy); font-family: inherit; font-size: 12px; font-weight: 600;
    cursor: pointer; line-height: 1; transition: all 0.12s;
}
.em-tech-shop .em-pill:hover { background: #d0e0f8; }
.em-tech-shop .em-pill svg { stroke: var(--em-navy); }
.em-tech-shop .em-pill-clear-all { background: #fee2e2; border-color: #fca5a5; color: var(--em-red); }
.em-tech-shop .em-pill-clear-all:hover { background: #fecaca; }

/* ===== QUICK FILTER PILLS ===== */
.em-tech-shop .em-quick-filters {
    display: flex; align-items: center; flex-wrap: nowrap;
    gap: 6px; margin-bottom: 12px;
    padding: 10px 12px;
    background: #f8f9fb;
    border: 1px solid var(--em-border);
    border-radius: var(--em-radius);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.em-tech-shop .em-quick-filters::-webkit-scrollbar { display: none; }
.em-tech-shop .em-qf-label {
    font-size: 11px; font-weight: 800; color: var(--em-muted);
    text-transform: uppercase; letter-spacing: 0.07em;
    white-space: nowrap; margin-right: 2px; flex-shrink: 0;
}
.em-tech-shop .em-qf-sep {
    width: 1px; height: 18px; background: var(--em-border);
    margin: 0 2px; flex-shrink: 0;
}
.em-tech-shop .em-qf-pill {
    display: inline-flex; align-items: center;
    padding: 4px 11px;
    background: var(--em-light); border: 1px solid var(--em-border);
    border-radius: 999px;
    font-family: inherit; font-size: 12px; font-weight: 600;
    color: var(--em-text); cursor: pointer; white-space: nowrap;
    transition: all 0.12s; line-height: 1;
}
.em-tech-shop .em-qf-pill:hover { border-color: var(--em-navy); color: var(--em-navy); background: var(--em-navy-lt); }
.em-tech-shop .em-qf-pill.em-qf-active { background: var(--em-navy); border-color: var(--em-navy); color: #fff; }

/* ===== RESULTS BAR ===== */
.em-tech-shop .em-results-count {
    font-size: 14px; color: var(--em-muted); font-weight: 500; margin: 0 0 14px;
}
.em-tech-shop .em-results-count strong { color: var(--em-text); font-weight: 700; }

/* Section head + sort */
.em-tech-shop .em-section-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px; gap: 12px; flex-wrap: wrap;
}
.em-tech-shop .em-section-title { font-size: 20px; font-weight: 800; color: var(--em-text); margin: 0; }
.em-tech-shop .em-section-intro { font-size: 13px; color: var(--em-muted); margin: -8px 0 14px; }

.em-tech-shop #em-sort-select {
    padding: 8px 12px; border: 1px solid var(--em-border);
    border-radius: 8px; font-family: inherit; font-size: 13px;
    color: var(--em-text); background: #fff; cursor: pointer; outline: none;
}

/* Pagination */
.em-tech-shop .em-pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin-top: 28px; flex-wrap: wrap;
}
.em-tech-shop .em-page-btn {
    padding: 8px 14px; background: #fff;
    border: 1px solid var(--em-border); border-radius: 8px;
    cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 600;
    color: var(--em-navy); transition: all 0.12s; min-width: 38px; text-align: center;
}
.em-tech-shop .em-page-btn:hover { border-color: var(--em-navy); background: var(--em-navy-lt); }
.em-tech-shop .em-page-active { background: var(--em-navy) !important; color: #fff !important; border-color: var(--em-navy) !important; }
.em-tech-shop .em-page-ellipsis { padding: 8px 4px; color: var(--em-muted); font-size: 13px; }

/* ===== PRODUCT GRID ===== */
.em-tech-shop .em-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}
@media (max-width: 1200px) { .em-tech-shop .em-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 991px)  { .em-tech-shop .em-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; } }
@media (max-width: 600px)  { .em-tech-shop .em-grid { grid-template-columns: minmax(0,1fr); gap: 10px; } }

/* ===== PRODUCT CARD ===== */
.em-tech-shop .em-card {
    position: relative;
    background: #ffffff !important;
    border: 1px solid var(--em-border);
    border-radius: var(--em-radius);
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.18s, border-color 0.2s;
}
.em-tech-shop .em-card:hover {
    box-shadow: 0 6px 24px rgba(12,24,50,0.13);
    transform: translateY(-3px);
    border-color: #c5d0e0;
}
.em-tech-shop .em-card.em-card-badged { border-top: 3px solid var(--em-navy); }
.em-tech-shop .em-card.em-card-sale   { border-top: 3px solid #dc2626; }

/* Sale ribbon */
.em-tech-shop .em-sale-ribbon {
    position: absolute; top: 0; right: 0;
    background: #dc2626; color: #fff;
    font-size: 11px; font-weight: 800;
    padding: 4px 10px; border-bottom-left-radius: 8px;
    z-index: 6; letter-spacing: 0.03em;
}

/* Badge */
.em-tech-shop .em-badge {
    position: absolute; top: 8px; left: 8px;
    color: #fff; padding: 4px 9px;
    font-size: 10px; font-weight: 800;
    border-radius: 5px; z-index: 5;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.em-tech-shop .em-badge-featured,
.em-tech-shop .em-badge-black-friday,
.em-tech-shop .em-badge-christmas,
.em-tech-shop .em-badge-easter,
.em-tech-shop .em-badge-summer,
.em-tech-shop .em-badge-back-to-school { background: var(--em-navy); }
.em-tech-shop .em-badge-best-value { background: var(--em-green); }
.em-tech-shop .em-badge-popular     { background: #1d4ed8; }

/* Image */
.em-tech-shop .em-image-wrap {
    display: flex; align-items: center; justify-content: center;
    position: relative; width: 100%;
    aspect-ratio: 3/2; max-height: 260px;
    background: #f7f8fa;
    border-bottom: 1px solid var(--em-border);
    padding: 20px; box-sizing: border-box;
    overflow: hidden; text-decoration: none;
    flex-shrink: 0;
}
.em-tech-shop .em-image-wrap img {
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
    object-fit: contain; display: block !important;
    transition: transform 0.3s ease;
}
.em-tech-shop .em-card:hover .em-image-wrap img { transform: scale(1.05); }

/* Card body */
.em-tech-shop .em-card-body {
    display: flex; flex-direction: column; align-items: center;
    flex: 1; padding: 16px 16px 16px;
    gap: 6px; text-align: center;
    color: #111827 !important;
}

/* Brand */
.em-tech-shop .em-brand {
    font-size: 11px; font-weight: 700;
    color: #6b7280 !important; text-transform: uppercase;
    letter-spacing: 0.06em; text-align: center; width: 100%;
}

/* Title */
.em-tech-shop .em-title {
    font-size: 13.5px; font-weight: 700; color: #111827 !important;
    line-height: 1.35; text-decoration: none !important; text-align: center; width: 100%;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.em-tech-shop .em-title:hover { color: #0c1832 !important; text-decoration: underline !important; }

/* Spec chips */
.em-tech-shop .em-chips { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; width: 100%; }
.em-tech-shop .em-chip {
    display: inline-flex; align-items: center;
    padding: 2px 7px; border-radius: 4px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.02em;
    white-space: nowrap;
}
.em-tech-shop .em-chip-ram     { background: #eff6ff !important; color: #1d4ed8 !important; border: 1px solid #bfdbfe; }
.em-tech-shop .em-chip-storage { background: #f0fdf4 !important; color: #15803d !important; border: 1px solid #bbf7d0; }
.em-tech-shop .em-chip-os      { background: #f5f3ff !important; color: #6d28d9 !important; border: 1px solid #ddd6fe; }

/* Benefit */
.em-tech-shop .em-benefit {
    font-size: 12px; color: #6b7280 !important; line-height: 1.4;
    margin: 0; font-style: italic; text-align: center; width: 100%;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Price block */
.em-tech-shop .em-price-block { margin-top: 2px; text-align: center; width: 100%; }
.em-tech-shop .em-price {
    font-size: 26px; font-weight: 800; color: #0c1832 !important; line-height: 1.1;
    margin-top: 6px;
}
.em-tech-shop .em-price del .woocommerce-Price-amount {
    font-size: 15px; font-weight: 500; color: #6b7280 !important;
}
.em-tech-shop .em-price ins { text-decoration: none; }
.em-tech-shop .em-price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit !important; }
.em-tech-shop .em-exvat {
    font-size: 11px; color: #6b7280 !important; line-height: 1.3; margin-top: 2px;
}
.em-tech-shop .em-exvat span { font-weight: 500; }
.em-tech-shop .em-exvat .woocommerce-Price-amount { font-size: inherit; font-weight: 600; }

/* Urgency */
.em-tech-shop .em-urgency {
    font-size: 11px; font-weight: 700;
    color: #b45309; background: #fffbeb;
    padding: 3px 8px; border-radius: 5px;
    border: 1px solid #fde68a;
    display: inline-block; width: fit-content; text-align: center;
}

/* Fulfilment */
.em-tech-shop .em-fulfil {
    display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
    justify-content: center; width: 100%;
}
.em-tech-shop .em-stock {
    font-size: 11px; font-weight: 700; padding: 2px 7px;
    border-radius: 4px; display: inline-block; flex-shrink: 0;
}
.em-tech-shop .em-stock-high     { background: #ecfdf5; color: #047857; }
.em-tech-shop .em-stock-low      { background: #fffbeb; color: #b45309; }
.em-tech-shop .em-stock-critical { background: #fef2f2; color: #dc2626; font-weight: 800; }
.em-tech-shop .em-stock-out      { background: #fef2f2; color: #dc2626; }

.em-tech-shop .em-delivery { font-size: 11px; color: #6b7280; line-height: 1.3; }
.em-tech-shop .em-delivery.em-delivery-urgent { font-weight: 700; color: #b45309; }
.em-tech-shop .em-delivery.em-delivery-prominent {
    font-size: 12px; font-weight: 700;
    color: #047857;
    display: block; width: 100%; text-align: center;
    margin-top: 2px;
}
.em-tech-shop .em-delivery.em-delivery-prominent.em-delivery-urgent {
    color: #b45309;
}

/* CTA block */
.em-tech-shop .em-cta {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--em-border);
    display: flex; flex-direction: column; gap: 5px;
    width: 100%; align-items: center;
}

/* Add to Basket — full-width, prominent navy */
.em-tech-shop .em-add,
body .em-tech-shop .em-add,
.em-tech-shop .em-add:link,
.em-tech-shop .em-add:visited {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    width: 100% !important;
    padding: 14px 16px !important;
    background: var(--em-navy) !important;
    background-color: var(--em-navy) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background 0.15s !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}
.em-tech-shop .em-add:hover,
body .em-tech-shop .em-add:hover {
    background: var(--em-navy-dk) !important;
    background-color: var(--em-navy-dk) !important;
}
.em-tech-shop .em-add.em-add-oos {
    background: #9ca3af !important;
    background-color: #9ca3af !important;
}
.em-tech-shop .em-add svg { fill: #fff; flex-shrink: 0; }

/* View full details link */
.em-tech-shop .em-view-link {
    display: block; text-align: center;
    font-size: 12px; font-weight: 500;
    color: var(--em-muted); text-decoration: none;
    transition: color 0.12s; padding: 2px 0;
}
.em-tech-shop .em-view-link:hover { color: var(--em-navy); text-decoration: underline; }

/* No results */
.em-tech-shop .em-no-results {
    text-align: center; padding: 60px 20px; color: var(--em-muted);
    background: var(--em-card); border-radius: var(--em-radius);
    border: 1px solid var(--em-border);
}
.em-tech-shop .em-no-results p { font-size: 16px; margin-bottom: 16px; }
.em-tech-shop .em-btn-outline {
    padding: 10px 24px; border: 2px solid var(--em-navy);
    background: none; color: var(--em-navy); border-radius: 8px;
    font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.15s;
}
.em-tech-shop .em-btn-outline:hover { background: var(--em-navy); color: #fff; }

/* Section divider */
.em-tech-shop .em-section-divider {
    border: none; border-top: 1px solid var(--em-border);
    margin: 30px 0 26px; position: relative;
}
.em-tech-shop .em-section-divider::after {
    content: 'All Products'; position: absolute; top: -9px; left: 50%;
    transform: translateX(-50%); background: #fff;
    padding: 0 14px; font-size: 10px; font-weight: 800; color: var(--em-muted);
    letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}

/* View More */
.em-group-more-wrap { text-align: center; margin-top: 18px; }
.em-group-more-btn, .em-group-more-link {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 11px 26px; border-radius: 8px;
    border: 2px solid var(--em-navy); background: #fff; color: var(--em-navy);
    font-family: inherit; font-weight: 700; font-size: 14px;
    cursor: pointer; text-decoration: none; transition: all 0.15s;
}
.em-group-more-btn:hover, .em-group-more-link:hover { background: var(--em-navy); color: #fff; }

/* ===== MOBILE ===== */
@media (max-width: 991px) {
    .em-tech-shop {
        padding: 10px;
        box-sizing: border-box;
        max-width: 100%;
        overflow-x: hidden;
    }
    .em-tech-shop .em-filter-toggle { display: flex; }
    .em-tech-shop .em-sidebar {
        position: fixed; top: 0; left: -110%; width: 85%; max-width: 320px;
        height: 100vh; overflow-y: auto; z-index: 1000;
        background: #fff; transition: left 0.3s ease;
        border-radius: 0; border: none;
    }
    .em-tech-shop .em-sidebar.em-sidebar-open { left: 0; box-shadow: 4px 0 32px rgba(0,0,0,0.2); }
    .em-tech-shop .em-filter-close { display: block; }
    .em-tech-shop .em-filter-overlay {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5); z-index: 999; display: none;
    }
    .em-tech-shop .em-filter-overlay.active { display: block; }
    .em-tech-shop #em-products-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Phone: horizontal card layout */
@media (max-width: 600px) {
    .em-tech-shop .em-card {
        flex-direction: row !important;
        align-items: stretch !important;
    }
    .em-tech-shop .em-card.em-card-badged,
    .em-tech-shop .em-card.em-card-sale {
        border-top: none !important;
        border-left: 3px solid #0c1832 !important;
    }
    .em-tech-shop .em-card.em-card-sale {
        border-left-color: #dc2626 !important;
    }
    .em-tech-shop .em-image-wrap {
        width: 120px !important;
        min-width: 120px !important;
        max-width: 120px !important;
        height: auto !important;
        min-height: 100px !important;
        aspect-ratio: unset !important;
        max-height: none !important;
        border-bottom: none !important;
        border-right: 1px solid #e2e6ed !important;
        flex-shrink: 0 !important;
        padding: 12px !important;
    }
    .em-tech-shop .em-card-body {
        align-items: flex-start !important;
        text-align: left !important;
        padding: 10px 12px !important;
        flex: 1 !important;
        min-width: 0 !important;
        gap: 4px !important;
    }
    .em-tech-shop .em-brand {
        text-align: left !important;
        font-size: 10px !important;
    }
    .em-tech-shop .em-title {
        text-align: left !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #111827 !important;
    }
    .em-tech-shop .em-chips { justify-content: flex-start !important; }
    .em-tech-shop .em-benefit { display: none !important; }
    .em-tech-shop .em-price {
        font-size: 19px !important;
        margin-top: 2px !important;
        color: #0c1832 !important;
    }
    .em-tech-shop .em-price-block { text-align: left !important; }
    .em-tech-shop .em-fulfil { justify-content: flex-start !important; }
    .em-tech-shop .em-cta {
        padding-top: 6px !important;
        border-top: none !important;
        align-items: flex-start !important;
    }
    .em-tech-shop .em-add {
        font-size: 12px !important;
        padding: 9px 14px !important;
        width: auto !important;
    }
    .em-tech-shop .em-urgency { font-size: 10px !important; }
    .em-tech-shop .em-badge { top: 6px !important; left: 6px !important; font-size: 9px !important; }
    .em-tech-shop .em-sale-ribbon { font-size: 9px !important; padding: 3px 7px !important; }
    .em-tech-shop .em-section-title { font-size: 16px !important; }
    .em-tech-shop .em-price { font-size: 19px !important; }
}

.em-tech-shop .em-products-wrap { display: block; width: 100%; }
.em-tech-shop #em-products-container { width: 100%; }

/* Paranoia: override any orange from WooCommerce theme on our buttons */
.em-tech-shop .em-add,
.em-tech-shop .button.em-add,
.em-tech-shop a.em-add,
.em-tech-shop .add_to_cart_button.em-add {
    background: var(--em-navy) !important;
    background-color: var(--em-navy) !important;
}

/* ==========================================================================
   v2.9.16 clean retail shop updates
   ========================================================================== */
.em-tech-shop .em-shop-confidence{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
    margin:0 0 16px;
}
.em-tech-shop .em-shop-confidence > div{
    background:#fff;
    border:1px solid var(--em-border);
    border-radius:12px;
    padding:14px 16px;
    box-shadow:0 8px 22px rgba(12,24,50,.04);
}
.em-tech-shop .em-shop-confidence strong{
    display:block;
    margin:0 0 4px;
    color:var(--em-navy);
    font-size:14px;
    line-height:1.25;
}
.em-tech-shop .em-shop-confidence span{
    display:block;
    color:var(--em-muted);
    font-size:12px;
    line-height:1.45;
}
.em-tech-shop .em-shop-shortcuts{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:10px;
    margin:0 0 16px;
}
.em-tech-shop .em-shop-shortcut{
    display:block;
    background:#f8fafc;
    border:1px solid var(--em-border);
    border-radius:12px;
    padding:13px 14px;
    text-decoration:none !important;
    transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.em-tech-shop .em-shop-shortcut:hover{
    border-color:var(--em-navy);
    box-shadow:0 8px 22px rgba(12,24,50,.08);
    transform:translateY(-1px);
}
.em-tech-shop .em-shop-shortcut strong{
    display:block;
    color:var(--em-navy);
    font-size:13px;
    line-height:1.25;
    margin:0 0 4px;
}
.em-tech-shop .em-shop-shortcut span{
    display:block;
    color:var(--em-muted);
    font-size:11px;
    line-height:1.35;
}
.em-tech-shop .em-quick-filters{
    background:#fff;
    border:1px solid var(--em-border);
    border-radius:12px;
    padding:10px 12px;
    margin:0 0 12px;
}
.em-tech-shop .em-qf-label{
    color:var(--em-navy);
    font-size:12px;
}
.em-tech-shop .em-results-count{
    background:#f8fafc;
    border:1px solid var(--em-border);
    border-radius:10px;
    padding:10px 12px;
    font-size:13px;
    margin:0 0 16px;
}
.em-tech-shop .em-featured-section{
    margin-top:4px;
}
.em-tech-shop .em-section-title{
    font-size:22px;
    letter-spacing:-.02em;
}
.em-tech-shop .em-section-divider::after{
    content:'';
    display:none;
}
.em-tech-shop .em-section-divider{
    margin:26px 0 24px;
}
.em-tech-shop .em-card{
    border-radius:14px;
    box-shadow:0 8px 24px rgba(12,24,50,.04);
}
.em-tech-shop .em-card:hover{
    box-shadow:0 12px 30px rgba(12,24,50,.10);
    transform:translateY(-2px);
}
.em-tech-shop .em-image-wrap{
    background:#f8fafc;
    padding:22px;
}
.em-tech-shop .em-card-body{
    align-items:flex-start;
    text-align:left;
    gap:7px;
    padding:16px;
}
.em-tech-shop .em-brand,
.em-tech-shop .em-title,
.em-tech-shop .em-price-block{
    text-align:left;
}
.em-tech-shop .em-title{
    font-size:14px;
    line-height:1.35;
    min-height:38px;
    -webkit-line-clamp:2;
}
.em-tech-shop .em-chips{
    justify-content:flex-start;
    min-height:22px;
}
.em-tech-shop .em-card-reassurance{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#047857;
    background:#ecfdf5;
    border:1px solid #bbf7d0;
    border-radius:999px;
    padding:3px 8px;
    font-size:11px;
    font-weight:700;
    line-height:1.2;
}
.em-tech-shop .em-card-reassurance:before{
    content:'✓';
    font-weight:800;
}
.em-tech-shop .em-benefit{
    display:none;
}
.em-tech-shop .em-price{
    font-size:24px;
    margin-top:4px;
}
.em-tech-shop .em-inc-vat{
    display:block;
    margin-top:2px;
    color:var(--em-muted);
    font-size:11px;
    font-weight:600;
}
.em-tech-shop .em-fulfil{
    justify-content:flex-start;
    align-items:flex-start;
    gap:5px 7px;
}
.em-tech-shop .em-stock{
    border-radius:999px;
    padding:3px 8px;
}
.em-tech-shop .em-delivery.em-delivery-prominent{
    text-align:left;
    font-size:11px;
    margin-top:0;
    color:#6b7280;
    font-weight:600;
}
.em-tech-shop .em-delivery.em-delivery-prominent.em-delivery-urgent{
    color:#92400e;
}
.em-tech-shop .em-cta{
    border-top:0;
    padding-top:10px;
}
.em-tech-shop .em-add,
body .em-tech-shop .em-add,
.em-tech-shop .em-add:link,
.em-tech-shop .em-add:visited{
    min-height:42px;
    padding:11px 14px !important;
    font-size:13px !important;
    border-radius:10px !important;
    text-transform:none !important;
}
.em-tech-shop .em-add svg{
    width:15px;
    height:15px;
}
@media (max-width:1200px){
    .em-tech-shop .em-shop-shortcuts{grid-template-columns:repeat(3,minmax(0,1fr));}
    .em-tech-shop .em-shop-confidence{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:767px){
    .em-tech-shop .em-shop-shortcuts,
    .em-tech-shop .em-shop-confidence{grid-template-columns:1fr;}
    .em-tech-shop .em-shop-confidence > div,
    .em-tech-shop .em-shop-shortcut{padding:12px 14px;}
}
@media (max-width:600px){
    .em-tech-shop .em-card-body{text-align:left !important; align-items:flex-start !important;}
    .em-tech-shop .em-title{min-height:0;}
    .em-tech-shop .em-card-reassurance{font-size:10px;}
    .em-tech-shop .em-inc-vat{text-align:left;}
}

/* v2.9.17 simple retail shop overrides */
.em-tech-shop{--em-navy:#102442;--em-soft:#f6f8fb;--em-border:#dfe7ef;--em-text:#142033;--em-muted:#657386;}
.em-products-wrap{background:#fff;border-radius:18px;padding:14px;box-shadow:0 10px 28px rgba(15,23,42,.04);}
.em-results-count-friendly{font-size:14px!important;color:var(--em-muted)!important;text-align:center!important;margin:8px 0 18px!important;font-weight:600!important;}
.em-featured-section{padding:4px 0 20px;margin-bottom:18px;border-bottom:1px solid var(--em-border);}
.em-section-title{text-align:left!important;font-size:22px!important;line-height:1.25!important;color:var(--em-text)!important;font-weight:800!important;}
.em-section-head{align-items:center!important;margin:0 0 18px!important;}
.em-grid{gap:22px!important;}
.em-card{border:1px solid var(--em-border)!important;border-radius:16px!important;background:#fff!important;box-shadow:0 8px 24px rgba(15,23,42,.05)!important;overflow:hidden!important;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease!important;}
.em-card:hover{transform:translateY(-2px)!important;box-shadow:0 16px 34px rgba(15,23,42,.08)!important;border-color:#cbd7e4!important;}
.em-image-wrap{background:#f7f9fc!important;min-height:245px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:26px!important;border-bottom:1px solid #edf2f7!important;}
.em-image-wrap img{max-height:205px!important;width:auto!important;object-fit:contain!important;mix-blend-mode:multiply;}
.em-card-body{padding:18px!important;text-align:left!important;display:flex!important;flex-direction:column!important;min-height:230px!important;}
.em-brand{font-size:11px!important;letter-spacing:.08em!important;text-transform:uppercase!important;color:#7a8797!important;font-weight:800!important;margin:0 0 8px!important;text-align:center!important;}
.em-title{font-size:15px!important;line-height:1.35!important;font-weight:800!important;color:var(--em-text)!important;text-align:center!important;min-height:42px!important;margin:0 0 10px!important;text-decoration:none!important;}
.em-chips{display:flex!important;justify-content:center!important;flex-wrap:wrap!important;gap:6px!important;margin:0 0 10px!important;}
.em-chip{font-size:10px!important;font-weight:800!important;border-radius:999px!important;padding:5px 8px!important;background:#eef4fb!important;color:#17345d!important;border:1px solid #dce8f5!important;}
.em-benefit{display:none!important;}
.em-price-block{text-align:center!important;margin:4px 0 6px!important;}
.em-price,.em-price .woocommerce-Price-amount{font-size:24px!important;line-height:1.15!important;font-weight:900!important;color:var(--em-text)!important;}
.em-fulfil{display:grid!important;gap:3px!important;text-align:center!important;margin:2px 0 12px!important;font-size:12px!important;}
.em-stock{font-weight:800!important;color:#16803b!important;}
.em-delivery-prominent{color:#c46611!important;font-weight:700!important;font-size:11px!important;line-height:1.35!important;}
.em-cta{margin-top:auto!important;}
.em-add{width:100%!important;min-height:44px!important;border-radius:10px!important;background:var(--em-navy)!important;color:#fff!important;font-weight:900!important;font-size:13px!important;display:flex!important;align-items:center!important;justify-content:center!important;text-decoration:none!important;}
.em-add:hover{filter:brightness(1.08)!important;color:#fff!important;}
.em-sidebar{border-radius:14px!important;border:1px solid var(--em-border)!important;background:#fff!important;box-shadow:0 8px 24px rgba(15,23,42,.04)!important;}
.em-sidebar-header{background:var(--em-navy)!important;color:#fff!important;border-radius:14px 14px 0 0!important;}
.em-filter-block h4{color:var(--em-text)!important;font-weight:800!important;}
.em-quick-filters{border:1px solid var(--em-border)!important;background:#fff!important;border-radius:14px!important;padding:10px!important;margin-bottom:14px!important;}
.em-quick-filters a,.em-quick-filters button{border-radius:999px!important;background:#f6f8fb!important;border:1px solid #dfe7ef!important;color:#23364f!important;font-weight:800!important;}
@media(max-width:767px){.em-products-wrap{padding:10px}.em-image-wrap{min-height:210px!important}.em-card-body{min-height:auto!important}.em-title{min-height:0!important}.em-section-title{text-align:center!important}}

/* v2.9.18 final alignment override */
.em-tech-shop{--em-navy:#102442;--em-soft:#f6f8fb;--em-border:#dfe7ef;--em-text:#142033;--em-muted:#657386;}
.em-products-wrap{background:#fff!important;border-radius:18px!important;padding:16px!important;box-shadow:0 10px 28px rgba(15,23,42,.04)!important;}
.em-results-count-friendly{text-align:left!important;margin:8px 0 18px!important;}
.em-section-title{text-align:left!important;font-size:22px!important;color:var(--em-text)!important;font-weight:800!important;margin:0!important;}
.em-grid{gap:22px!important;align-items:stretch!important;}
.em-card{display:flex!important;flex-direction:column!important;height:100%!important;border:1px solid var(--em-border)!important;border-radius:16px!important;background:#fff!important;box-shadow:0 8px 24px rgba(15,23,42,.05)!important;overflow:hidden!important;}
.em-card:hover{transform:translateY(-2px)!important;box-shadow:0 16px 34px rgba(15,23,42,.08)!important;border-color:#cbd7e4!important;}
.em-card.em-card-badged,.em-card.em-card-sale{border-top-width:1px!important;}
.em-badge{top:10px!important;left:10px!important;border-radius:6px!important;padding:5px 9px!important;font-size:10px!important;line-height:1!important;}
.em-sale-ribbon{top:10px!important;right:10px!important;border-radius:6px!important;padding:5px 9px!important;font-size:10px!important;line-height:1!important;}
.em-image-wrap{background:#f7f9fc!important;min-height:245px!important;height:245px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:26px!important;border-bottom:1px solid #edf2f7!important;}
.em-image-wrap img{max-height:205px!important;max-width:100%!important;width:auto!important;height:auto!important;object-fit:contain!important;mix-blend-mode:multiply;}
.em-card-body{padding:18px!important;text-align:left!important;display:flex!important;flex-direction:column!important;align-items:stretch!important;gap:0!important;min-height:255px!important;flex:1!important;}
.em-brand{font-size:11px!important;letter-spacing:.08em!important;text-transform:uppercase!important;color:#7a8797!important;font-weight:800!important;margin:0 0 8px!important;text-align:left!important;width:100%!important;line-height:1.2!important;min-height:14px!important;}
.em-title{font-size:15px!important;line-height:1.35!important;font-weight:800!important;color:var(--em-text)!important;text-align:left!important;min-height:42px!important;margin:0 0 10px!important;text-decoration:none!important;width:100%!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}
.em-chips{display:flex!important;justify-content:flex-start!important;align-items:flex-start!important;flex-wrap:wrap!important;gap:6px!important;margin:0 0 12px!important;min-height:26px!important;width:100%!important;}
.em-chip{font-size:10px!important;font-weight:800!important;border-radius:999px!important;padding:5px 8px!important;background:#eef4fb!important;color:#17345d!important;border:1px solid #dce8f5!important;line-height:1!important;}
.em-benefit{display:none!important;}
.em-price-block{text-align:left!important;margin:2px 0 8px!important;width:100%!important;}
.em-price,.em-price .woocommerce-Price-amount{font-size:25px!important;line-height:1.15!important;font-weight:900!important;color:var(--em-text)!important;}
.em-inc-vat,.em-exvat{display:block!important;margin-top:3px!important;color:var(--em-muted)!important;font-size:11px!important;font-weight:600!important;text-align:left!important;}
.em-fulfil{display:grid!important;gap:4px!important;text-align:left!important;margin:0 0 12px!important;font-size:12px!important;width:100%!important;}
.em-stock{display:inline-flex!important;width:fit-content!important;font-weight:800!important;color:#047857!important;background:#ecfdf5!important;border:1px solid #bbf7d0!important;border-radius:999px!important;padding:3px 8px!important;line-height:1.2!important;}
.em-delivery-prominent{display:block!important;color:#c46611!important;font-weight:700!important;font-size:11px!important;line-height:1.35!important;text-align:left!important;margin:0!important;}
.em-cta{margin-top:auto!important;width:100%!important;border-top:0!important;padding-top:8px!important;}
.em-add{width:100%!important;min-height:44px!important;border-radius:10px!important;background:var(--em-navy)!important;color:#fff!important;font-weight:900!important;font-size:13px!important;display:flex!important;align-items:center!important;justify-content:center!important;text-align:center!important;text-decoration:none!important;}
@media(max-width:767px){.em-products-wrap{padding:10px!important}.em-image-wrap{min-height:210px!important;height:210px!important}.em-card-body{min-height:auto!important}.em-title{min-height:0!important}.em-section-title{text-align:left!important}}

/* ========================================================================== 
   EM Tech Shop v2.9.19 - clean Currys-style retail catalogue overrides
   ========================================================================== */
.em-tech-shop{background:#fff!important;padding:18px!important;}
.em-tech-shop .em-shop-layout{grid-template-columns:220px minmax(0,1fr)!important;gap:18px!important;max-width:1280px!important;margin:0 auto!important;}
.em-tech-shop .em-products-wrap{background:#fff!important;border:1px solid #edf1f5!important;border-radius:14px!important;padding:14px!important;}

.em-tech-shop .em-shop-entry{background:#fff!important;border:1px solid #e5e7eb!important;border-radius:16px!important;padding:20px!important;margin:0 0 14px!important;box-shadow:0 8px 24px rgba(15,23,42,.035)!important;}
.em-tech-shop .em-shop-entry-head{display:flex!important;align-items:flex-end!important;justify-content:space-between!important;gap:20px!important;margin:0 0 16px!important;text-align:left!important;}
.em-tech-shop .em-shop-entry-head h2{margin:0!important;font-size:22px!important;line-height:1.2!important;color:#111827!important;font-weight:800!important;text-align:left!important;}
.em-tech-shop .em-shop-entry-head p{margin:0!important;font-size:14px!important;line-height:1.55!important;color:#6b7280!important;max-width:560px!important;text-align:left!important;}
.em-tech-shop .em-category-tiles{display:grid!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:10px!important;}
.em-tech-shop .em-category-tile{display:flex!important;flex-direction:column!important;justify-content:center!important;min-height:82px!important;padding:14px!important;border:1px solid #e5e7eb!important;border-radius:12px!important;background:#f8fafc!important;text-decoration:none!important;text-align:left!important;transition:background .16s ease,border-color .16s ease,transform .16s ease!important;}
.em-tech-shop .em-category-tile:hover{background:#eef4fb!important;border-color:#cbd7e4!important;transform:translateY(-1px)!important;}
.em-tech-shop .em-category-tile strong{font-size:14px!important;line-height:1.2!important;color:#111827!important;font-weight:800!important;margin:0 0 5px!important;}
.em-tech-shop .em-category-tile span{font-size:12px!important;line-height:1.35!important;color:#6b7280!important;}
.em-tech-shop .em-shop-trust-strip{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:8px!important;margin:0 0 14px!important;}
.em-tech-shop .em-shop-trust-strip span{position:relative!important;padding:11px 12px 11px 32px!important;border:1px solid #dcfce7!important;border-radius:10px!important;background:#f0fdf4!important;color:#166534!important;font-size:13px!important;font-weight:700!important;text-align:left!important;}
.em-tech-shop .em-shop-trust-strip span:before{content:'✓'!important;position:absolute!important;left:12px!important;top:50%!important;transform:translateY(-50%)!important;color:#16a34a!important;font-weight:900!important;}

.em-tech-shop .em-quick-filters{justify-content:flex-start!important;align-items:center!important;gap:7px!important;background:#fff!important;border:1px solid #e5e7eb!important;border-radius:12px!important;padding:10px!important;margin:0 0 14px!important;overflow:auto!important;}
.em-tech-shop .em-qf-label{font-size:12px!important;font-weight:800!important;color:#374151!important;text-transform:none!important;white-space:nowrap!important;}
.em-tech-shop .em-qf-pill{border:1px solid #e5e7eb!important;border-radius:999px!important;background:#f8fafc!important;color:#374151!important;padding:7px 11px!important;font-size:12px!important;font-weight:700!important;white-space:nowrap!important;}
.em-tech-shop .em-qf-pill:hover,.em-tech-shop .em-qf-active{background:#0c1832!important;border-color:#0c1832!important;color:#fff!important;}
.em-tech-shop .em-results-count{font-size:13px!important;color:#6b7280!important;text-align:left!important;margin:0 0 16px!important;}
.em-tech-shop .em-section-title{text-align:left!important;font-size:22px!important;line-height:1.25!important;font-weight:800!important;margin:0 0 16px!important;color:#111827!important;}
.em-tech-shop .em-featured-section{margin:0 0 22px!important;}
.em-tech-shop .em-section-divider{height:1px!important;background:#edf1f5!important;margin:6px 0 22px!important;}
.em-tech-shop .em-section-head{align-items:center!important;border:none!important;margin:0 0 16px!important;padding:0!important;}
.em-tech-shop .em-sort-select{height:38px!important;border:1px solid #e5e7eb!important;border-radius:9px!important;background:#fff!important;color:#374151!important;font-size:13px!important;font-weight:600!important;padding:0 30px 0 10px!important;}

.em-tech-shop .em-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:18px!important;align-items:stretch!important;}
.em-tech-shop .em-card{display:flex!important;flex-direction:column!important;height:100%!important;background:#fff!important;border:1px solid #e5e7eb!important;border-radius:14px!important;box-shadow:0 6px 18px rgba(15,23,42,.035)!important;overflow:hidden!important;transition:box-shadow .16s ease,border-color .16s ease,transform .16s ease!important;}
.em-tech-shop .em-card:hover{transform:translateY(-2px)!important;border-color:#cbd7e4!important;box-shadow:0 14px 28px rgba(15,23,42,.075)!important;}
.em-tech-shop .em-card.em-card-badged,.em-tech-shop .em-card.em-card-sale{border-top-width:1px!important;}
.em-tech-shop .em-image-wrap{position:relative!important;display:flex!important;align-items:center!important;justify-content:center!important;width:100%!important;height:230px!important;min-height:230px!important;padding:20px!important;background:#f8fafc!important;text-align:center!important;border-bottom:1px solid #edf1f5!important;}
.em-tech-shop .em-image-wrap img{display:block!important;max-width:100%!important;max-height:190px!important;width:auto!important;height:auto!important;object-fit:contain!important;margin:0 auto!important;transform:none!important;}
.em-tech-shop .em-card:hover .em-image-wrap img{transform:none!important;}
.em-tech-shop .em-badge{position:absolute!important;top:10px!important;left:10px!important;right:auto!important;display:inline-flex!important;align-items:center!important;width:auto!important;max-width:calc(100% - 20px)!important;padding:5px 8px!important;border-radius:5px!important;background:#0c1832!important;color:#fff!important;font-size:10px!important;font-weight:800!important;line-height:1!important;letter-spacing:.02em!important;text-transform:uppercase!important;box-shadow:none!important;}
.em-tech-shop .em-sale-ribbon{display:none!important;}
.em-tech-shop .em-card-body{display:flex!important;flex-direction:column!important;align-items:stretch!important;text-align:left!important;padding:16px!important;min-height:210px!important;flex:1!important;gap:0!important;}
.em-tech-shop .em-brand{display:block!important;text-align:left!important;font-size:10px!important;line-height:1.2!important;font-weight:800!important;letter-spacing:.06em!important;text-transform:uppercase!important;color:#6b7280!important;margin:0 0 8px!important;min-height:12px!important;}
.em-tech-shop .em-title{display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;text-align:left!important;color:#111827!important;text-decoration:none!important;font-size:14px!important;line-height:1.35!important;font-weight:800!important;margin:0 0 12px!important;min-height:38px!important;}
.em-tech-shop .em-title:hover{color:#0c1832!important;text-decoration:underline!important;}
.em-tech-shop .em-chips,.em-tech-shop .em-chip,.em-tech-shop .em-card-reassurance,.em-tech-shop .em-benefit{display:none!important;}
.em-tech-shop .em-price-block{margin:0 0 10px!important;text-align:left!important;}
.em-tech-shop .em-price,.em-tech-shop .em-price .woocommerce-Price-amount,.em-tech-shop .em-temp-live-price{display:block!important;text-align:left!important;color:#111827!important;font-size:22px!important;line-height:1.1!important;font-weight:900!important;margin:0!important;}
.em-tech-shop .em-temp-was-price{display:block!important;text-align:left!important;color:#6b7280!important;font-size:12px!important;text-decoration:line-through!important;margin:0 0 3px!important;}
.em-tech-shop .em-temp-cut-note{display:none!important;}
.em-tech-shop .em-fulfil{display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:3px!important;margin:0 0 12px!important;min-height:42px!important;text-align:left!important;}
.em-tech-shop .em-stock{display:block!important;text-align:left!important;background:transparent!important;border:none!important;padding:0!important;margin:0!important;font-size:12px!important;line-height:1.35!important;font-weight:800!important;color:#059669!important;}
.em-tech-shop .em-stock-low,.em-tech-shop .em-stock-critical{color:#b45309!important;}
.em-tech-shop .em-stock-out{color:#dc2626!important;}
.em-tech-shop .em-delivery{display:block!important;text-align:left!important;background:transparent!important;border:none!important;padding:0!important;margin:0!important;font-size:11px!important;line-height:1.35!important;color:#b45309!important;font-weight:700!important;}
.em-tech-shop .em-cta{margin:auto 0 0!important;width:100%!important;}
.em-tech-shop .em-add{display:flex!important;align-items:center!important;justify-content:center!important;width:100%!important;min-height:44px!important;border-radius:9px!important;background:#0c1832!important;color:#fff!important;text-decoration:none!important;font-size:13px!important;font-weight:800!important;line-height:1!important;border:none!important;padding:12px!important;margin:0!important;}
.em-tech-shop .em-add:hover{background:#091428!important;color:#fff!important;}
.em-tech-shop .em-add svg{width:15px!important;height:15px!important;margin-right:7px!important;}
.em-tech-shop .em-add-oos{background:#6b7280!important;}

@media(max-width:1199px){
  .em-tech-shop .em-category-tiles{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media(max-width:991px){
  .em-tech-shop .em-shop-layout{display:block!important;}
  .em-tech-shop .em-products-wrap{padding:12px!important;}
  .em-tech-shop .em-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:767px){
  .em-tech-shop{padding:10px!important;}
  .em-tech-shop .em-shop-entry{padding:15px!important;}
  .em-tech-shop .em-shop-entry-head{display:block!important;}
  .em-tech-shop .em-shop-entry-head h2{font-size:20px!important;margin-bottom:6px!important;}
  .em-tech-shop .em-category-tiles{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .em-tech-shop .em-shop-trust-strip{grid-template-columns:1fr!important;}
  .em-tech-shop .em-grid{grid-template-columns:1fr!important;}
  .em-tech-shop .em-image-wrap{height:220px!important;min-height:220px!important;}
  .em-tech-shop .em-card-body{min-height:auto!important;}
  .em-tech-shop .em-section-head{display:block!important;}
  .em-tech-shop .em-sort-select{width:100%!important;margin-top:10px!important;}
}

/* ==========================================================================
   EM Tech Shop v2.9.20 - Currys-inspired storefront pass
   Goal: full-width storefront feel, guided sections, consistent retail cards.
   ========================================================================== */
body .em-tech-shop{
    width:100vw!important;
    max-width:none!important;
    margin-left:calc(50% - 50vw)!important;
    margin-right:calc(50% - 50vw)!important;
    padding:26px clamp(16px,3vw,48px) 34px!important;
    background:#f7f8fb!important;
    box-sizing:border-box!important;
}
body .em-tech-shop .em-shop-layout{
    width:100%!important;
    max-width:1540px!important;
    margin:0 auto!important;
    grid-template-columns:220px minmax(0,1fr)!important;
    gap:22px!important;
}
body .em-tech-shop .em-products-wrap{
    background:transparent!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
    padding:0!important;
}
body .em-tech-shop .em-shop-home{
    display:grid!important;
    gap:18px!important;
    margin:0 0 20px!important;
}
body .em-tech-shop .em-shop-hero-panels{
    display:grid!important;
    grid-template-columns:1.25fr 1fr 1fr!important;
    gap:18px!important;
}
body .em-tech-shop .em-hero-panel{
    min-height:190px!important;
    display:flex!important;
    flex-direction:column!important;
    justify-content:flex-end!important;
    text-decoration:none!important;
    border-radius:20px!important;
    padding:24px!important;
    background:linear-gradient(135deg,#ffffff 0%,#eef4fb 100%)!important;
    border:1px solid #e0e7f0!important;
    box-shadow:0 12px 32px rgba(15,23,42,.06)!important;
    color:#111827!important;
    overflow:hidden!important;
    position:relative!important;
}
body .em-tech-shop .em-hero-panel:before{
    content:""!important;
    position:absolute!important;
    right:-42px!important;
    top:-42px!important;
    width:150px!important;
    height:150px!important;
    border-radius:999px!important;
    background:rgba(27,47,76,.08)!important;
}
body .em-tech-shop .em-hero-panel-primary{
    background:linear-gradient(135deg,#1b2f4c 0%,#31557d 100%)!important;
    color:#fff!important;
}
body .em-tech-shop .em-hero-panel-primary:before{background:rgba(255,255,255,.12)!important;}
body .em-tech-shop .em-hero-kicker{
    display:inline-flex!important;
    width:max-content!important;
    margin:0 0 8px!important;
    padding:6px 10px!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.75)!important;
    color:#1b2f4c!important;
    font-size:12px!important;
    line-height:1!important;
    font-weight:800!important;
}
body .em-tech-shop .em-hero-panel-primary .em-hero-kicker{background:rgba(255,255,255,.16)!important;color:#fff!important;}
body .em-tech-shop .em-hero-panel strong{
    display:block!important;
    max-width:420px!important;
    font-size:30px!important;
    line-height:1.05!important;
    font-weight:900!important;
    letter-spacing:-.03em!important;
    margin:0 0 8px!important;
    color:inherit!important;
}
body .em-tech-shop .em-hero-panel:not(.em-hero-panel-primary) strong{font-size:24px!important;}
body .em-tech-shop .em-hero-panel small{
    display:block!important;
    max-width:390px!important;
    font-size:14px!important;
    line-height:1.45!important;
    color:inherit!important;
    opacity:.82!important;
}
body .em-tech-shop .em-shop-entry{
    background:#fff!important;
    border:1px solid #e5e7eb!important;
    border-radius:20px!important;
    padding:22px!important;
    margin:0!important;
    box-shadow:0 10px 28px rgba(15,23,42,.045)!important;
}
body .em-tech-shop .em-shop-entry-head h2{
    font-size:24px!important;
    letter-spacing:-.02em!important;
}
body .em-tech-shop .em-category-tiles{
    display:grid!important;
    grid-template-columns:repeat(6,minmax(0,1fr))!important;
    gap:14px!important;
}
body .em-tech-shop .em-category-tile{
    min-height:118px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    gap:6px!important;
    padding:16px 12px!important;
    border-radius:18px!important;
    background:#f8fafc!important;
    border:1px solid #e5e7eb!important;
    color:#111827!important;
    text-decoration:none!important;
    transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease!important;
}
body .em-tech-shop .em-category-tile:hover{
    transform:translateY(-2px)!important;
    border-color:#cbd5e1!important;
    box-shadow:0 12px 24px rgba(15,23,42,.07)!important;
}
body .em-tech-shop .em-category-icon{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:44px!important;
    height:44px!important;
    border-radius:999px!important;
    background:#fff!important;
    box-shadow:0 4px 14px rgba(15,23,42,.06)!important;
    font-size:22px!important;
    line-height:1!important;
}
body .em-tech-shop .em-category-tile strong{
    font-size:14px!important;
    line-height:1.15!important;
    font-weight:800!important;
    color:#111827!important;
}
body .em-tech-shop .em-category-tile span:not(.em-category-icon){
    font-size:11px!important;
    line-height:1.3!important;
    color:#64748b!important;
}
body .em-tech-shop .em-shop-trust-strip{
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:12px!important;
    margin:0!important;
}
body .em-tech-shop .em-shop-trust-strip span{
    background:#eafaf1!important;
    border:1px solid #c9f0da!important;
    border-radius:14px!important;
    padding:12px 14px!important;
    text-align:center!important;
    color:#14532d!important;
    font-size:13px!important;
    font-weight:800!important;
}
body .em-tech-shop .em-shop-trust-strip span:before{content:"✓ ";}
body .em-tech-shop .em-quick-filters{
    background:#fff!important;
    border-radius:16px!important;
    padding:12px 14px!important;
    overflow-x:auto!important;
    scrollbar-width:thin!important;
}
body .em-tech-shop .em-results-count-friendly{
    background:#fff!important;
    border:1px solid #e5e7eb!important;
    border-radius:14px!important;
    padding:13px 16px!important;
    margin:0 0 18px!important;
    font-size:13px!important;
    color:#475569!important;
}
body .em-tech-shop .em-featured-section,
body .em-tech-shop .em-regular-section{
    background:#fff!important;
    border:1px solid #e5e7eb!important;
    border-radius:20px!important;
    padding:22px!important;
    margin:0 0 24px!important;
    box-shadow:0 10px 28px rgba(15,23,42,.045)!important;
}
body .em-tech-shop .em-section-title{
    font-size:24px!important;
    letter-spacing:-.02em!important;
    margin:0 0 18px!important;
}
body .em-tech-shop .em-grid{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:18px!important;
}
body .em-tech-shop .em-card{
    border-radius:16px!important;
    border:1px solid #e5e7eb!important;
    box-shadow:none!important;
    background:#fff!important;
}
body .em-tech-shop .em-card:hover{
    box-shadow:0 14px 30px rgba(15,23,42,.075)!important;
}
body .em-tech-shop .em-image-wrap{
    height:210px!important;
    min-height:210px!important;
    background:#f7f8fb!important;
    border-bottom:1px solid #edf1f5!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:20px!important;
}
body .em-tech-shop .em-image-wrap img{
    max-width:100%!important;
    max-height:170px!important;
    object-fit:contain!important;
    margin:0 auto!important;
}
body .em-tech-shop .em-card-body{
    min-height:218px!important;
    padding:16px!important;
    text-align:left!important;
}
body .em-tech-shop .em-brand{
    text-align:left!important;
    font-size:10px!important;
    letter-spacing:.08em!important;
    color:#64748b!important;
    text-transform:uppercase!important;
    margin:0 0 8px!important;
}
body .em-tech-shop .em-title{
    text-align:left!important;
    font-size:14px!important;
    line-height:1.35!important;
    min-height:56px!important;
    margin:0 0 10px!important;
    color:#111827!important;
    font-weight:800!important;
}
body .em-tech-shop .em-price-block,
body .em-tech-shop .em-price,
body .em-tech-shop .em-price .woocommerce-Price-amount{
    text-align:left!important;
    font-size:23px!important;
    line-height:1.1!important;
    font-weight:900!important;
    color:#111827!important;
    margin:0!important;
}
body .em-tech-shop .em-fulfil{
    margin:10px 0 14px!important;
    min-height:34px!important;
    align-items:flex-start!important;
    text-align:left!important;
}
body .em-tech-shop .em-stock,
body .em-tech-shop .em-delivery{
    justify-content:flex-start!important;
    text-align:left!important;
}
body .em-tech-shop .em-delivery{font-size:11px!important;color:#b45309!important;}
body .em-tech-shop .em-add{
    min-height:42px!important;
    border-radius:10px!important;
    font-weight:800!important;
}
body .em-tech-shop .em-section-divider{display:none!important;}
body .em-tech-shop .em-pagination{margin:10px 0 0!important;}
@media(max-width:1320px){
    body .em-tech-shop .em-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
    body .em-tech-shop .em-category-tiles{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media(max-width:991px){
    body .em-tech-shop .em-shop-layout{display:block!important;}
    body .em-tech-shop .em-shop-hero-panels{grid-template-columns:1fr!important;}
    body .em-tech-shop .em-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
    body .em-tech-shop .em-category-tiles{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
    body .em-tech-shop .em-shop-trust-strip{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:640px){
    body .em-tech-shop{padding:18px 12px 24px!important;}
    body .em-tech-shop .em-grid{grid-template-columns:1fr!important;}
    body .em-tech-shop .em-category-tiles{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
    body .em-tech-shop .em-shop-trust-strip{grid-template-columns:1fr!important;}
    body .em-tech-shop .em-hero-panel strong{font-size:24px!important;}
}

/* ========================================================================== 
   EM Tech Shop v2.9.21 - bespoke professional storefront with real category imagery
   ========================================================================== */
body .em-tech-shop{
    background:linear-gradient(180deg,#f5f7fb 0%,#ffffff 58%)!important;
    padding:34px clamp(18px,3.2vw,56px) 42px!important;
}
body .em-tech-shop .em-shop-layout{
    max-width:1680px!important;
    grid-template-columns:1fr!important;
    gap:0!important;
}
body .em-tech-shop .em-sidebar{
    display:none!important;
}
body .em-tech-shop #em-products-container,
body .em-tech-shop #em-products-container-inner,
body .em-tech-shop .em-products-wrap{
    width:100%!important;
    max-width:100%!important;
}
body .em-tech-shop .em-storefront-hero{
    display:grid!important;
    grid-template-columns:minmax(360px,.9fr) minmax(0,1.35fr)!important;
    gap:22px!important;
    margin:0 0 22px!important;
}
body .em-tech-shop .em-storefront-copy{
    min-height:360px!important;
    display:flex!important;
    flex-direction:column!important;
    justify-content:center!important;
    padding:38px!important;
    border-radius:28px!important;
    background:linear-gradient(135deg,#102442 0%,#1b3a62 58%,#2f5f8d 100%)!important;
    color:#fff!important;
    box-shadow:0 24px 55px rgba(16,36,66,.18)!important;
    position:relative!important;
    overflow:hidden!important;
}
body .em-tech-shop .em-storefront-copy:after{
    content:""!important;
    position:absolute!important;
    right:-90px!important;
    top:-90px!important;
    width:260px!important;
    height:260px!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.10)!important;
}
body .em-tech-shop .em-storefront-kicker{
    width:max-content!important;
    display:inline-flex!important;
    margin:0 0 14px!important;
    padding:8px 12px!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.14)!important;
    color:#fff!important;
    font-size:13px!important;
    line-height:1!important;
    font-weight:850!important;
    letter-spacing:.02em!important;
}
body .em-tech-shop .em-storefront-copy h2{
    margin:0 0 14px!important;
    max-width:680px!important;
    color:#fff!important;
    font-size:clamp(34px,4.2vw,62px)!important;
    line-height:.98!important;
    letter-spacing:-.055em!important;
    font-weight:950!important;
}
body .em-tech-shop .em-storefront-copy p{
    margin:0!important;
    max-width:620px!important;
    color:rgba(255,255,255,.82)!important;
    font-size:17px!important;
    line-height:1.6!important;
    font-weight:500!important;
}
body .em-tech-shop .em-storefront-actions{
    display:flex!important;
    flex-wrap:wrap!important;
    gap:12px!important;
    margin-top:26px!important;
}
body .em-tech-shop .em-storefront-btn,
body .em-tech-shop .em-storefront-link{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    min-height:46px!important;
    padding:0 18px!important;
    border-radius:999px!important;
    text-decoration:none!important;
    font-size:14px!important;
    font-weight:850!important;
}
body .em-tech-shop .em-storefront-btn{background:#fff!important;color:#102442!important;}
body .em-tech-shop .em-storefront-link{background:rgba(255,255,255,.12)!important;color:#fff!important;border:1px solid rgba(255,255,255,.24)!important;}
body .em-tech-shop .em-storefront-feature-grid{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:18px!important;
}
body .em-tech-shop .em-storefront-feature{
    min-height:360px!important;
    display:flex!important;
    align-items:flex-end!important;
    position:relative!important;
    overflow:hidden!important;
    border-radius:28px!important;
    background:#e9eef6!important;
    border:1px solid #e2e8f0!important;
    text-decoration:none!important;
    box-shadow:0 18px 45px rgba(15,23,42,.09)!important;
}
body .em-tech-shop .em-storefront-feature img{
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    object-fit:contain!important;
    padding:28px!important;
    box-sizing:border-box!important;
    filter:drop-shadow(0 18px 26px rgba(15,23,42,.12))!important;
    transform:scale(1.02)!important;
}
body .em-tech-shop .em-storefront-feature:before{
    content:""!important;
    position:absolute!important;
    inset:0!important;
    background:linear-gradient(180deg,rgba(255,255,255,.2) 0%,rgba(255,255,255,.3) 45%,rgba(16,36,66,.88) 100%)!important;
    z-index:1!important;
}
body .em-tech-shop .em-storefront-feature span{
    position:relative!important;
    z-index:2!important;
    display:block!important;
    padding:22px!important;
    color:#fff!important;
}
body .em-tech-shop .em-storefront-feature strong{
    display:block!important;
    margin:0 0 6px!important;
    color:#fff!important;
    font-size:23px!important;
    line-height:1.06!important;
    font-weight:950!important;
    letter-spacing:-.035em!important;
}
body .em-tech-shop .em-storefront-feature small{
    display:block!important;
    color:rgba(255,255,255,.84)!important;
    font-size:13px!important;
    line-height:1.4!important;
    font-weight:650!important;
}
body .em-tech-shop .em-shop-entry-bespoke,
body .em-tech-shop .em-featured-section,
body .em-tech-shop .em-regular-section{
    border-radius:26px!important;
    border:1px solid #e3e9f2!important;
    background:rgba(255,255,255,.96)!important;
    box-shadow:0 18px 45px rgba(15,23,42,.065)!important;
    padding:26px!important;
}
body .em-tech-shop .em-shop-entry-bespoke{margin:0 0 18px!important;}
body .em-tech-shop .em-shop-entry-head h2,
body .em-tech-shop .em-section-title{
    color:#111827!important;
    font-size:28px!important;
    line-height:1.1!important;
    font-weight:950!important;
    letter-spacing:-.035em!important;
}
body .em-tech-shop .em-shop-entry-head p{
    max-width:650px!important;
    color:#64748b!important;
    font-size:14px!important;
    line-height:1.55!important;
}
body .em-tech-shop .em-category-tiles-photo{
    grid-template-columns:repeat(6,minmax(0,1fr))!important;
    gap:16px!important;
}
body .em-tech-shop .em-category-photo-tile{
    min-height:210px!important;
    align-items:stretch!important;
    justify-content:flex-start!important;
    padding:0!important;
    overflow:hidden!important;
    background:#fff!important;
    border-radius:20px!important;
    border:1px solid #e2e8f0!important;
    box-shadow:0 10px 26px rgba(15,23,42,.045)!important;
    text-align:left!important;
}
body .em-tech-shop .em-category-photo-tile:hover{
    transform:translateY(-3px)!important;
    box-shadow:0 18px 34px rgba(15,23,42,.085)!important;
    border-color:#cbd5e1!important;
}
body .em-tech-shop .em-category-photo{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    height:128px!important;
    background:#f6f8fb!important;
    border-bottom:1px solid #edf2f7!important;
    padding:16px!important;
}
body .em-tech-shop .em-category-photo img{
    display:block!important;
    max-width:100%!important;
    max-height:104px!important;
    object-fit:contain!important;
    margin:0 auto!important;
    filter:drop-shadow(0 10px 14px rgba(15,23,42,.08))!important;
}
body .em-tech-shop .em-category-copy{
    display:block!important;
    padding:14px!important;
}
body .em-tech-shop .em-category-copy strong{
    display:block!important;
    margin:0 0 5px!important;
    color:#111827!important;
    font-size:15px!important;
    line-height:1.15!important;
    font-weight:900!important;
}
body .em-tech-shop .em-category-copy small{
    display:block!important;
    color:#64748b!important;
    font-size:12px!important;
    line-height:1.35!important;
    font-weight:600!important;
}
body .em-tech-shop .em-shop-trust-bespoke{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:14px!important;
    margin:0 0 22px!important;
}
body .em-tech-shop .em-shop-trust-bespoke span{
    border-radius:18px!important;
    background:#ffffff!important;
    border:1px solid #dbeafe!important;
    color:#102442!important;
    box-shadow:0 8px 22px rgba(15,23,42,.045)!important;
    text-align:left!important;
    padding:15px 16px!important;
}
body .em-tech-shop .em-quick-filters,
body .em-tech-shop .em-results-count-friendly{
    box-shadow:0 8px 22px rgba(15,23,42,.04)!important;
    border-color:#e3e9f2!important;
}
body .em-tech-shop .em-grid{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:20px!important;
}
body .em-tech-shop .em-card{
    border-radius:20px!important;
    border-color:#e3e9f2!important;
    overflow:hidden!important;
    box-shadow:0 10px 26px rgba(15,23,42,.045)!important;
}
body .em-tech-shop .em-image-wrap{
    height:230px!important;
    min-height:230px!important;
    background:#f7f8fb!important;
}
body .em-tech-shop .em-card-body{padding:18px!important;}
body .em-tech-shop .em-title{font-size:15px!important;min-height:42px!important;}
body .em-tech-shop .em-price,
body .em-tech-shop .em-price .woocommerce-Price-amount{font-size:24px!important;}
body .em-tech-shop .em-add{
    border-radius:12px!important;
    min-height:46px!important;
    font-size:14px!important;
}
@media(max-width:1380px){
    body .em-tech-shop .em-storefront-hero{grid-template-columns:1fr!important;}
    body .em-tech-shop .em-storefront-feature-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
    body .em-tech-shop .em-category-tiles-photo{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
    body .em-tech-shop .em-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media(max-width:900px){
    body .em-tech-shop .em-storefront-feature-grid,
    body .em-tech-shop .em-category-tiles-photo,
    body .em-tech-shop .em-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
    body .em-tech-shop .em-storefront-copy{min-height:300px!important;padding:28px!important;}
    body .em-tech-shop .em-storefront-feature{min-height:260px!important;}
    body .em-tech-shop .em-shop-trust-bespoke{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:620px){
    body .em-tech-shop{padding:20px 12px 28px!important;}
    body .em-tech-shop .em-storefront-feature-grid,
    body .em-tech-shop .em-category-tiles-photo,
    body .em-tech-shop .em-grid,
    body .em-tech-shop .em-shop-trust-bespoke{grid-template-columns:1fr!important;}
    body .em-tech-shop .em-storefront-copy h2{font-size:34px!important;}
    body .em-tech-shop .em-storefront-copy p{font-size:15px!important;}
}

/* EM Tech Shop v2.9.24 grid integrity fix */
body .em-tech-shop .em-featured-section .em-grid,
body .em-tech-shop .em-regular-section .em-grid,
body .em-tech-shop .em-grid{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
}
@media (max-width:1200px){
    body .em-tech-shop .em-featured-section .em-grid,
    body .em-tech-shop .em-regular-section .em-grid,
    body .em-tech-shop .em-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media (max-width:900px){
    body .em-tech-shop .em-featured-section .em-grid,
    body .em-tech-shop .em-regular-section .em-grid,
    body .em-tech-shop .em-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media (max-width:560px){
    body .em-tech-shop .em-featured-section .em-grid,
    body .em-tech-shop .em-regular-section .em-grid,
    body .em-tech-shop .em-grid{grid-template-columns:1fr!important;}
}

/* EM Tech Shop v2.9.25 - category/range view sidebar + sane grid */
body .em-tech-shop.em-tech-shop--home .em-shop-layout{
    grid-template-columns:1fr!important;
}
body .em-tech-shop.em-tech-shop--home .em-sidebar{
    display:none!important;
}
body .em-tech-shop.em-tech-shop--home .em-featured-section .em-grid,
body .em-tech-shop.em-tech-shop--home .em-regular-section .em-grid,
body .em-tech-shop.em-tech-shop--home .em-grid{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
}

body .em-tech-shop.em-tech-shop--range .em-shop-layout{
    display:grid!important;
    grid-template-columns:260px minmax(0,1fr)!important;
    gap:24px!important;
    max-width:1680px!important;
    margin:0 auto!important;
    align-items:start!important;
}
body .em-tech-shop.em-tech-shop--range .em-sidebar{
    display:block!important;
    position:sticky!important;
    top:18px!important;
}
body .em-tech-shop.em-tech-shop--range #em-products-container{
    min-width:0!important;
}
body .em-tech-shop.em-tech-shop--range .em-shop-home,
body .em-tech-shop.em-tech-shop--range .em-featured-section{
    display:none!important;
}
body .em-tech-shop.em-tech-shop--range .em-regular-section .em-grid,
body .em-tech-shop.em-tech-shop--range .em-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
}
body .em-tech-shop.em-tech-shop--range .em-products-wrap{
    background:#fff!important;
    border:1px solid rgba(226,230,237,.9)!important;
    border-radius:18px!important;
    box-shadow:0 18px 55px rgba(15,23,42,.06)!important;
    padding:22px!important;
}
body .em-tech-shop.em-tech-shop--range .em-results-count-friendly{
    margin-bottom:18px!important;
}
@media (max-width:1200px){
    body .em-tech-shop.em-tech-shop--range .em-shop-layout{grid-template-columns:240px minmax(0,1fr)!important;gap:18px!important;}
    body .em-tech-shop.em-tech-shop--range .em-regular-section .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media (max-width:900px){
    body .em-tech-shop.em-tech-shop--range .em-shop-layout{display:block!important;}
    body .em-tech-shop.em-tech-shop--range .em-sidebar{display:block!important;}
    body .em-tech-shop.em-tech-shop--range .em-filter-toggle{display:flex!important;}
    body .em-tech-shop.em-tech-shop--range .em-regular-section .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media (max-width:560px){
    body .em-tech-shop.em-tech-shop--home .em-featured-section .em-grid,
    body .em-tech-shop.em-tech-shop--home .em-regular-section .em-grid,
    body .em-tech-shop.em-tech-shop--home .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-regular-section .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-grid{grid-template-columns:1fr!important;}
}

/* ========================================================================== 
   EM Tech Shop v2.9.26 - mobile layout rebuild
   ========================================================================== */
@media (max-width: 900px){
    body .em-tech-shop{
        width:100%!important;
        max-width:100%!important;
        padding:14px 10px 24px!important;
        overflow-x:hidden!important;
        box-sizing:border-box!important;
    }
    body .em-tech-shop .em-shop-layout,
    body .em-tech-shop.em-tech-shop--range .em-shop-layout,
    body .em-tech-shop.em-tech-shop--home .em-shop-layout{
        display:block!important;
        width:100%!important;
        max-width:100%!important;
        margin:0!important;
    }
    body .em-tech-shop #em-products-container,
    body .em-tech-shop #em-products-container-inner,
    body .em-tech-shop .em-products-wrap{
        width:100%!important;
        max-width:100%!important;
        min-width:0!important;
        box-sizing:border-box!important;
    }

    /* mobile filter drawer must not sit above the catalogue unless opened */
    body .em-tech-shop .em-filter-toggle,
    body .em-tech-shop.em-tech-shop--range .em-filter-toggle{
        display:flex!important;
        width:100%!important;
        min-height:44px!important;
        margin:0 0 12px!important;
        border-radius:12px!important;
        background:#102442!important;
        color:#fff!important;
        align-items:center!important;
        justify-content:center!important;
        font-size:13px!important;
        font-weight:900!important;
        box-shadow:0 10px 22px rgba(15,23,42,.08)!important;
    }
    body .em-tech-shop .em-sidebar,
    body .em-tech-shop.em-tech-shop--range .em-sidebar{
        display:block!important;
        position:fixed!important;
        top:0!important;
        left:-105vw!important;
        width:min(88vw,360px)!important;
        max-width:360px!important;
        height:100dvh!important;
        max-height:100dvh!important;
        overflow-y:auto!important;
        z-index:999999!important;
        border-radius:0!important;
        border:0!important;
        box-shadow:none!important;
        transition:left .25s ease!important;
        background:#fff!important;
    }
    body .em-tech-shop .em-sidebar.em-sidebar-open,
    body .em-tech-shop.em-tech-shop--range .em-sidebar.em-sidebar-open{
        left:0!important;
        box-shadow:18px 0 45px rgba(0,0,0,.24)!important;
    }
    body .em-tech-shop .em-filter-overlay.active{
        display:block!important;
        position:fixed!important;
        inset:0!important;
        z-index:999998!important;
        background:rgba(15,23,42,.55)!important;
    }

    body .em-tech-shop .em-active-filters,
    body .em-tech-shop .em-quick-filters,
    body .em-tech-shop .em-results-count-friendly{
        width:100%!important;
        max-width:100%!important;
        box-sizing:border-box!important;
    }
    body .em-tech-shop .em-quick-filters{
        overflow-x:auto!important;
        flex-wrap:nowrap!important;
        white-space:nowrap!important;
        padding:10px!important;
        margin:0 0 10px!important;
        border-radius:14px!important;
    }
    body .em-tech-shop .em-results-count-friendly{
        padding:11px 12px!important;
        font-size:12px!important;
        margin:0 0 12px!important;
    }

    body .em-tech-shop .em-products-wrap,
    body .em-tech-shop .em-regular-section,
    body .em-tech-shop.em-tech-shop--range .em-products-wrap{
        padding:14px!important;
        border-radius:18px!important;
        box-shadow:0 10px 28px rgba(15,23,42,.055)!important;
    }
    body .em-tech-shop .em-section-head{
        display:flex!important;
        align-items:center!important;
        justify-content:space-between!important;
        gap:10px!important;
        margin:0 0 14px!important;
    }
    body .em-tech-shop .em-section-title{
        font-size:22px!important;
        line-height:1.15!important;
        margin:0!important;
        text-align:left!important;
    }
    body .em-tech-shop #em-sort-select{
        max-width:145px!important;
        height:38px!important;
        font-size:12px!important;
        border-radius:10px!important;
    }
}

@media (max-width: 560px){
    /* Product listings should look like a real mobile shop, not a long skinny desktop card. */
    body .em-tech-shop .em-featured-section .em-grid,
    body .em-tech-shop .em-regular-section .em-grid,
    body .em-tech-shop .em-grid,
    body .em-tech-shop.em-tech-shop--home .em-featured-section .em-grid,
    body .em-tech-shop.em-tech-shop--home .em-regular-section .em-grid,
    body .em-tech-shop.em-tech-shop--home .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-regular-section .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))!important;
        gap:12px!important;
        align-items:stretch!important;
    }
    body .em-tech-shop .em-card,
    body .em-tech-shop .em-card.em-card-badged,
    body .em-tech-shop .em-card.em-card-sale{
        display:flex!important;
        flex-direction:column!important;
        height:100%!important;
        min-width:0!important;
        border-left:1px solid #e3e9f2!important;
        border-top:1px solid #e3e9f2!important;
        border-radius:15px!important;
        overflow:hidden!important;
        box-shadow:0 8px 20px rgba(15,23,42,.045)!important;
    }
    body .em-tech-shop .em-image-wrap,
    body .em-tech-shop .em-card .em-image-wrap{
        width:100%!important;
        min-width:0!important;
        max-width:100%!important;
        height:138px!important;
        min-height:138px!important;
        max-height:138px!important;
        aspect-ratio:auto!important;
        padding:12px!important;
        border-right:0!important;
        border-bottom:1px solid #edf2f7!important;
        background:#f7f8fb!important;
    }
    body .em-tech-shop .em-image-wrap img{
        max-width:100%!important;
        max-height:112px!important;
        width:auto!important;
        height:auto!important;
        object-fit:contain!important;
        margin:0 auto!important;
    }
    body .em-tech-shop .em-card-body,
    body .em-tech-shop .em-card .em-card-body{
        display:flex!important;
        flex-direction:column!important;
        align-items:stretch!important;
        text-align:left!important;
        min-height:205px!important;
        padding:11px!important;
        gap:0!important;
        flex:1!important;
    }
    body .em-tech-shop .em-brand{
        text-align:left!important;
        font-size:8.5px!important;
        line-height:1.1!important;
        letter-spacing:.08em!important;
        margin:0 0 6px!important;
        min-height:10px!important;
    }
    body .em-tech-shop .em-title{
        text-align:left!important;
        font-size:11.5px!important;
        line-height:1.28!important;
        min-height:45px!important;
        margin:0 0 7px!important;
        -webkit-line-clamp:3!important;
    }
    body .em-tech-shop .em-chips{
        display:none!important;
    }
    body .em-tech-shop .em-price-block,
    body .em-tech-shop .em-price,
    body .em-tech-shop .em-price .woocommerce-Price-amount{
        text-align:left!important;
        font-size:18px!important;
        line-height:1.1!important;
        margin:0!important;
    }
    body .em-tech-shop .em-inc-vat,
    body .em-tech-shop .em-exvat{
        display:none!important;
    }
    body .em-tech-shop .em-fulfil{
        display:block!important;
        margin:7px 0 9px!important;
        min-height:33px!important;
        text-align:left!important;
    }
    body .em-tech-shop .em-stock{
        display:block!important;
        width:max-content!important;
        max-width:100%!important;
        font-size:9.5px!important;
        line-height:1.1!important;
        padding:2px 6px!important;
        margin:0 0 3px!important;
    }
    body .em-tech-shop .em-delivery,
    body .em-tech-shop .em-delivery-prominent{
        display:block!important;
        text-align:left!important;
        font-size:9px!important;
        line-height:1.2!important;
        color:#b45309!important;
        font-weight:700!important;
        margin:0!important;
    }
    body .em-tech-shop .em-cta{
        margin-top:auto!important;
        width:100%!important;
        padding-top:7px!important;
    }
    body .em-tech-shop .em-add,
    body .em-tech-shop .button.em-add,
    body .em-tech-shop a.em-add{
        width:100%!important;
        min-height:36px!important;
        padding:8px 7px!important;
        border-radius:9px!important;
        font-size:10.5px!important;
        line-height:1!important;
        gap:4px!important;
    }
    body .em-tech-shop .em-add svg{
        width:12px!important;
        height:12px!important;
    }
    body .em-tech-shop .em-badge{
        top:6px!important;
        left:6px!important;
        font-size:8px!important;
        padding:4px 6px!important;
        border-radius:5px!important;
        max-width:calc(100% - 12px)!important;
        overflow:hidden!important;
        text-overflow:ellipsis!important;
    }
    body .em-tech-shop .em-pagination{
        gap:5px!important;
        margin-top:18px!important;
    }
    body .em-tech-shop .em-page-btn{
        min-width:32px!important;
        padding:7px 9px!important;
        font-size:12px!important;
        border-radius:8px!important;
    }
}

@media (max-width: 374px){
    body .em-tech-shop .em-featured-section .em-grid,
    body .em-tech-shop .em-regular-section .em-grid,
    body .em-tech-shop .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-regular-section .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-grid{
        grid-template-columns:1fr!important;
    }
    body .em-tech-shop .em-image-wrap,
    body .em-tech-shop .em-card .em-image-wrap{
        height:180px!important;
        min-height:180px!important;
        max-height:180px!important;
    }
    body .em-tech-shop .em-image-wrap img{max-height:150px!important;}
    body .em-tech-shop .em-card-body{min-height:auto!important;}
    body .em-tech-shop .em-title{font-size:13px!important;min-height:0!important;}
    body .em-tech-shop .em-price,
    body .em-tech-shop .em-price .woocommerce-Price-amount{font-size:21px!important;}
}

/* ==========================================================================
   EM Tech Shop v2.9.27 — mobile layout fixes
   1. Reset the 100vw desktop bleed rule on mobile (margin-left was never
      cleared, causing left-shift inside Oxygen Builder containers).
   2. Extend the v2.9.26 vertical-card + 2-col grid fixes from ≤560 px to
      ≤640 px, closing the gap where the old flex-direction:row rules fired
      (max-width:600 px) without a matching override.
   3. Duplicate the very-small-phone (≤374 px) rules so they remain intact
      at the new outer breakpoint.
   ========================================================================== */

/* ── 1. Kill the 100vw bleed / margin shift on mobile ─────────────────── */
@media (max-width: 900px) {
    body .em-tech-shop {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
}

/* ── 2. Extended mobile card layout — covers 561–640 px gap ───────────── */
@media (max-width: 640px) {
    /* Single-column grid for all section types */
    body .em-tech-shop .em-featured-section .em-grid,
    body .em-tech-shop .em-regular-section .em-grid,
    body .em-tech-shop .em-grid,
    body .em-tech-shop.em-tech-shop--home .em-featured-section .em-grid,
    body .em-tech-shop.em-tech-shop--home .em-regular-section .em-grid,
    body .em-tech-shop.em-tech-shop--home .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-regular-section .em-grid,
    body .em-tech-shop.em-tech-shop--range .em-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    /* Vertical card — cancel the legacy flex-direction:row from ≤600 px */
    body .em-tech-shop .em-card,
    body .em-tech-shop .em-card.em-card-badged,
    body .em-tech-shop .em-card.em-card-sale {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        min-width: 0 !important;
        border-left: 1px solid #e3e9f2 !important;
        border-top: 1px solid #e3e9f2 !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 20px rgba(15,23,42,.045) !important;
    }

    /* Image wrap full-width — cancel legacy width:120px from ≤600 px */
    body .em-tech-shop .em-image-wrap,
    body .em-tech-shop .em-card .em-image-wrap {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        aspect-ratio: auto !important;
        padding: 20px !important;
        border-right: 0 !important;
        border-bottom: 1px solid #edf2f7 !important;
        background: #f7f8fb !important;
    }
    body .em-tech-shop .em-image-wrap img {
        max-width: 100% !important;
        max-height: 160px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }

    /* Card body — vertical, left-aligned, full width */
    body .em-tech-shop .em-card-body,
    body .em-tech-shop .em-card .em-card-body {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
        min-height: auto !important;
        padding: 14px !important;
        gap: 0 !important;
        flex: 1 !important;
    }

    body .em-tech-shop .em-brand {
        text-align: left !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
        letter-spacing: .08em !important;
        margin: 0 0 6px !important;
    }
    body .em-tech-shop .em-title {
        text-align: left !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        min-height: 0 !important;
        margin: 0 0 8px !important;
        -webkit-line-clamp: 2 !important;
    }
    body .em-tech-shop .em-chips { display: none !important; }
    body .em-tech-shop .em-price-block,
    body .em-tech-shop .em-price,
    body .em-tech-shop .em-price .woocommerce-Price-amount {
        text-align: left !important;
        font-size: 22px !important;
        line-height: 1.1 !important;
        margin: 0 !important;
    }
    body .em-tech-shop .em-inc-vat,
    body .em-tech-shop .em-exvat { display: none !important; }
    body .em-tech-shop .em-fulfil {
        display: block !important;
        margin: 8px 0 10px !important;
        text-align: left !important;
    }
    body .em-tech-shop .em-stock {
        display: block !important;
        width: max-content !important;
        max-width: 100% !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
        padding: 2px 7px !important;
        margin: 0 0 3px !important;
    }
    body .em-tech-shop .em-delivery,
    body .em-tech-shop .em-delivery-prominent {
        display: block !important;
        text-align: left !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
        color: #b45309 !important;
        font-weight: 700 !important;
        margin: 0 !important;
    }
    body .em-tech-shop .em-cta {
        margin-top: auto !important;
        width: 100% !important;
        padding-top: 10px !important;
    }
    body .em-tech-shop .em-add,
    body .em-tech-shop .button.em-add,
    body .em-tech-shop a.em-add {
        width: 100% !important;
        min-height: 42px !important;
        padding: 10px 14px !important;
        border-radius: 10px !important;
        font-size: 13px !important;
        line-height: 1 !important;
        gap: 6px !important;
    }
    body .em-tech-shop .em-add svg {
        width: 14px !important;
        height: 14px !important;
        margin-right: 5px !important;
    }
    body .em-tech-shop .em-badge {
        top: 8px !important;
        left: 8px !important;
        font-size: 9px !important;
        padding: 4px 7px !important;
        border-radius: 5px !important;
        max-width: calc(100% - 16px) !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    body .em-tech-shop .em-pagination {
        gap: 6px !important;
        margin-top: 20px !important;
    }
    body .em-tech-shop .em-page-btn {
        min-width: 36px !important;
        padding: 8px 12px !important;
        font-size: 13px !important;
        border-radius: 8px !important;
    }
}

/* ── 3. Very small phones (≤374 px) — slightly taller image ───────────── */
@media (max-width: 374px) {
    body .em-tech-shop .em-image-wrap,
    body .em-tech-shop .em-card .em-image-wrap {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }
    body .em-tech-shop .em-image-wrap img { max-height: 145px !important; }
    body .em-tech-shop .em-title { font-size: 13px !important; }
    body .em-tech-shop .em-price,
    body .em-tech-shop .em-price .woocommerce-Price-amount { font-size: 20px !important; }
}
