    :root {
      --ink: #0f172a;
      --muted: #64748b;
      --border: #e5e7eb;

      --top: #0b1220;

      --blue: #2563eb;
      --blue2: #3b82f6;
      --navBlueA: #0b4aa5;
      --navBlueB: #2563eb;

      --shadow: 0 18px 40px rgba(15, 23, 42, .10);
      --shadow2: 0 10px 24px rgba(15, 23, 42, .08);
    }

    html,
    body {
      overflow-x: hidden;
    }

    body {
      font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--ink);
      background: #fff;
    }

    .topband {
      background: linear-gradient(90deg, #0b1220 0%, #101a2d 100%);
      color: rgba(255, 255, 255, .92);
      font-size: .92rem;
    }

    .topband a {
      color: rgba(255, 255, 255, .92);
      text-decoration: none;
    }

    .topband a:hover {
      text-decoration: underline;
    }

    .mast {
      border-bottom: 1px solid var(--border);
      position: relative;
      z-index: 1000;
    }

    .mastrow {
      background: #fff;
      border-bottom: 1px solid rgba(229, 231, 235, .75);
    }

    .brandwrap {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
    }

    .logo-img {
      height: 74px;
      width: auto;
      display: block;
    }

    .searchbar {
      display: flex;
      align-items: center;
      gap: .55rem;
      background: #fff;
      border: 1px solid #dbe3f3;
      border-radius: 999px;
      padding: .48rem .55rem .48rem .95rem;
      box-shadow: 0 10px 22px rgba(2, 132, 199, .08);
      max-width: 720px;
      margin-inline: auto;
    }

    .searchbar input {
      border: 0;
      outline: 0;
      width: 100%;
      font-weight: 900;
      color: var(--ink);
    }

    .searchbar input::placeholder {
      color: #94a3b8;
      font-weight: 800;
    }

    .btn-search {
      border-radius: 999px;
      border: 0;
      background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
      color: #fff;
      font-weight: 900;
      padding: .55rem 1.05rem;
      box-shadow: 0 12px 22px rgba(37, 99, 235, .20);
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .btn-search:hover {
      opacity: .95;
    }

    .actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: .5rem;
      flex-wrap: wrap;
      white-space: nowrap;
    }

    @media (max-width: 575.98px) {
      .logo-img {
        height: 59px;
      }

      .actions {
        flex-direction: column;
        align-items: flex-end;
        gap: .45rem;
      }

      .actions > .dropdown {
        width: 100%;
        display: flex;
        justify-content: flex-end;
      }

      .navline .searchbar {
        padding: .35rem .5rem .35rem .75rem;
        height: 44px;
      }

      .navline .searchbar input {
        background: #fff;
      }

      .navline .navbar-toggler {
        padding: 0 1rem;
        line-height: 1;
        height: 44px;
        display: inline-flex;
        align-items: center;
      }
    }
    @media (min-width: 576px) {
      .cart-qty-inline {
        flex-wrap: nowrap;
      }
      .cart-qty-cell {
        white-space: nowrap;
      }
      .cart-action-cell {
        white-space: nowrap;
      }
      .cart-qty-inline .qty-inline {
        order: 2;
      }
      .cart-qty-inline .btn-icon-mobile {
        order: 3;
      }
    }

    .actions > .dropdown {
      flex: 1 1 auto;
    }

    @media (min-width: 1200px) {
      .actions {
        flex-wrap: nowrap;
      }
      .actions > .dropdown {
        flex: 0 0 auto;
      }
    }

    .btn-soft {
      border-radius: 999px;
      border: 1px solid #d7dfef;
      background: #fff;
      color: var(--ink);
      font-weight: 900;
      padding: .45rem .85rem;
      font-size: .92rem;
      line-height: 1.1;
    }

    .btn-soft:hover {
      background: #f3f6ff;
      border-color: #cdd8f1;
    }

    .btn-order {
      border-radius: 999px;
      border: 1px solid #d7dfef;
      background: #fff;
      font-weight: 900;
      padding: .45rem .85rem;
      font-size: .92rem;
      line-height: 1.1;
    }

    .pill-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 20px;
      min-width: 24px;
      padding: 0 .45rem;
      margin-left: .35rem;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
      color: #fff;
      font-size: .78rem;
      font-weight: 900;
    }

    .dropdown-menu {
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      z-index: 2000;
    }

    .navline {
      background: linear-gradient(90deg, var(--navBlueA) 0%, var(--navBlueB) 55%, var(--blue2) 100%);
      border-top: 0;
      border-bottom: 0;
      position: relative;
      overflow: visible;
      z-index: 1001;
    }

    .navline::before {
      content: "";
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(520px 260px at 18% 10%, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(680px 320px at 70% 0%, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, 0) 62%),
        radial-gradient(520px 260px at 95% 70%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 60%);
      transform: rotate(-6deg);
      pointer-events: none;
    }

    .navline .container {
      position: relative;
      z-index: 1;
    }

    .navbar .nav-link {
      font-weight: 900;
      color: rgba(255, 255, 255, .95);
      padding-top: .7rem;
      padding-bottom: .7rem;
    }

    .navbar {
      position: relative;
      z-index: 1002;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link:focus {
      color: #fff;
      text-decoration: none;
    }

    .navbar .nav-item .nav-link {
      border-radius: 999px;
      padding-left: .85rem;
      padding-right: .85rem;
    }

    .navbar .nav-item .nav-link:hover {
      background: rgba(255, 255, 255, .14);
    }

    .nav-hours {
      color: rgba(255, 255, 255, .88);
      font-weight: 900;
    }

    .nav-hours .muted {
      color: rgba(255, 255, 255, .70);
      font-weight: 800;
    }

    .navbar-toggler {
      border-color: rgba(255, 255, 255, .35);
      box-shadow: none !important;
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    @media (max-width: 991.98px) {
      .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, .45);
        color: #fff;
        padding: .4rem .85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        font-weight: 900;
      }

      .navbar-toggler:focus {
        box-shadow: 0 0 0 .15rem rgba(255, 255, 255, .25) !important;
      }

      .navline .searchbar {
        max-width: 100%;
        margin-inline: 0;
      }
    }

    .hero {
      position: relative;
      padding: 26px 0 38px 0;
      overflow: hidden;
      background-image: url("/assets/images/hero.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 1;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .88) 42%, rgba(255, 255, 255, .65) 70%, rgba(255, 255, 255, .20) 100%),
        radial-gradient(900px 420px at 20% 10%, rgba(59, 130, 246, .18) 0%, rgba(59, 130, 246, 0) 58%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15), inset 0 -120px 180px rgba(15, 23, 42, .12);
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    .hero-card {
      border: 1px solid rgba(232, 238, 252, .95);
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(8px);
    }

    .hero-left {
      padding: 34px;
    }

    .hero-title {
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.05;
      font-size: clamp(2rem, 2.6vw, 3rem);
      margin: 0 0 10px 0;
    }

    .hero-sub {
      color: #475569;
      font-weight: 800;
      margin: 0 0 18px 0;
      font-size: 1.05rem;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: #e9f2ff;
      color: #123a7a;
      border: 1px solid #d7e7ff;
      border-radius: 999px;
      padding: .45rem .75rem;
      font-weight: 900;
      font-size: .9rem;
      margin: .25rem .35rem .25rem 0;
      white-space: nowrap;
    }

    .hero-actions .btn {
      border-radius: 999px;
      font-weight: 900;
      padding: .7rem 1rem;
    }

    .btn-primary-soft {
      border-radius: 999px;
      padding: .7rem 1rem;
      font-weight: 900;
      background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
      border: 0;
      color: #fff;
      box-shadow: 0 12px 22px rgba(37, 99, 235, .22);
    }

    .btn-primary-soft:hover {
      opacity: .95;
    }

    .btn-outline-soft2 {
      border: 1px solid #d7dfef;
      background: #fff;
      color: var(--ink);
      border-radius: 999px;
      font-weight: 900;
      padding: .7rem 1rem;
    }

    .btn-outline-soft2:hover {
      background: #f3f6ff;
      border-color: #cdd8f1;
    }

    .hero-right {
      padding: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(1200px 450px at 40% 20%, rgba(59, 130, 246, .16) 0%, rgba(59, 130, 246, .06) 40%, rgba(255, 255, 255, 0) 70%);
    }

    .quick {
      width: 100%;
      border: 1px solid #e8eefc;
      border-radius: 18px;
      background: #fff;
      padding: 16px;
      box-shadow: var(--shadow2);
    }

    .qlink {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding: 11px 12px;
      border-radius: 14px;
      border: 1px solid #eef2ff;
      text-decoration: none;
      color: inherit;
      font-weight: 900;
      margin-top: .6rem;
      background: #fbfdff;
    }

    .qlink small {
      display: block;
      color: #64748b;
      font-weight: 800;
    }

    .qlink:hover {
      background: #f2f7ff;
      border-color: #dce7ff;
    }

    .section-title {
      font-weight: 900;
      letter-spacing: -0.02em;
      margin: 34px 0 14px 0;
      font-size: 1.8rem;
    }

    .cat-card {
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
      background: #fff;
      height: 100%;
      display: block;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .cat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .cat-img {
      height: 140px;
      background: #e5e7eb;
      background-size: cover;
      background-position: center;
    }

    .cat-body {
      padding: 14px 14px 16px 14px;
    }

    .cat-name {
      margin: 0;
      font-weight: 900;
      color: #0b4aa5;
    }

    .cat-desc {
      margin: 4px 0 0 0;
      color: #64748b;
      font-weight: 800;
      font-size: .95rem;
    }

    .bg-soft-gradient {
      background:
        radial-gradient(1200px 600px at 15% -10%, rgba(86, 204, 242, .24) 0%, rgba(86, 204, 242, 0) 60%),
        radial-gradient(900px 500px at 85% 0%, rgba(47, 128, 237, .16) 0%, rgba(47, 128, 237, 0) 55%),
        linear-gradient(180deg, #f6fbff 0%, #ffffff 55%);
    }

    .btn-pill {
      border-radius: 999px !important;
      padding: .65rem 1rem;
      font-weight: 900;
      letter-spacing: .01em;
    }

    .btn-primary {
      background: #2f80ed;
      border-color: #2f80ed;
    }

    .btn-primary:hover {
      background: #2563eb;
      border-color: #2563eb;
    }

    .btn-success {
      background: #16a34a;
      border-color: #16a34a;
    }

    .btn-success:hover {
      background: #15803d;
      border-color: #15803d;
    }

    .btn-outline {
      border: 1px solid rgba(15, 23, 42, 0.10);
      background: #fff;
      color: var(--ink);
    }

    .btn-outline:hover {
      background: #f6fbff;
      border-color: rgba(47, 128, 237, .35);
      color: var(--ink);
    }

    .card-soft {
      border: 1px solid rgba(15, 23, 42, 0.10);
      border-radius: 18px;
      box-shadow: var(--shadow2);
      background: #fff;
      overflow: hidden;
    }

    .mobile-sticky {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1200;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: .5rem 0;
    }

    @media (max-width: 991.98px) {
      #filtersPanel {
        margin-top: .75rem;
      }
      body {
        padding-bottom: 72px;
      }
      .mobile-filters {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 76px;
        z-index: 1300;
        padding: 0 12px;
      }
      .mobile-filters .card-soft {
        max-height: 70vh;
        overflow-y: auto;
      }
      .table-responsive {
        overflow-x: auto;
      }
      .table {
        width: 100%;
      }
      .qty {
        width: 30px;
        padding: .3rem .35rem;
        text-align: center;
      }
      .cart-qty-inline {
        flex-wrap: nowrap !important;
        gap: .4rem;
      }
      .cart-qty-inline .qty {
        flex: 0 0 auto;
      }
      .cart-qty-inline .btn-icon-mobile {
        flex: 0 0 30px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        padding: 0;
      }
      .btn-icon-mobile {
        min-width: 30px;
        padding: .2rem .45rem;
      }
      .btn-placeholder {
        display: inline-flex;
        visibility: hidden;
        pointer-events: none;
        height: 30px;
      }
      .cart-summary-card {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        margin: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
      }
      body.pwa-banner-visible .cart-summary-card {
        bottom: 64px;
      }
    }

    .page-hero {
      border: 1px solid rgba(15, 23, 42, 0.10);
      border-radius: 22px;
      background: rgba(255, 255, 255, .70);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-image-bg {
      position: relative;
      overflow: hidden;
    }

    .hero-image-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--hero-bg);
      background-size: cover;
      background-position: center;
      filter: blur(4px);
      opacity: 0.8;
      transform: scale(1.05);
      z-index: 0;
    }

    .hero-image-content {
      position: relative;
      z-index: 1;
    }

    .hero-pad {
      padding: 1.4rem;
    }

    @media (min-width: 992px) {
      .hero-pad {
        padding: 1.8rem;
      }
    }

    .hero-title-alt {
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin: 0;
    }

    .muted {
      color: var(--muted);
    }

    .mini-item {
      display: flex;
      align-items: center;
      gap: .85rem;
      padding: .75rem 0;
      border-bottom: 1px solid #f1f5f9;
    }

    .mini-item:last-child {
      border-bottom: 0;
    }
    .mini-item.is-active {
      background: #f8fafc;
      box-shadow: inset 0 0 0 1px #e2e8f0;
      border-radius: 12px;
    }
    .mini-item.cart-toggle {
      cursor: pointer;
    }
    .inorder-updated {
      color: #1b5e20;
      font-weight: 800;
    }
    .flash {
      animation: flashPulse .6s ease;
    }
    @keyframes flashPulse {
      0% { background: rgba(22, 163, 74, 0.15); }
      100% { background: transparent; }
    }

    .mini-thumb {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .mini-thumb img {
      max-width: 85%;
      max-height: 85%;
    }

    .badge-soft {
      background: #eef6ff;
      border: 1px solid rgba(47, 128, 237, .20);
      color: #0b3b86;
      font-weight: 900;
      border-radius: 999px;
      padding: .42rem .7rem;
      font-size: .86rem;
      white-space: nowrap;
    }

    .badge-soft-success {
      background: #ecfdf3;
      border: 1px solid rgba(22, 163, 74, .25);
      color: #166534;
    }

    .badge-soft-warning {
      background: #fff7ed;
      border: 1px solid rgba(217, 119, 6, .25);
      color: #9a3412;
    }

    .badge-soft-danger {
      background: #fef2f2;
      border: 1px solid rgba(220, 38, 38, .25);
      color: #991b1b;
    }

    .badge-soft-muted {
      background: #f1f5f9;
      border: 1px solid rgba(148, 163, 184, .35);
      color: #475569;
    }

    .prod-card {
      border: 1px solid rgba(15, 23, 42, 0.10);
      border-radius: 18px;
      background: #fff;
      overflow: hidden;
      box-shadow: var(--shadow2);
      transition: transform .12s ease, box-shadow .12s ease;
      height: 100%;
    }

    .prod-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .prod-top {
      background: linear-gradient(180deg, #f6fbff 0%, #fff 70%);
      border-bottom: 1px solid rgba(15, 23, 42, 0.10);
      padding: .9rem;
      display: grid;
      place-items: center;
      height: 190px;
      position: relative;
    }

    .prod-top img {
      max-width: 86%;
      max-height: 150px;
      width: auto;
      height: auto;
      display: block;
    }

    .pill {
      position: absolute;
      top: .75rem;
      left: .75rem;
      display: inline-flex;
      gap: .4rem;
      align-items: center;
      padding: .35rem .6rem;
      border-radius: 999px;
      font-weight: 900;
      font-size: .78rem;
      border: 1px solid rgba(15, 23, 42, 0.10);
      background: rgba(255, 255, 255, .85);
      backdrop-filter: blur(8px);
    }

    .pill.offer {
      border-color: rgba(22, 163, 74, .25);
    }

    .pill.offer span {
      display: inline-grid;
      place-items: center;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: rgba(22, 163, 74, .15);
      color: #166534;
      font-weight: 900;
    }

    .prod-body {
      padding: 1rem;
    }

    .prod-name {
      font-weight: 900;
      line-height: 1.15;
      margin: 0 0 .15rem;
    }

    .prod-sku,
    .prod-meta {
      font-size: .88rem;
      color: var(--muted);
    }

    .filter-title {
      font-weight: 900;
      margin-bottom: .7rem;
    }

    .filter-group {
      border-top: 1px solid rgba(15, 23, 42, 0.10);
      padding-top: .9rem;
      margin-top: .9rem;
    }

    .filter-group:first-child {
      border-top: none;
      padding-top: 0;
      margin-top: 0;
    }

    .form-check-label {
      color: var(--ink);
    }

    .select-compact {
      width: auto;
      min-width: 160px;
    }

    .range-wrap {
      position: relative;
      height: 28px;
      display: flex;
      align-items: center;
    }

    .range-track {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      height: 6px;
      transform: translateY(-50%);
      border-radius: 999px;
      background: #e2e8f0;
      z-index: 1;
    }

    .range-selection {
      position: absolute;
      top: 0;
      height: 100%;
      border-radius: 999px;
      background: #2f80ed;
    }

    .range-wrap .range-input {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      margin: 0;
      height: 28px;
      pointer-events: none;
      background: transparent;
      z-index: 2;
      -webkit-appearance: none;
      appearance: none;
    }

    .range-wrap .range-input::-webkit-slider-runnable-track {
      height: 6px;
      background: transparent;
      border: 0;
    }

    .range-wrap .range-input::-moz-range-track {
      height: 6px;
      background: transparent;
      border: 0;
    }

    .range-wrap .range-input::-webkit-slider-thumb {
      pointer-events: auto;
      position: relative;
      z-index: 3;
    }

    .range-wrap .range-input::-moz-range-thumb {
      pointer-events: auto;
      position: relative;
      z-index: 3;
    }

    .prod-card.list {
      display: flex;
      flex-direction: row;
      gap: 0;
    }

    .prod-card.list .prod-top {
      width: 210px;
      height: auto;
      min-height: 170px;
    }

    .prod-card.list .prod-body {
      flex: 1 1 auto;
    }

    .prod-card.list .prod-actions {
      min-width: 220px;
      border-left: 1px solid rgba(15, 23, 42, 0.10);
      align-content: center;
    }

    @media (max-width: 767px) {
      .prod-card.list {
        flex-direction: column;
      }

      .prod-card.list .prod-top,
      .prod-card.list .prod-actions {
        width: auto;
        min-width: 0;
        border-left: 0;
      }
    }

    .price-row {
      margin-top: .7rem;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: .75rem;
      flex-wrap: wrap;
    }

    .price {
      font-weight: 900;
      font-size: 1.08rem;
    }

    .price small {
      color: var(--muted);
      font-weight: 800;
    }

    .was {
      color: var(--muted);
      text-decoration: line-through;
      font-weight: 800;
      font-size: .95rem;
    }

    .prod-actions {
      padding: 0 1rem 1rem;
      display: grid;
      gap: .6rem;
    }

    .qty-row {
      display: flex;
      gap: .6rem;
      align-items: center;
    }

    .qty {
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.10);
      padding: .55rem .9rem;
      width: 110px;
      font-weight: 800;
    }

    .btn-icon {
      font-size: 1rem;
      line-height: 1;
    }

    .btn-placeholder {
      display: none;
    }

    .mobile-bar {
      position: sticky;
      bottom: 0;
      z-index: 20;
      background: rgba(255, 255, 255, .80);
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(15, 23, 42, 0.10);
      padding: .75rem 0;
      display: none;
    }

    .mobile-bar.mobile-sticky {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1200;
      background: #fff;
      border-top: 1px solid var(--border);
    }

    @media (max-width: 991.98px) {
      .mobile-bar {
        display: block;
      }
    }

    .product-hero {
      background: linear-gradient(180deg, #f6fbff 0%, #ffffff 30%, #ffffff 100%);
      padding: 28px 0 18px 0;
    }

    .product-details-bg {
      background: linear-gradient(180deg, #f6fbff 0%, #ffffff 30%, #ffffff 100%);
    }

    .thumb {
      aspect-ratio: 1 / 1;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: #fff;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .thumb img {
      max-width: 92%;
      max-height: 92%;
      height: auto;
      width: auto;
    }

    .qty-inline {
      border: 1px solid var(--border);
      border-radius: 999px;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: #fff;
    }

    .qty-inline button {
      border: 0;
      background: transparent;
      padding: .5rem .75rem;
      font-weight: 900;
      color: var(--ink);
    }

    .qty-inline input {
      width: 70px;
      border: 0;
      outline: 0;
      text-align: center;
      font-weight: 800;
      background: transparent;
    }

    .spec-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: .65rem 0;
      border-bottom: 1px dashed #e2e8f0;
    }

    .spec-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .footer {
      background: #0b1220;
      color: rgba(255, 255, 255, .85);
    }

    .footer a {
      color: rgba(255, 255, 255, .85);
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .breadcrumb-wrap {
      font-weight: 800;
      color: var(--muted);
    }

    .breadcrumb-wrap a {
      color: var(--muted);
      text-decoration: none;
    }

    .breadcrumb-wrap a:hover {
      text-decoration: underline;
    }

    .pagination .page-link {
      border-radius: 999px;
      font-weight: 800;
      color: var(--ink);
      border-color: #dbe3f3;
    }

    .pagination .page-item.active .page-link {
      background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
      border-color: transparent;
    }

    @media (max-width: 991px) {
      .actions {
        justify-content: flex-start;
      }

      .searchbar {
        max-width: 100%;
      }
    }

    @media (max-width: 1199px) {
      .logo-img {
        height: 62px;
      }

      .actions {
        flex-wrap: wrap;
        gap: .4rem;
      }

      .btn-soft,
      .btn-order {
        padding: .4rem .7rem;
        font-size: .88rem;
      }
    }
