:root {
    --ts-bg: #f6f6f4;
    --ts-surface: #ffffff;
    --ts-surface-2: #fff3e6;
    --ts-text: #1f2937;
    --ts-muted: #6b7280;
    --ts-primary: #f97316;
    --ts-primary-deep: #c2410c;
    --ts-accent: #0f766e;
    --ts-border: #eadfce;
    --ts-shadow: 0 20px 40px rgba(41, 37, 36, 0.12);
}

body.techstore-theme {
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(1400px 900px at 10% -10%, #ffe7d1 0%, transparent 55%),
        radial-gradient(1000px 700px at 95% 0%, #ffe4cc 0%, transparent 45%),
        var(--ts-bg);
    color: var(--ts-text);
}

h1,
h2,
h3,
h4,
h5,
h6,
.main_title span,
.main_title h2 {
    font-weight: bold;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
}

.techstore-topbar {
    background: linear-gradient(
        90deg,
        var(--ts-primary-deep),
        var(--ts-primary)
    );
    color: #fff;
    font-size: 13px;
}

.techstore-topbar .container {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.techstore-topbar p {
    margin: 0;
    opacity: 0.95;
}

.techstore-topbar a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.main_header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--ts-border);
}

#logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.techstore-logo-subtitle {
    font-size: 11px;
    color: var(--ts-muted);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main_nav {
    background: var(--ts-surface);
    border-bottom: 1px solid var(--ts-border);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.03);
    padding: 10px 0;
}

.techstore-category-nav {
    position: relative;
}

.techstore-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.techstore-menu-item {
    position: relative;
}

.techstore-menu-item > a {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--ts-text);
    font-weight: 700;
    font-size: 14px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.techstore-menu-item > a:hover {
    color: var(--ts-primary-deep);
    background: #fff5eb;
}

.techstore-mega {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 280px;
    background: #fff;
    border: 1px solid var(--ts-border);
    border-radius: 14px;
    box-shadow: var(--ts-shadow);
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
    z-index: 30;
}

.techstore-menu-item:hover .techstore-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.techstore-mega h4 {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--ts-primary-deep);
    font-weight: 800;
}

.techstore-mega ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.techstore-mega a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--ts-text);
    font-size: 14px;
}

.techstore-mega a:hover {
    background: #f8fafc;
    color: var(--ts-primary-deep);
}

.techstore-mobile-cats {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.techstore-mobile-cats a {
    white-space: nowrap;
    border: 1px solid var(--ts-border);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    background: #fff;
}

.custom-search-input input {
    border: 1px solid var(--ts-border);
    border-radius: 999px;
    background: #fff;
    box-shadow: none;
    height: 46px;
}

.custom-search-input button {
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        var(--ts-primary),
        var(--ts-primary-deep)
    );
    color: #fff;
    width: 46px;
    height: 46px;
}

.top_tools > li > div > a,
.top_tools > li > a {
    background: #fff;
    border: 1px solid var(--ts-border);
    border-radius: 12px;
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    color: var(--ts-text) !important;
}

.top_tools i,
.top_tools span {
    color: var(--ts-text) !important;
}

.top_tools > li > div > a:hover,
.top_tools > li > a:hover {
    transform: translateY(-2px);
    box-shadow: var(--ts-shadow);
}

.phone_top {
    background: #ffedd5;
    border-radius: 10px;
    padding: 8px 12px;
}

.techstore-hero {
    padding: 36px 0 18px;
}

#carousel-home {
    margin: 14px auto 24px;
}

#carousel-home .owl-carousel .owl-slide {
    height: 560px !important;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--ts-shadow);
}

#carousel-home .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
}

#carousel-home .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.35);
}

#carousel-home .owl-theme .owl-dots .owl-dot.active span {
    background: var(--ts-primary);
    border-color: var(--ts-primary);
}

#banners_grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

#banners_grid li {
    width: 100%;
}

#banners_grid .img_container {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ts-border);
}

#banners_grid .short_info {
    padding: 14px;
}

.breadcrumbs {
    margin-bottom: 16px;
}

.breadcrumbs ul {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--ts-border);
    background: #fff;
}

.breadcrumbs ul li {
    color: var(--ts-muted);
    font-size: 13px;
    position: relative;
}

