*{box-sizing:border-box}body{margin:0;font-family:Inter,Arial,sans-serif;background:#09111a;color:#eef4f8}a{color:inherit;text-decoration:none}.wrap{width:min(1180px,92%);margin:auto}.top{position:sticky;top:0;z-index:20;background:#07101aee;border-bottom:1px solid #1b2a38;backdrop-filter:blur(12px)}.nav{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:25px}.brand img{width:190px;max-height:65px;object-fit:contain}.nav nav{display:flex;gap:22px;align-items:center;font-weight:800}.badge{background:#65df2e;color:#061008;border-radius:999px;padding:3px 8px;font-size:12px}.hero{padding:55px 0 30px;display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}.hero h1{font-size:clamp(42px,6vw,72px);line-height:.95;margin:8px 0 20px}.green{color:#65df2e}.muted{color:#9fb0be}.panel{background:#101c27;border:1px solid #223442;border-radius:20px;padding:28px}.logo-box{background:#050a0e;border-radius:16px;padding:18px}.logo-box img{width:100%;display:block;max-height:340px;object-fit:contain}.btn{display:inline-block;background:#65df2e;color:#061008;font-weight:900;padding:13px 19px;border-radius:8px;border:0;cursor:pointer}.btn.dark{background:#162432;color:#fff}.section{padding:30px 0}.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.card{background:#101c27;border:1px solid #223442;border-radius:16px;padding:18px}.card img{width:100%;height:180px;object-fit:contain;background:#0a1118;border-radius:10px}.price{font-size:21px;font-weight:900;margin:10px 0}.stock{font-size:13px;color:#8fdc77}.actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap}.input,.select,textarea{width:100%;padding:12px;border-radius:8px;border:1px solid #314656;background:#08111a;color:#fff}.two{display:grid;grid-template-columns:1fr 1fr;gap:18px}.table{width:100%;border-collapse:collapse}.table th,.table td{padding:12px;border-bottom:1px solid #263846;text-align:left}.notice{padding:14px;border-radius:10px;background:#10251a;border:1px solid #28552f;margin:15px 0}.error{background:#34151a;border-color:#6c2830}.search{display:flex;gap:10px;margin:15px 0}.search input{flex:1}footer{margin-top:60px;padding:28px 0;border-top:1px solid #1b2a38;color:#8193a2;font-size:13px}@media(max-width:850px){.hero,.two{grid-template-columns:1fr}.grid{grid-template-columns:1fr 1fr}.nav{align-items:flex-start;padding:12px 0}.nav nav{flex-wrap:wrap;justify-content:flex-end}}@media(max-width:560px){.grid{grid-template-columns:1fr}.nav{flex-direction:column}.hero{padding-top:30px}}
/* =========================================================
   PRODUCT GRID FIX
========================================================= */

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.product-card {
    background: #0d1827;
    border: 1px solid #1d3044;
    border-radius: 14px;
    overflow: hidden;
    max-width: 360px;
    width: 100%;
    margin: 0;
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: contain;
    display: block;
    background: #08111c;
    padding: 12px;
}

.product-image.placeholder {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #08111c;
    color: #8fa3b8;
}

.product-body {
    padding: 18px;
}

.product-body h3 {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 22px;
}

.product-body .price {
    font-size: 22px;
    font-weight: 700;
    margin: 12px 0;
}

.product-card .btn {
    display: inline-block;
    width: auto;
    margin-top: 10px;
}

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

    .product-card {
        max-width: 100%;
    }

    .product-image {
        height: 220px;
    }
}/* =========================================================
   ZIMTECH PRODUCT CARD SIZE FIX
   Keep original shop design - smaller product cards
========================================================= */

.grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
    align-items: stretch !important;
}

.grid .card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: hidden !important;
    background: #0d1827 !important;
    border: 1px solid #1d3044 !important;
    border-radius: 14px !important;
    padding: 16px !important;
    box-sizing: border-box !important;
}

.grid .card img {
    display: block !important;
    width: 100% !important;
    height: 220px !important;
    max-width: 100% !important;
    max-height: 220px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #08111c !important;
    border-radius: 10px !important;
    margin: 0 0 15px 0 !important;
}

.grid .card h3 {
    font-size: 19px !important;
    line-height: 1.3 !important;
    margin: 10px 0 !important;
}

.grid .card .price {
    font-size: 21px !important;
    font-weight: 700 !important;
    margin: 12px 0 !important;
}

.grid .card .btn {
    width: auto !important;
    display: inline-block !important;
    margin-top: 8px !important;
}

@media (max-width: 1100px) {

    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}

@media (max-width: 700px) {

    .grid {
        grid-template-columns: 1fr !important;
    }

    .grid .card img {
        height: 210px !important;
        max-height: 210px !important;
    }

}