/* ShuvoCart — Pickaboo-inspired Storefront CSS */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
    --primary:#1B5DD5;--primary-hover:#1550b8;--primary-light:#e8f1ff;
    --secondary:#1299e8;--red:#DC2828;--red-hover:#c02020;
    --green:#10b981;--orange:#f59e0b;
    --accent:#1B5DD5;--danger:#DC2828;
    --bg:#f5f5f5;--bg-white:#fff;
    --text:#222;--text-secondary:#555;--text-muted:#999;--text-light:#666;
    --border:#e8e8e8;--shadow:0 1px 4px rgba(0,0,0,.08);--shadow-md:0 4px 12px rgba(0,0,0,.1);
    --radius:4px;--radius-md:8px;
    --font:'Roboto',-apple-system,BlinkMacSystemFont,sans-serif;--max-w:1280px;
}
html{scroll-behavior:smooth;overflow-x:hidden}
body{font-family:var(--font);background:var(--bg);color:var(--text);line-height:1.5;-webkit-font-smoothing:antialiased;font-size:14px;overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
button,input,select,textarea{font-family:inherit}
.container{max-width:var(--max-w);margin:0 auto;padding:0 12px}

/* ═══ TOPBAR ═══ */
.topbar{background:var(--primary);color:#fff;font-size:12px}
.topbar-inner{display:flex;justify-content:space-between;align-items:center;height:34px}
.topbar-links{display:flex;gap:16px}
.topbar-links a{color:rgba(255,255,255,.9);transition:color .2s}
.topbar-links a:hover{color:#fff}

/* ═══ HEADER ═══ */
.header{background:var(--bg-white);box-shadow:0 1px 3px rgba(0,0,0,.08);position:sticky;top:0;z-index:100}
.header-row-top{display:flex;align-items:center;height:60px;gap:16px}
.header-row-search{display:none}
.logo{font-size:1.5rem;font-weight:900;color:var(--primary);white-space:nowrap;letter-spacing:-.5px}
.logo span{color:var(--red)}
.header-search{flex:1;max-width:580px;position:relative}
.header-search input{width:100%;padding:10px 44px 10px 16px;border-radius:8px;border:2px solid var(--border);background:#f8f8f8;color:var(--text);font-size:14px;outline:none;transition:all .2s}
.header-search input:focus{border-color:var(--primary);background:#fff}
.header-search input::placeholder{color:#aaa}
.header-search button{position:absolute;right:4px;top:4px;bottom:4px;width:38px;background:var(--primary);border:none;border-radius:6px;color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center}
.header-search button:hover{background:var(--primary-hover)}

/* ── Search Autocomplete Dropdown ── */
.search-autocomplete{position:absolute;top:100%;left:0;right:0;background:#fff;border:1px solid var(--border);border-top:none;border-radius:0 0 10px 10px;box-shadow:0 8px 30px rgba(0,0,0,.12);z-index:999;max-height:420px;overflow-y:auto;display:none;animation:acFadeIn .15s ease}
.search-autocomplete.active{display:block}
@keyframes acFadeIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}
.ac-item{display:flex;align-items:center;gap:12px;padding:10px 14px;cursor:pointer;transition:background .12s;text-decoration:none;color:var(--text);border-bottom:1px solid #f2f2f2}
.ac-item:last-child{border-bottom:none}
.ac-item:hover,.ac-item.ac-active{background:#f5f7ff}
.ac-item-img{width:44px;height:44px;border-radius:6px;object-fit:contain;background:#f8f8f8;flex-shrink:0;border:1px solid #eee}
.ac-item-img.no-img{display:flex;align-items:center;justify-content:center;font-size:18px;color:#ccc}
.ac-item-info{flex:1;min-width:0}
.ac-item-name{font-size:13px;font-weight:500;line-height:1.3;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ac-item-name mark{background:rgba(27,93,213,.12);color:var(--primary);font-weight:700;border-radius:2px;padding:0 1px}
.ac-item-meta{font-size:11px;color:#999;margin-top:2px}
.ac-item-price{font-size:13px;font-weight:700;color:var(--red);white-space:nowrap;text-align:right}
.ac-item-price .ac-old{font-size:11px;color:#aaa;text-decoration:line-through;font-weight:400;display:block}
.ac-no-results{padding:24px 14px;text-align:center;color:#999;font-size:13px}
.ac-footer{padding:8px 14px;text-align:center;border-top:1px solid #eee}
.ac-footer a{font-size:12px;font-weight:600;color:var(--primary)}
.ac-loading{padding:20px;text-align:center;color:#bbb;font-size:12px}
.header-actions{display:flex;gap:4px;align-items:center;margin-left:auto}
.header-action{display:flex;align-items:center;gap:6px;color:var(--text);font-size:13px;font-weight:500;padding:8px 10px;border-radius:8px;transition:background .2s}
.header-action:hover{background:var(--primary-light);color:var(--primary)}
.header-action svg{flex-shrink:0}
.action-label{white-space:nowrap}
.cart-action{position:relative}
.cart-count{position:absolute;top:0;left:20px;background:var(--red);color:#fff;font-size:10px;font-weight:700;min-width:16px;height:16px;border-radius:8px;display:flex;align-items:center;justify-content:center;padding:0 3px}
.mobile-toggle{display:none;background:none;border:none;color:var(--text);cursor:pointer;padding:6px;border-radius:6px}
.desktop-only{display:flex}

/* ═══ CATEGORY NAV ═══ */
.cat-nav{background:var(--bg-white);border-bottom:1px solid var(--border)}
.cat-nav-inner{display:flex;align-items:center;height:40px}
.cat-nav-toggle{display:flex;align-items:center;gap:6px;font-weight:600;font-size:13px;color:#fff;background:var(--primary);padding:0 16px;height:100%;cursor:pointer;white-space:nowrap;flex-shrink:0}
.cat-nav-toggle:hover{background:var(--primary-hover)}
.cat-nav-list{display:flex;align-items:center;overflow-x:auto;scrollbar-width:none;flex:1}
.cat-nav-list::-webkit-scrollbar{display:none}
.cat-nav-list a{padding:10px 14px;font-size:13px;font-weight:500;color:var(--text-secondary);white-space:nowrap;transition:all .15s;border-bottom:2px solid transparent}
.cat-nav-list a:hover{color:var(--primary);border-bottom-color:var(--primary)}
.view-all-link{color:var(--primary)!important;font-weight:600!important}

/* ═══ MOBILE MENU ═══ */
.mobile-overlay{position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:499;opacity:0;pointer-events:none;transition:opacity .3s}
.mobile-overlay.show{opacity:1;pointer-events:auto}
.mobile-menu{position:fixed;top:0;left:-100%;width:280px;height:100vh;background:#fff;z-index:500;transition:left .3s ease;overflow-y:auto;box-shadow:4px 0 20px rgba(0,0,0,.15)}
.mobile-menu.open{left:0}
.mobile-menu-header{display:flex;justify-content:space-between;align-items:center;padding:14px 16px;border-bottom:1px solid var(--border)}
.mobile-menu-header .logo{font-size:1.2rem}
.mobile-menu-links a{display:flex;align-items:center;gap:8px;padding:13px 16px;border-bottom:1px solid #f5f5f5;font-size:14px;color:var(--text);transition:background .15s}
.mobile-menu-links a:hover{background:var(--primary-light)}

/* ═══ HERO SLIDER ═══ */
.hero-section{padding:10px 0 0}
.hero-slider{position:relative;border-radius:10px;overflow:hidden;height:300px;max-height:300px;background:#edf0f4}
.hero-slider .slide{position:absolute;inset:0;opacity:0;transition:opacity .5s ease}
.hero-slider .slide.active{opacity:1}
.hero-slider .slide img,.hero-slider .slide picture{width:100%;height:100%;display:block}
.hero-slider .slide img{object-fit:contain;object-position:center}
.hero-slider .slide a{display:block;width:100%;height:100%}
.hero-prev,.hero-next{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:34px;height:34px;border-radius:50%;border:none;background:rgba(255,255,255,.92);color:#333;font-size:14px;cursor:pointer;box-shadow:0 2px 8px rgba(0,0,0,.15);display:flex;align-items:center;justify-content:center;transition:all .2s;opacity:0}
.hero-slider:hover .hero-prev,.hero-slider:hover .hero-next{opacity:1}
.hero-prev{left:10px}.hero-next{right:10px}
.hero-dots{position:absolute;bottom:8px;left:50%;transform:translateX(-50%);display:flex;gap:5px;z-index:5}
.hero-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.5);border:none;cursor:pointer;transition:all .25s}
.hero-dot.active{background:#fff;width:18px;border-radius:4px}

/* ═══ PROMO BANNERS ═══ */
.promo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:10px}
.promo-item{border-radius:var(--radius-md);overflow:hidden;transition:transform .2s,box-shadow .2s}
.promo-item:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.promo-item img{width:100%;aspect-ratio:2.2/1;object-fit:cover}

/* ═══ CATEGORY SHOWCASE ═══ */
.cat-showcase{padding:16px 0 8px;background:var(--bg-white);border-radius:var(--radius-md)}
.cat-showcase-title{font-size:14px;font-weight:700;margin-bottom:12px;color:var(--text);padding:0 4px}
.cat-showcase-grid{display:flex;gap:6px;overflow-x:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch;padding-bottom:4px}
.cat-showcase-grid::-webkit-scrollbar{display:none}
.cat-showcase-item{display:flex;flex-direction:column;align-items:center;gap:6px;padding:12px 8px;background:var(--bg-white);border-radius:var(--radius-md);border:1px solid var(--border);transition:all .2s;cursor:pointer;text-align:center;min-width:100px;flex:1}
.cat-showcase-item:hover{border-color:var(--primary);box-shadow:var(--shadow);background:var(--primary-light)}
.cat-showcase-item .cat-icon{width:50px;height:50px;border-radius:50%;background:linear-gradient(135deg,#e8f1ff,#f0f5ff);display:flex;align-items:center;justify-content:center;font-size:1.4rem;transition:transform .2s}
.cat-showcase-item:hover .cat-icon{transform:scale(1.1)}
.cat-showcase-item .cat-label{font-size:11px;font-weight:600;color:var(--text-secondary);line-height:1.3}

/* ═══ HP SECTION ═══ */
.hp-section{padding:16px 0 6px}
.hp-section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;padding:8px 14px;background:var(--bg-white);border-radius:var(--radius-md);border-left:4px solid var(--primary)}
.hp-section-title{font-size:15px;font-weight:700;color:var(--text);display:flex;align-items:center;gap:6px}
.hp-view-all{color:var(--primary);font-weight:600;font-size:12px}
.hp-view-all:hover{text-decoration:underline}

/* ═══ PRODUCT GRID ═══ */
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:8px}

/* ═══ PRODUCT CARD ═══ */
.product-card{background:var(--bg-white);border-radius:var(--radius-md);overflow:hidden;transition:all .2s;display:flex;flex-direction:column;border:1px solid #eee}
.product-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.1);transform:translateY(-2px)}
.product-card .product-card-link{display:flex;flex-direction:column;flex:1}
.product-card .img-wrap{position:relative;aspect-ratio:1;overflow:hidden;background:#fff}
.product-card .img-wrap img{width:100%;height:100%;object-fit:contain;padding:8px;transition:transform .3s}
.product-card:hover .img-wrap img{transform:scale(1.05)}
.product-card .badge-sale{position:absolute;top:6px;left:6px;background:var(--red);color:#fff;padding:2px 7px;border-radius:3px;font-size:11px;font-weight:700}
.product-card .info{padding:8px 10px 6px;flex:1;display:flex;flex-direction:column;border-top:1px solid #f5f5f5}
.product-card .category-name{font-size:10px;color:var(--primary);font-weight:500;margin-bottom:3px}
.product-card .product-name{font-size:13px;font-weight:500;margin-bottom:6px;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;color:var(--text);min-height:34px}
.product-card .price-row{display:flex;align-items:baseline;gap:6px;margin-top:auto}
.product-card .price{font-size:15px;font-weight:700;color:var(--primary)}
.product-card .old-price{font-size:11px;color:var(--text-muted);text-decoration:line-through}
.product-card .card-actions{padding:6px 10px 10px;display:flex;gap:5px}
.product-card .card-btn{text-align:center;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.product-card .card-btn-order{flex:1}
.product-card .card-cart-form{flex-shrink:0}
.product-card .card-btn-cart{width:42px;padding:6px 0;font-size:14px}

/* ═══ BUTTONS ═══ */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:5px;padding:8px 16px;border-radius:var(--radius);font-weight:600;font-size:13px;border:none;cursor:pointer;transition:all .2s;text-align:center;line-height:1.4}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-hover)}
.btn-accent{background:var(--red);color:#fff}
.btn-accent:hover{background:var(--red-hover)}
.btn-outline{background:transparent;color:var(--primary);border:1.5px solid var(--primary)}
.btn-outline:hover{background:var(--primary);color:#fff}
.btn-sm{padding:6px 10px;font-size:12px}
.btn-lg{padding:11px 22px;font-size:14px}
.btn-block{display:flex;width:100%}
.card-btn-order{background:var(--primary);color:#fff;border:none;border-radius:var(--radius)}
.card-btn-order:hover{background:var(--primary-hover)}

/* ═══ ALERTS ═══ */
.alert{padding:10px 16px;border-radius:var(--radius);margin-bottom:10px;font-size:13px;font-weight:500;animation:fadeIn .3s ease}
.alert-success{background:#ecfdf5;color:#065f46;border:1px solid #a7f3d0}
.alert-error{background:#fef2f2;color:#991b1b;border:1px solid #fecaca}
@keyframes fadeIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}

/* ═══ FORMS ═══ */
.form-group{margin-bottom:16px}
.form-label{display:block;font-weight:600;font-size:13px;margin-bottom:5px}
.form-input{width:100%;padding:10px 14px;border:1.5px solid var(--border);border-radius:var(--radius);font-size:14px;transition:border-color .2s;background:#fff}
.form-input:focus{outline:none;border-color:var(--primary)}
.form-select{width:100%;padding:10px 14px;border:1.5px solid var(--border);border-radius:var(--radius);font-size:14px;background:#fff}

/* ═══ BUTTONS ═══ */
.btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 20px;border:2px solid transparent;border-radius:var(--radius);font-size:14px;font-weight:600;cursor:pointer;transition:all .2s;text-decoration:none;line-height:1.4}
.btn-primary{background:var(--primary);color:#fff;border-color:var(--primary)}
.btn-primary:hover{background:var(--primary-hover);border-color:var(--primary-hover)}
.btn-accent{background:var(--primary);color:#fff;border-color:var(--primary)}
.btn-accent:hover{background:var(--primary-hover);border-color:var(--primary-hover)}
.btn-outline{background:transparent;color:var(--primary);border-color:var(--primary)}
.btn-outline:hover{background:var(--primary);color:#fff}
.btn-lg{padding:14px 28px;font-size:16px}
.btn-block{display:flex;width:100%}

/* ═══ FOOTER ═══ */
.footer{background:#2d2d2d;color:rgba(255,255,255,.75);padding:36px 0 0;margin-top:24px}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:28px;margin-bottom:20px}
.footer-brand{font-size:1.3rem;font-weight:900;color:#fff;margin-bottom:8px}
.footer-brand span{color:var(--red)}
.footer-col p{font-size:13px;line-height:1.6;margin-bottom:4px}
.footer-col h4{color:#fff;font-size:14px;font-weight:700;margin-bottom:10px}
.footer-col a{color:rgba(255,255,255,.6);display:block;margin-bottom:7px;font-size:13px;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-social{display:flex;gap:6px;margin-top:10px}
.footer-social a{width:30px;height:30px;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700}
.footer-social a:hover{background:var(--primary)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:12px 0;display:flex;justify-content:space-between;align-items:center;font-size:12px}
.payment-methods{color:rgba(255,255,255,.4)}

/* ═══ HERO FALLBACK ═══ */
.hero{background:linear-gradient(135deg,#1B5DD5,#1299e8);padding:40px 0;color:#fff;text-align:center}
.hero h1{font-size:1.8rem;font-weight:800;margin-bottom:10px;line-height:1.3}
.hero p{font-size:14px;color:rgba(255,255,255,.85);margin-bottom:18px;max-width:480px;margin-left:auto;margin-right:auto}

/* ═══ LEGACY ═══ */
.section{padding:28px 0}
.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.section-title{font-size:17px;font-weight:700}
.view-all{color:var(--primary);font-weight:600;font-size:13px}
.pagination{display:flex;gap:4px;justify-content:center;margin-top:20px;flex-wrap:wrap}
.pagination a,.pagination span{padding:8px 12px;border-radius:var(--radius);font-size:13px;font-weight:500}
.pagination a{background:#fff;border:1px solid var(--border);color:var(--text)}
.pagination a:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
.pagination .active span{background:var(--primary);color:#fff;border:1px solid var(--primary)}
table{width:100%;border-collapse:collapse}
table th,table td{padding:10px 14px;text-align:left;border-bottom:1px solid var(--border);font-size:13px}
table th{font-weight:600;background:#f8f9fa;color:var(--text-muted);font-size:12px;text-transform:uppercase}
.text-center{text-align:center}.text-muted{color:var(--text-muted)}
.mt-2{margin-top:16px}.mt-4{margin-top:32px}.mb-2{margin-bottom:16px}.mb-4{margin-bottom:32px}
.flex{display:flex}.flex-between{display:flex;justify-content:space-between;align-items:center}
.gap-1{gap:8px}.gap-2{gap:16px}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px}

/* ══════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════ */
@media(max-width:1024px){
    .product-grid{grid-template-columns:repeat(auto-fill,minmax(155px,1fr));gap:6px}
    .footer-grid{grid-template-columns:1fr 1fr;gap:20px}
    .promo-grid{grid-template-columns:repeat(2,1fr)}
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   Pickaboo-style 2-row header
   ══════════════════════════════ */
@media(max-width:768px){
    /* Topbar: hide on mobile like Pickaboo */
    .topbar{display:none}

    /* Header: 2-row Pickaboo layout */
    .header-row-top{height:48px;gap:8px}
    .mobile-toggle{display:flex;order:-1}
    .logo{font-size:1.15rem}
    .desktop-search{display:none!important}
    .desktop-only{display:none!important}
    .action-label{display:none}
    .header-action{padding:6px}

    /* Row 2: full-width search */
    .header-row-search{display:block;padding:0 0 8px}
    .mobile-search-form{max-width:none}
    .mobile-search-form input{padding:9px 38px 9px 12px;font-size:13px;border-width:1.5px;border-radius:6px;background:#f5f5f5}
    .mobile-search-form button{width:34px;border-radius:0 6px 6px 0;right:0;top:0;bottom:0}

    /* Category nav: horizontal scroll strip */
    .cat-nav{border-bottom:none;overflow:hidden}
    .cat-nav-inner{height:36px;gap:0;overflow:hidden}
    .cat-nav-toggle{padding:0 10px;font-size:12px}
    .cat-toggle-text{display:none}
    .cat-nav-list{overflow-x:auto;-webkit-overflow-scrolling:touch}
    .cat-nav-list a{padding:8px 10px;font-size:12px}

    /* Hero slider */
    .hero-section{padding:6px 0 0}
    .hero-slider{height:160px;max-height:160px;border-radius:8px}
    .hero-slider .slide img{object-fit:contain;object-position:center}
    .hero-prev,.hero-next{width:28px;height:28px;font-size:12px;opacity:1}
    .hero-prev{left:6px}.hero-next{right:6px}
    .hero-dots{bottom:5px;gap:4px}
    .hero-dot{width:6px;height:6px}
    .hero-dot.active{width:14px}

    /* Promo */
    .promo-grid{grid-template-columns:1fr 1fr;gap:4px;margin-top:6px}
    .promo-item{border-radius:4px}

    /* Categories — horizontal scroll on mobile */
    .cat-showcase{padding:10px 0 4px;border-radius:0}
    .cat-showcase-title{font-size:13px;margin-bottom:8px}
    .cat-showcase-grid{gap:6px;flex-wrap:nowrap}
    .cat-showcase-item{min-width:72px;flex:0 0 auto;padding:8px 4px;gap:5px;border:none}
    .cat-showcase-item .cat-icon{width:42px;height:42px;font-size:1.1rem}
    .cat-showcase-item .cat-label{font-size:10px}

    /* Sections */
    .hp-section{padding:10px 0 4px}
    .hp-section-header{padding:7px 10px;margin-bottom:6px;border-left-width:3px}
    .hp-section-title{font-size:13px;gap:4px}
    .hp-view-all{font-size:11px}

    /* Product grid: 2 columns like Pickaboo */
    .product-grid{grid-template-columns:repeat(2,1fr);gap:4px}
    .product-card{border-radius:6px}
    .product-card .img-wrap img{padding:6px}
    .product-card .info{padding:6px 8px 4px}
    .product-card .category-name{font-size:9px;margin-bottom:2px}
    .product-card .product-name{font-size:12px;min-height:30px;margin-bottom:4px;-webkit-line-clamp:2}
    .product-card .price{font-size:14px}
    .product-card .old-price{font-size:10px}
    .product-card .card-actions{padding:4px 8px 8px;gap:3px}
    .product-card .card-btn{font-size:11px;padding:5px 6px;white-space:nowrap}
    .product-card .card-btn-cart{width:38px;font-size:13px;padding:5px 0}

    /* Footer */
    .footer{padding:28px 0 0;margin-top:16px}
    .footer-grid{grid-template-columns:1fr;gap:16px;margin-bottom:14px}
    .footer-col h4{margin-bottom:6px;font-size:13px}
    .footer-bottom{flex-direction:column;gap:4px;text-align:center;padding:10px 0}

    /* Misc */
    .grid-2{grid-template-columns:1fr}
    .hero h1{font-size:1.3rem}
    .hero p{font-size:13px}
    .hero{padding:28px 0}
    .container{padding:0 8px}
}

/* ══════════════════════════════
   RESPONSIVE — SMALL PHONE (≤400px)
   ══════════════════════════════ */
@media(max-width:400px){
    .header-row-top{height:44px;gap:6px}
    .logo{font-size:1.05rem}
    .mobile-search-form input{padding:8px 34px 8px 10px;font-size:12px}
    .product-grid{gap:3px}
    .product-card .img-wrap img{padding:4px}
    .product-card .info{padding:5px 6px 3px}
    .product-card .product-name{font-size:11px;min-height:28px}
    .product-card .price{font-size:13px}
    .product-card .card-actions{padding:3px 6px 6px}
    .product-card .card-btn{font-size:10px;padding:4px 4px;white-space:nowrap}
    .product-card .card-btn-cart{width:34px;font-size:12px;padding:4px 0}
    .cat-showcase-item{min-width:66px}
    .cat-showcase-item .cat-icon{width:38px;height:38px;font-size:1rem}
    .cat-showcase-item .cat-label{font-size:9px}
}