.breadcrumbs ul li + li {
    padding-left: 14px;
}

.breadcrumbs ul li + li:before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #9ca3af;
}

.breadcrumbs ul li a {
    color: var(--ts-primary-deep);
    font-weight: 600;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 24px;
}

.hero-copy {
    background: linear-gradient(130deg, #3f2d1f 0%, #6b3418 45%, #c2410c 100%);
    color: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: var(--ts-shadow);
    animation: tsRise 0.55s ease-out;
}

.hero-kicker {
    margin: 0 0 10px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.16;
}

.hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
}

.hero-actions .btn_1 {
    border-radius: 12px;
}

.hero-actions .btn_1.outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.48);
    color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-stats article {
    background: var(--ts-surface);
    border-radius: 18px;
    border: 1px solid var(--ts-border);
    padding: 22px 18px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
    animation: tsRise 0.6s ease-out;
}

.hero-stats span {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--ts-primary-deep);
}

.hero-stats small {
    color: var(--ts-muted);
}

.main_title {
    margin-bottom: 20px !important;
}

.main_title h2 {
    font-size: 30px;
    margin-bottom: 0;
}

.main_title span {
    display: none;
}

.grid_item {
    border-radius: 18px;
    border: 1px solid var(--ts-border);
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.grid_item:hover {
    transform: translateY(-6px);
    box-shadow: var(--ts-shadow);
}

.grid_item figure {
    border-radius: 14px;
    overflow: hidden;
    margin: 10px;
    background: #f8fafc;
}

.grid_item .price_box .new_price {
    color: var(--ts-primary-deep);
    font-weight: 800;
}

.grid_item .price_box .old_price {
    color: #94a3b8;
}

.grid_item ul li a {
    border-radius: 10px;
}

.ribbon {
    border-radius: 999px;
    margin-top: 12px;
    margin-left: 12px;
    font-weight: 700;
}

.toolbox {
    background: #fff;
    border: 1px solid var(--ts-border);
    border-radius: 14px;
    margin: 18px auto 24px;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
}

.dropdown-menu {
    border-radius: 14px;
    border: 1px solid var(--ts-border);
    box-shadow: var(--ts-shadow);
}

.drop {
    border-radius: 10px !important;
    border: 1px solid var(--ts-border) !important;
    background: #fff !important;
}

.btn_1 {
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        var(--ts-primary),
        var(--ts-primary-deep)
    );
    border: none;
}

.btn_1.outline {
    color: var(--ts-primary-deep);
    border: 1px solid var(--ts-primary);
    background: #fff;
}

.techstore-footer {
    margin-top: 34px;
    padding: 54px 0 28px;
    background: #ffffff;
    color: #4b5563;
    border-top: 1px solid #e5e7eb;
}

.techstore-footer .container {
    max-width: 1180px;
}

.techstore-footer h3 {
    color: #111827;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.techstore-footer .footer-lead {
    color: #4b5563;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.75;
    max-width: 430px;
}

.techstore-footer .contacts,
.techstore-footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.techstore-footer .contacts li,
.techstore-footer .footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.techstore-footer .footer-links a {
    color: #4b5563;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.techstore-footer .footer-links a:hover,
.techstore-footer .footer-bottom a:hover {
    color: #dc2626;
    transform: translateX(2px);
}

.techstore-footer-grid {
    row-gap: 28px;
    align-items: start;
}

.techstore-footer-column {
    height: 100%;
    padding-right: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.techstore-footer-brand .contacts {
    max-width: 440px;
}

.techstore-footer .contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.techstore-footer .contacts li i {
    width: 18px;
    color: #111827;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 2px;
}

.techstore-footer .contacts li span {
    flex: 1;
}

.techstore-footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.techstore-social-text {
    margin: 0 0 16px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.65;
    max-width: 280px;
}

.techstore-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.techstore-social-list li {
    margin: 0;
}

.techstore-social-list a {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
    box-shadow 0.2s ease;
}

.techstore-social-list a i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    line-height: 1;
    transform: translate(-50%, -50%);
}

.techstore-social-list a .fa-facebook-f {
    transform: translate(calc(-50% - 1px), -50%);
}

.techstore-social-list a .fa-youtube {
    transform: translate(calc(-50% + 1px), -50%);
}

.techstore-social-list a:hover {
    color: #dc2626;
    border-color: #fecaca;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.12);
}

.techstore-footer-social-column {
    align-items: flex-start;
}

.techstore-footer-social-column .follow_us {
    margin-top: 4px;
    width: 100%;
}

.techstore-footer-social-column .follow_us ul.techstore-social-list {
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: flex-start;
}

.techstore-footer-social-column .follow_us ul.techstore-social-list li {
    display: flex;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links span {
    color: #9ca3af;
}

.techstore-footer hr {
    border-color: #e5e7eb;
    margin: 34px 0 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #4b5563;
}

.footer-bottom a {
    color: #4b5563;
    transition: color 0.2s ease;
}

.prod_info,
.product_actions,
.tabs_product,
.reviews-container {
    border-radius: 16px;
    border: 1px solid var(--ts-border);
    background: #fff;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

table.table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.cart_section,
.checkout-section,
.box_cart {
    border-radius: 14px;
}

.form-control {
    border-radius: 10px;
    border-color: var(--ts-border);
}

@keyframes tsRise {
    from {
        transform: translateY(12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 26px;
    }

    .techstore-topbar .container {
        min-height: 34px;
        font-size: 12px;
    }

    #carousel-home .owl-carousel .owl-slide {
        height: 320px !important;
    }

    #banners_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .main_title h2 {
        font-size: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .techstore-footer-column {
        padding-right: 0;
    }

    .techstore-footer {
        padding: 46px 0 24px;
    }

    .techstore-footer-social-column,
    .techstore-footer-social-column .techstore-social-list {
        align-items: center;
        justify-content: center;
    }

    .techstore-footer-social-column {
        text-align: center;
    }

    .techstore-social-text,
    .techstore-footer-brand .contacts,
    .techstore-footer .footer-lead {
        max-width: none;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* TechStore UI refresh overrides */
:root {
    --ts-bg: #f5f7fb;
    --ts-surface-2: #eef4ff;
    --ts-primary: #ef4444;
    --ts-primary-deep: #dc2626;
    --ts-border: #dbe4ef;
    --ts-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

body.techstore-theme {
    background:
        radial-gradient(1200px 800px at 5% -10%, #edf6ff 0%, transparent 55%),
        radial-gradient(1100px 700px at 95% -5%, #e6f4ff 0%, transparent 45%),
        var(--ts-bg);
}

body.techstore-theme .techstore-topbar {
    background: linear-gradient(90deg, #075985, #0ea5e9);
}

body.techstore-theme .main_header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--ts-border);
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}

body.techstore-theme .main_nav,
body.techstore-theme .main_nav.Sticky {
    background: #fff !important;
    border-bottom: 1px solid var(--ts-border);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.03);
    z-index: 100;
}

body.techstore-theme .techstore-category-nav {
    overflow: visible;
}

body.techstore-theme .techstore-menu {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
}

body.techstore-theme .techstore-menu-item > a {
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.02em;
}

body.techstore-theme .techstore-menu-item:hover > a,
body.techstore-theme .techstore-menu-item > a:hover {
    color: var(--ts-primary-deep);
    background: #edf7ff;
}

body.techstore-theme .techstore-mega {
    width: 360px;
    padding: 16px;
}

body.techstore-theme .techstore-mega ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.techstore-theme .custom-search-input input {
    height: 44px;
}

body.techstore-theme .custom-search-input button {
    width: 44px;
    height: 44px;
}

body.techstore-theme .top_tools > li > div > a,
body.techstore-theme .top_tools > li > a {
    border-radius: 10px;
    min-width: 40px;
    min-height: 40px;
}

body.techstore-theme .phone_top {
    background: #eaf6ff;
}

body.techstore-theme #carousel-home {
    margin: 18px auto 24px;
}

body.techstore-theme #carousel-home .owl-carousel .owl-slide {
    height: 520px !important;
}

body.techstore-theme .techstore-slide {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
}

body.techstore-theme .techstore-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(2, 6, 23, 0.74) 0%,
        rgba(2, 6, 23, 0.34) 46%,
        rgba(2, 6, 23, 0.15) 100%
    );
    z-index: -1;
}

body.techstore-theme .techstore-slide-content {
    width: min(620px, 90%);
    margin: 0 0 48px 48px;
    color: #fff;
}

body.techstore-theme .techstore-slide-content .slide-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    opacity: 0.92;
}

body.techstore-theme .techstore-slide-content h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    color: #fff;
}

body.techstore-theme .techstore-slide-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 560px;
    color: #f8fafc;
}

body.techstore-theme #carousel-home .owl-nav [class*="owl-"] {
    width: 40px;
    height: 40px;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #0f172a !important;
    border: 1px solid var(--ts-border) !important;
}

body.techstore-theme #banners_grid .img_container {
    display: block;
    position: relative;
    min-height: 220px;
}

body.techstore-theme #banners_grid .short_info {
    padding: 16px;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.1) 0%,
        rgba(15, 23, 42, 0.78) 100%
    );
    position: absolute;
    inset: auto 0 0 0;
    color: #fff;
}

body.techstore-theme #banners_grid .short_info h3 {
    color: #fff;
    margin-bottom: 10px;
}

body.techstore-theme .breadcrumbs {
    margin: 14px 0 20px;
}

body.techstore-theme .breadcrumbs ul {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

body.techstore-theme .breadcrumbs ul li + li:before {
    content: "/";
}

body.techstore-theme .btn_1 {
    color: #fff;
    background: linear-gradient(
        180deg,
        var(--ts-primary),
        var(--ts-primary-deep)
    );
}

body.techstore-theme .btn_1:hover {
    color: #fff !important;
    background: linear-gradient(
        180deg,
        #dc2626,
        #b91c1c
    );
}

body.techstore-theme .btn_1.outline {
    color: var(--ts-primary-deep) !important;
    border: 1px solid var(--ts-primary);
    background: #fff;
}

body.techstore-theme .btn_1.outline:hover {
    color: #fff !important;
    border-color: var(--ts-primary-deep);
    background: linear-gradient(
        180deg,
        var(--ts-primary),
        var(--ts-primary-deep)
    );
}

body.techstore-theme .techstore-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 991px) {
    body.techstore-theme .techstore-slide-content {
        margin: 0 0 22px 22px;
    }

    body.techstore-theme .techstore-slide-content h2 {
        font-size: 24px;
    }
}

/* GearVN-like header */
body.techstore-theme .techstore-main-header {
    background: linear-gradient(90deg, #cf071b 0%, #eb1c24 60%, #ff2b2b 100%);
    position: sticky;
    top: 0;
    z-index: 120;
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.2);
}

body.techstore-theme .techstore-header-row {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

body.techstore-theme .techstore-header-left,
body.techstore-theme .techstore-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.techstore-theme .techstore-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
    letter-spacing: 0.06em;
}

body.techstore-theme .techstore-brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

body.techstore-theme .techstore-brand-text {
    font-size: 24px;
    line-height: 1;
    color: #fff;
}

body.techstore-theme .techstore-category-btn {
    border: none;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
}

body.techstore-theme .techstore-category-btn:hover {
    background: rgba(0, 0, 0, 0.32);
}

body.techstore-theme .techstore-search-form {
    position: relative;
}

body.techstore-theme .techstore-search-form input {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 0 46px 0 14px;
    font-size: 16px;
}

body.techstore-theme .techstore-search-form input:focus {
    border-color: #7dd3fc;
    box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.3);
}

body.techstore-theme .techstore-search-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #334155;
}

body.techstore-theme .techstore-utility {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 8px;
    color: #fff !important;
    border-bottom: 2px solid transparent;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

body.techstore-theme .techstore-utility:hover {
    border-bottom-color: #fef08a;
    background: rgba(255, 255, 255, 0.08);
}

body.techstore-theme .techstore-utility > i {
    font-size: 18px;
}

body.techstore-theme .techstore-utility span {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

body.techstore-theme .techstore-utility span small {
    font-size: 11px;
    opacity: 0.92;
    color: #fef2f2 !important;
}

body.techstore-theme .techstore-utility span strong {
    font-size: 16px;
    color: #fff !important;
    font-weight: 700;
}

body.techstore-theme .techstore-header-right > .techstore-utility:nth-of-type(2) span small,
body.techstore-theme .techstore-header-right > .techstore-utility:nth-of-type(2) span strong {
    font-size: 0;
    line-height: 1;
}

body.techstore-theme .techstore-header-right > .techstore-utility:nth-of-type(2) span small::after {
    content: "Sản phẩm";
    font-size: 11px;
}

body.techstore-theme .techstore-header-right > .techstore-utility:nth-of-type(2) span strong::after {
    content: "Yêu thích";
    font-size: 16px;
}

body.techstore-theme .techstore-cart-wrap,
body.techstore-theme .techstore-account-wrap {
    position: relative;
}

body.techstore-theme .techstore-cart-link {
    position: relative;
    padding-right: 16px;
}

body.techstore-theme .techstore-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #facc15;
    color: #0f172a;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    font-weight: 800;
}

body.techstore-theme .techstore-category-panel {
    width: min(920px, 92vw);
    padding: 16px;
    border-radius: 14px;
}

body.techstore-theme .techstore-category-group {
    border: 1px solid var(--ts-border);
    border-radius: 12px;
    padding: 12px;
    height: 100%;
    background: #fff;
}

body.techstore-theme .techstore-category-parent {
    font-weight: 800;
    color: #0f172a;
    display: inline-block;
    margin-bottom: 8px;
}

body.techstore-theme .techstore-category-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

body.techstore-theme .techstore-category-group ul a {
    color: #475569;
    font-size: 14px;
}

body.techstore-theme .techstore-category-group ul a:hover {
    color: var(--ts-primary-deep);
}

body.techstore-theme .techstore-mobile-category-panel {
    margin-top: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 12px;
}

body.techstore-theme .techstore-mobile-cat {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

body.techstore-theme .techstore-mobile-cat:last-child {
    border-bottom: none;
}

body.techstore-theme .techstore-mobile-cat-title {
    color: #0f172a;
    font-weight: 800;
}

body.techstore-theme .techstore-mobile-subcats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

body.techstore-theme .techstore-mobile-subcats a {
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    font-size: 12px;
    padding: 4px 10px;
}

body.techstore-theme .techstore-mobile-shell {
    display: none;
}

body.techstore-theme .techstore-mobile-top {
    display: grid;
    grid-template-columns: 42px auto minmax(0, 1fr) 42px;
    gap: 10px;
    align-items: center;
    padding: 10px 0 8px;
}

body.techstore-theme .techstore-mobile-iconbtn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 21px;
}

body.techstore-theme .techstore-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    min-width: 0;
}

body.techstore-theme .techstore-mobile-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.techstore-theme .techstore-mobile-brand-text {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

body.techstore-theme .techstore-mobile-search {
    position: relative;
    min-width: 0;
}

body.techstore-theme .techstore-mobile-search input {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 10px;
    padding: 0 42px 0 14px;
    font-size: 14px;
    color: #0f172a;
}

body.techstore-theme .techstore-mobile-search button {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #0f172a;
}

body.techstore-theme .techstore-mobile-cart .techstore-cart-badge {
    top: 0;
    right: -2px;
}

body.techstore-theme .techstore-mobile-tabs {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 0 0 10px;
    scrollbar-width: none;
}

body.techstore-theme .techstore-mobile-tabs::-webkit-scrollbar {
    display: none;
}

body.techstore-theme .techstore-mobile-tab {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    padding-bottom: 2px;
}

body.techstore-theme .techstore-mobile-tab:hover {
    color: #fff8b3;
}

@media (max-width: 1399px) {
    body.techstore-theme .techstore-header-row {
        grid-template-columns: auto 1fr;
    }

    body.techstore-theme .techstore-header-right {
        grid-column: 1 / -1;
        justify-content: flex-end;
        padding-bottom: 10px;
    }
}

@media (max-width: 991px) {
    body.techstore-theme .techstore-mobile-shell {
        display: block;
    }

    body.techstore-theme .techstore-header-row,
    body.techstore-theme #mobileCategoryPanelDesktop {
        display: none !important;
    }

    body.techstore-theme .techstore-header-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 0;
    }

    body.techstore-theme .techstore-header-left {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        align-items: center;
        justify-content: initial;
    }

    body.techstore-theme .techstore-header-center {
        order: 3;
    }

    body.techstore-theme .techstore-header-right {
        order: 4;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        justify-content: initial;
        padding-bottom: 0;
    }

    body.techstore-theme .techstore-brand-text {
        font-size: 20px;
    }

    body.techstore-theme .techstore-category-btn {
        width: 100%;
        justify-content: center;
        padding: 0 12px;
    }

    body.techstore-theme .techstore-search-form input {
        height: 42px;
        font-size: 15px;
    }

    body.techstore-theme .techstore-utility,
    body.techstore-theme .techstore-cart-link {
        width: 100%;
        min-height: 56px;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    body.techstore-theme .techstore-cart-wrap,
    body.techstore-theme .techstore-account-wrap {
        width: 100%;
    }

    body.techstore-theme .techstore-utility span strong {
        font-size: 14px;
    }

    body.techstore-theme .techstore-cart-badge {
        top: 8px;
        right: 8px;
    }
}

/* Home hero + brand section refinement */
body.techstore-theme #carousel-home {
    margin: 0;
}

body.techstore-theme .techstore-showcase {
    margin: 18px 0 26px;
}

body.techstore-theme .techstore-showcase-fullwidth {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

body.techstore-theme .techstore-showcase-top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    border: 1px solid #d8d6d1;
    border-bottom: none;
    background: #e8e5e0;
}

body.techstore-theme .techstore-showcase-card {
    min-height: 228px;
    background: linear-gradient(180deg, #f3f1ee 0%, #e8e5e0 100%);
    border-right: 1px solid rgba(17, 24, 39, 0.08);
}

body.techstore-theme .techstore-showcase-card:last-child {
    border-right: none;
}

body.techstore-theme .techstore-showcase-card-inner {
    height: 100%;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body.techstore-theme .techstore-showcase-eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b7280;
}

body.techstore-theme .techstore-showcase-card h3 {
    margin: 0;
    color: #222222;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(28px, 2.5vw, 42px);
    font-weight: 500;
    letter-spacing: 0.03em;
}

body.techstore-theme .techstore-showcase-icons {
    margin: 22px 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    color: rgba(17, 24, 39, 0.7);
    font-size: 26px;
}

body.techstore-theme .techstore-showcase-icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

body.techstore-theme .techstore-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #dc2626;
    font-size: 15px;
    font-weight: 600;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

body.techstore-theme .techstore-showcase-link:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    transform: translateY(-1px);
}

body.techstore-theme .techstore-showcase-hero {
    margin: 0;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    border: 1px solid #d8d6d1;
    border-top: none;
    background: #c7b8aa;
}

body.techstore-theme .techstore-showcase-hero .techstore-slide::before {
    content: none;
}

body.techstore-theme #carousel-home .owl-carousel .owl-slide.techstore-slide {
    height: 595px !important;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: #bfb1a2;
    box-shadow: none;
}

body.techstore-theme .techstore-slide-backdrop,
body.techstore-theme .techstore-slide-backdrop img {
    width: 100%;
    height: 100%;
}

body.techstore-theme .techstore-slide-backdrop {
    position: absolute;
    inset: 0;
}

body.techstore-theme .techstore-slide-backdrop img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

body.techstore-theme .techstore-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(42, 30, 23, 0.72) 0%, rgba(58, 43, 33, 0.42) 36%, rgba(112, 91, 77, 0.12) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.08));
}

body.techstore-theme .techstore-slide-shell {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 44px 40px 50px;
}

body.techstore-theme .techstore-slide-content {
    max-width: 620px;
    margin: 0;
    width: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: none;
}

body.techstore-theme .techstore-slide-content h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.95;
    margin-bottom: 22px;
    max-width: 560px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

body.techstore-theme .techstore-slide-content p {
    max-width: 500px;
    color: rgba(241, 245, 249, 0.9);
}

body.techstore-theme .techstore-slide-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
}

body.techstore-theme .techstore-slide-actions .btn_1 {
    border-radius: 12px;
    min-width: 156px;
    text-align: center;
}

body.techstore-theme .techstore-slide-actions .btn_1.outline {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

body.techstore-theme .techstore-slide-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.9);
}

body.techstore-theme .techstore-slide-meta strong {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

body.techstore-theme .techstore-slide-meta span {
    font-size: 18px;
    line-height: 1.5;
}

body.techstore-theme .techstore-slide-brandmark {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
    padding-right: 4px;
}

body.techstore-theme #carousel-home .techstore-carousel-nav {
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
}

body.techstore-theme #carousel-home .techstore-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
    pointer-events: auto;
    margin-top: 36px;
}

body.techstore-theme #carousel-home .techstore-carousel-prev {
    left: 18px;
}

body.techstore-theme #carousel-home .techstore-carousel-next {
    right: 18px;
}

body.techstore-theme #carousel-home .techstore-carousel-btn:hover {
    background: rgba(14, 165, 233, 0.92);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 14px 28px rgba(2, 132, 199, 0.24);
}

body.techstore-theme #carousel-home .techstore-carousel-btn.is-disabled {
    opacity: 0.38;
    pointer-events: none;
    box-shadow: none;
}

body.techstore-theme #carousel-home .owl-nav,
body.techstore-theme #carousel-home .owl-nav.disabled {
    display: none !important;
}

body.techstore-theme #carousel-home .owl-theme .owl-dots {
    bottom: 14px;
    background: transparent;
    border: none;
    border-radius: 999px;
    width: fit-content;
    margin: 0 auto;
    padding: 6px 10px;
}

body.techstore-theme #carousel-home .owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.55);
}

body.techstore-theme #carousel-home .owl-theme .owl-dots .owl-dot.active span {
    width: 24px;
    border-radius: 999px;
    border-color: #dc2626;
    background: #dc2626;
}

body.techstore-theme #carousel-home .owl-carousel {
    position: relative;
}

body.techstore-theme .techstore-brand-section {
    margin-bottom: 10px;
}

body.techstore-theme .techstore-section-head {
    margin-bottom: 14px;
}

body.techstore-theme .techstore-section-head h2 {
    margin: 0 0 6px;
    font-size: 28px;
    color: #0f172a;
}

body.techstore-theme .techstore-section-head p {
    margin: 0;
    color: #64748b;
}

body.techstore-theme .techstore-brand-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

body.techstore-theme .techstore-brand-card {
    border: 1px solid #dbe4ef;
    background: #fff;
    border-radius: 14px;
    min-height: 114px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

body.techstore-theme .techstore-brand-card:hover {
    transform: translateY(-3px);
    border-color: #7dd3fc;
    box-shadow: 0 14px 24px rgba(2, 132, 199, 0.15);
}

body.techstore-theme .techstore-brand-card img {
    width: 110px;
    height: 40px;
    object-fit: contain;
    object-position: center;
}

body.techstore-theme .techstore-brand-card span {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

body.techstore-theme .techstore-home-grid .row.small-gutters {
    row-gap: 18px;
}

body.techstore-theme .techstore-home-grid-item .grid_item {
    height: 100%;
}

body.techstore-theme .techstore-home-grid-item .grid_item figure {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.techstore-theme .techstore-home-grid-item .grid_item h3 {
    min-height: 48px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.techstore-theme .main_title {
    margin-top: 6px;
    margin-bottom: 16px !important;
}

body.techstore-theme .margin_30 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

@media (max-width: 1199px) {
    body.techstore-theme .techstore-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body.techstore-theme .techstore-showcase-card {
        min-height: 204px;
    }

    body.techstore-theme
        #carousel-home
        .owl-carousel
        .owl-slide.techstore-slide {
        height: 500px !important;
    }
}

@media (max-width: 991px) {
    body.techstore-theme .techstore-showcase-top {
        grid-template-columns: 1fr;
        border-radius: 18px 18px 0 0;
    }

    body.techstore-theme .techstore-showcase-card {
        min-height: 180px;
        border-right: none;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    body.techstore-theme .techstore-showcase-card:last-child {
        border-bottom: none;
    }

    body.techstore-theme
        #carousel-home
        .owl-carousel
        .owl-slide.techstore-slide {
        height: 460px !important;
    }

    body.techstore-theme .techstore-showcase-hero {
        border-radius: 0 0 20px 20px;
    }

    body.techstore-theme .techstore-slide-shell {
        padding: 34px 24px 44px;
    }

    body.techstore-theme .techstore-slide-content h2 {
        font-size: clamp(40px, 8vw, 60px);
        max-width: 440px;
    }

    body.techstore-theme .techstore-slide-meta span {
        font-size: 16px;
    }

    body.techstore-theme .techstore-slide-brandmark {
        font-size: 44px;
    }

    body.techstore-theme .techstore-brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    body.techstore-theme .techstore-main-header .container,
    body.techstore-theme #carousel-home > .container,
    body.techstore-theme .techstore-brand-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    body.techstore-theme .techstore-mobile-top {
        grid-template-columns: 38px auto minmax(0, 1fr) 38px;
        gap: 8px;
        padding: 8px 0 8px;
    }

    body.techstore-theme .techstore-mobile-iconbtn {
        width: 38px;
        height: 40px;
    }

    body.techstore-theme .techstore-mobile-brand-text {
        display: none;
    }

    body.techstore-theme .techstore-mobile-brand-icon {
        width: 30px;
        height: 30px;
    }

    body.techstore-theme .techstore-mobile-search input {
        height: 40px;
        font-size: 14px;
        padding: 0 38px 0 12px;
    }

    body.techstore-theme .techstore-mobile-search button {
        width: 30px;
        height: 30px;
        right: 4px;
    }

    body.techstore-theme .techstore-mobile-tabs {
        gap: 16px;
        padding-bottom: 8px;
    }

    body.techstore-theme .techstore-mobile-tab {
        font-size: 14px;
    }

    body.techstore-theme .techstore-mobile-category-panel {
        margin-top: 8px;
        padding: 10px 12px;
    }

    body.techstore-theme .techstore-showcase {
        margin: 12px 0 18px;
    }

    body.techstore-theme .techstore-showcase-fullwidth {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    body.techstore-theme .techstore-showcase-card-inner {
        min-height: 162px;
        padding: 20px 16px 18px;
    }

    body.techstore-theme .techstore-showcase-card h3 {
        font-size: 24px;
    }

    body.techstore-theme .techstore-showcase-icons {
        margin: 16px 0 18px;
        gap: 12px;
        font-size: 22px;
    }

    body.techstore-theme .techstore-showcase-link {
        padding: 9px 18px;
        font-size: 14px;
    }

    body.techstore-theme .techstore-slide-content {
        max-width: 100%;
    }

    body.techstore-theme .techstore-slide-content .slide-kicker {
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    body.techstore-theme .techstore-slide-content h2 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    body.techstore-theme .techstore-slide-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    body.techstore-theme .techstore-slide-meta strong {
        font-size: 18px;
    }

    body.techstore-theme .techstore-slide-meta span {
        font-size: 14px;
    }

    body.techstore-theme .techstore-slide-actions {
        margin-top: 18px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    body.techstore-theme .techstore-slide-actions .btn_1 {
        min-width: 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    body.techstore-theme .techstore-slide-shell {
        padding: 26px 18px 42px;
        align-items: flex-end;
    }

    body.techstore-theme .techstore-slide-brandmark {
        display: none;
    }

    body.techstore-theme #carousel-home .techstore-carousel-nav {
        display: none;
    }

    body.techstore-theme #carousel-home .owl-theme .owl-dots {
        bottom: 10px;
        padding: 4px 8px;
    }

    body.techstore-theme .techstore-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.techstore-theme .techstore-brand-card {
        min-height: 96px;
        padding: 12px 8px;
    }

    body.techstore-theme .techstore-brand-card img {
        width: 88px;
        height: 34px;
    }

    body.techstore-theme .techstore-brand-card span {
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 399px) {
    body.techstore-theme .techstore-mobile-top {
        grid-template-columns: 34px 30px minmax(0, 1fr) 34px;
        gap: 6px;
    }

    body.techstore-theme .techstore-mobile-iconbtn {
        width: 34px;
        height: 38px;
        font-size: 18px;
    }

    body.techstore-theme .techstore-mobile-brand-icon {
        width: 28px;
        height: 28px;
    }

    body.techstore-theme .techstore-mobile-tabs {
        gap: 14px;
    }

    body.techstore-theme .techstore-slide-actions {
        grid-template-columns: 1fr;
    }
}
