/* ==========================================================================
   AMZ Supplies - Clone Styles
   ========================================================================== */
   :root {
    --dme-navy: #004277;        /* top utility bar / headings */
    --dme-blue: #004277;        /* main navigation bar */
    --dme-blue-dark: #003663;
    --dme-blue-light: #1e8ed6;  /* NEW active tab (bright blue) */
    --dme-teal: #169dad;        /* accent / phone number */
    --dme-orange: #ee7d20;      /* primary CTA button */
    --dme-orange-dark: #d96c12;
    --dme-band: #007cbb35;        /* light blue promo band */
    --dme-band-soft: #eaf5fc;
    --dme-gray: #6b7683;
    --dme-border: #e4e8ec;
    --dme-footer: #f0f0f0;
    --section-title-color: #004277;
  }
  
  * { box-sizing: border-box; }
  
  body {
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
    color: #33404d;
    font-size: 15px;
    background-color: #f0f0f0;
    overflow-x: hidden;
  }

  .bg-white {
    background-color: #fff;
  }
  
  a { text-decoration: none; }
  
  .container-dme { max-width: 1280px; }
  
  /* ============================= Top Utility Bar ============================ */
  .top-bar {
    background: var(--dme-navy);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #fff;
    position: relative;
  }
  .top-bar a { color: #dbe6f1; transition: color .2s; }
  .top-bar a:hover { color: #fff; }
  .top-bar .top-phone { color: #fff;   }
  .top-bar .top-links a { padding: 0 14px; font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .3px; }
  .top-bar .top-links a:not(:last-child) { border-right: 1px solid rgba(255,255,255,.18); }
  
  /* ================================ Header ================================== */
  .site-header { border-bottom: 1px solid var(--dme-border); background-color: #fff;}
  .site-header .logo img { max-height: 52px; }
  .header-bar {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .header-bar .logo {
    flex: 0 0 auto;
  }
  .header-search {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 550px;
    margin-left: auto;
  }
  .header-phone { color: var(--dme-teal); font-weight: 700; font-size: 24px; letter-spacing: .5px; }
  .header-phone:hover { color: var(--dme-teal); }
  
  .search-box .form-control {
    border: 1px solid #d5dbe1;
    border-right: 0;
    border-radius: 6px 0 0 6px;
    height: 46px;
    box-shadow: none;
  }
  .search-box .form-control:focus { border-color: var(--dme-teal); }
  .search-box .btn-search {
    background: #fff;
    border: 1px solid #d5dbe1;
    border-left: 0;
    border-radius: 0 6px 6px 0;
    color: var(--dme-navy);
    height: 46px;
    padding: 0 16px;
  }
  .search-box .btn-search:hover { color: var(--dme-teal); }
  
  .header-icon { color: var(--dme-navy); font-size: 22px; position: relative; }
  .header-icon .badge {
    position: absolute; top: -8px; right: -10px;
    background: var(--dme-teal); color: #fff;
    font-size: 11px; border-radius: 50%;
    height: 18px; min-width: 18px; line-height: 18px; padding: 0 2px;
  }
  
  /* ============================ Main Navigation ============================= */
  .main-nav {
    background: var(--dme-blue);
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(10, 37, 64, 0.18);
  }
  .main-nav .nav-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: nowrap; align-items: stretch;
    justify-content: space-between;
  }
  .main-nav .nav-item { position: relative; }
  .main-nav .nav-list > .nav-item > a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 15px 16px;
    display: flex; align-items: center; gap: 7px;
    white-space: nowrap;
  }
  .main-nav .nav-list > .nav-item > a:hover,
  .main-nav .nav-list > .nav-item:hover > a {
    background: var(--dme-blue-dark);
    color: #fff;
  }
  .main-nav .nav-list > .nav-item.active > a,
  .main-nav .nav-list > .nav-item.active:hover > a { background: var(--dme-blue-light); }
  .main-nav .caret { font-size: 10px; opacity: .9; }
  
  /* ---- Level 1 dropdown ---- */
  .dropdown-menu-dme {
    position: absolute;
    top: 100%; left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--dme-border);
    box-shadow: 0 12px 30px rgba(10,37,64,.15);
    padding: 8px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 1050;
  }
  .main-nav .nav-item:hover > .dropdown-menu-dme {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .dropdown-menu-dme li { position: relative; list-style: none; }
  .dropdown-menu-dme > li > a {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 10px 20px;
    color: #2c3a48;
    font-size: 14px;
    font-weight: 500;
    transition: background .15s, color .15s;
  }
  .dropdown-menu-dme > li > a:hover {
    background: var(--dme-band-soft);
    color: var(--dme-blue);
  }
  .dropdown-menu-dme .flyout-arrow { font-size: 11px; color: #9aa6b2; }
  
  /* ---- Level 2 flyout ---- */
  .submenu-dme {
    position: absolute;
    top: -9px; left: 100%;
    min-width: 250px;
    background: #fff;
    border: 1px solid var(--dme-border);
    box-shadow: 0 12px 30px rgba(10,37,64,.15);
    padding: 8px 0;
    opacity: 0; visibility: hidden;
    transform: translateX(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .dropdown-menu-dme li:hover > .submenu-dme {
    opacity: 1; visibility: visible; transform: translateX(0);
  }
  .submenu-dme li { position: relative; list-style: none; }
  .submenu-dme li > a {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 9px 20px;
    color: #2c3a48;
    font-size: 13.5px;
    font-weight: 500;
    transition: background .15s, color .15s;
  }
  .submenu-dme li > a:hover { background: var(--dme-band-soft); color: var(--dme-blue); }
  .submenu-dme li:hover > .submenu-dme {
    opacity: 1; visibility: visible; transform: translateX(0);
  }
  .submenu-dme .submenu-dme { z-index: 1060; }
  
  /* ============================== Hero Slider ============================== */
  .hero-slider { background: #eaf3f9; }
  .hero-slide img { width: 100%; height: auto; display: block; }
  .owl-hero .owl-nav { display: none; }
  .owl-hero .owl-dots {
    position: absolute; left: 0; right: 0; bottom: 14px;
    text-align: center;
  }
  .owl-hero .owl-dots .owl-dot span {
    width: 10px; height: 10px; margin: 4px; background: #b9cad6;
    display: inline-block; border-radius: 50%; transition: background .2s;
  }
  .owl-hero .owl-dots .owl-dot.active span { background: var(--dme-blue); }
  
  /* ========================= Insurance Logo Grid ========================== */
  .insurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    position: relative;
    padding-bottom: 15px;
  }
  .insurance-grid__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    min-height: 153px;
  }
  .insurance-grid__item:nth-child(4n) { border-right: none; }
  .insurance-grid__item img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .insurance-grid__item::before, 
  .insurance-grid__item::after {
    content: '';
    position: absolute;
    margin: auto;
    bottom: 0;
  }
  .insurance-grid__item::before {
    top: 0;
    right: 0;
    border-right: 2px solid var(--dme-blue);
    width: 2px;
    height: 90%;
    
  }
  .insurance-grid__item::after {
    left: 0;
    right: 0;
    width: 90%;
    height: 2px;
    border-bottom: 2px solid var(--dme-blue);
  }

  .insurance-grid__item img {
    width: 80%;
    margin: 24px auto;
  }

  .insurance-grid__item:nth-child(4)::before {
    display: none;
  }

  .insurance-grid__item:nth-child(8)::before {
      display: none;
  }

  .insurance-grid__item:nth-child(12)::before {
      display: none;
  }

  .insurance-grid__item:nth-child(9)::after {
    display: none;
  }

  .insurance-grid__item:nth-child(10)::after {
      display: none;
  }
  .insurance-grid__item:nth-child(11)::after {
      display: none;
  }

  .insurance-grid__item:nth-child(12)::after {
      display: none;
  }

  .insurance-grid:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 98%;
    height: 2px;
    border-bottom: 2px solid var(--dme-blue);
  }

  /* ========================= Category Circles ============================= */
  .section-title {
    text-align: center;
    color: var(--section-title-color);
    font-weight: 300;
    font-size: 36px;
    line-height: 44px;
    margin: 0 0 32px 0;
  }
  .category-circles {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
  }
  .cat-circle {
    text-align: center; text-decoration: none;
    display: flex; flex-direction: column; align-items: center;
    flex: 1 1 0;
    min-width: 0;
  }
  .cat-circle .circle-img {
    width: 100%;
    max-width: 188px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #f3f6f8;
    border: 1px solid #edf1f4;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
  }
  .cat-circle:hover .circle-img { box-shadow: 0 10px 22px rgba(10,37,64,.14); transform: translateY(-3px); }
  .cat-circle .circle-img img { width: 100%; height: 100%; object-fit: cover; }
  .cat-circle .cat-name {
    color: #3a4653; font-weight: 600; font-size: 17px;
    text-transform: uppercase; letter-spacing: .4px;
  }

  .cat-circle:nth-child(2) .circle-img {max-width: 196px;}

  .cat-circle:nth-child(3) .circle-img {
      max-width: 204px;
  }

  .cat-circle:nth-child(4) .circle-img {
      max-width: 220px;
  }

  .cat-circle:nth-child(5) .circle-img {
      max-width: 228px;
  }

  .cat-circle:nth-child(6) .circle-img {
      max-width: 236px;
  }
  
  /* ============================ Promo Bands =============================== */
  .promo-band { background: var(--dme-band); }
  .promo-band h2 { color: var(--dme-navy); font-weight: 600; font-size: 36px;margin-bottom: 14px;line-height: 1.25;}
  .promo-band p { color: #004277; font-size: 24px;}
  .btn-dme-navy {
    background: var(--dme-navy); color: #fff; border: 0;
    border-radius: 40px; padding: 12px 40px; font-weight: 600;
    transition: background .2s;
  }
  .promo-band .btn.btn-dme-navy {
    display: table;
    font-size: 18px;
    padding: 16px 26px;
    margin: 0 auto;
    border: solid #004277 2px;
    background-color: transparent;
    color: #004277;
  }
  .btn-dme-navy:hover { background: #06192c; color: #fff; }
  .btn-dme-orange {
    background: var(--dme-orange); color: #fff; border: 0;
    border-radius: 6px; padding: 12px 28px; font-weight: 600;
  }
  .btn-dme-orange:hover { background: var(--dme-orange-dark); color: #fff; }
  
  /* ============================ Product Cards ============================= */
  .products-section .section-heading {
    color: var(--dme-navy);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
    margin-bottom: 14px;
    background: url(../images/home/slider-bar.png) right no-repeat;
  }

  .content {
    background-color: #fff;
    padding-right: 20px;
  }

  .filterproduct-title .content {
    background-color: #fff;
    padding-right: 20px;
    display: inline;
  }

  .product-card {
    background: transparent;
    border: 0;
    padding: 0;
    height: 100%;
    text-align: center;
    display: flex; flex-direction: column;
  }
  .product-card .prod-thumb {
    position: relative;
    border: 1px solid var(--dme-border);
    border-radius: 4px;
    background: #fff;
    height: 210px;
    padding: 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
  }
  .product-card .prod-thumb > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }
  .product-card:hover .prod-thumb { box-shadow: 0 8px 22px rgba(10,37,64,.09); border-color: #d5dee6; }
  .product-card .prod-thumb img { max-width: 100%;
    object-fit: contain;
    min-height: 254px;
    min-width: 254px;
    max-height: 254px;
  }
  .product-card .prod-thumb .prod-label {
    position: absolute;
    top: 30px;
    left: 10px;
    z-index: 2;
    height: 26px;
    right: 0;
    max-width: min-content;
  }
  .product-card .discount-tag {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    background: #d0241b; color: #fff; font-size: 12px; font-weight: 700;
    padding: 2px 8px; border-radius: 4px;
  }
  .product-card .prod-name {
    color: #3a4653;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 40px;
    margin-bottom: 10px;
    display: block;
  }
  .product-card .prod-name:hover { color: var(--dme-blue); }
  .product-card .prod-price {
    font-weight: 600;
    color: #333;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .product-card .prod-price .old-price { color: #9aa6b2; text-decoration: line-through; font-weight: 500; font-size: 14px; margin-right: 6px; }
  .product-card .prod-price .special { color: #d0241b; }
  .product-card .btn-add {
    background: var(--dme-navy); color: #fff; border: 0;
    border-radius: 4px; padding: 10px 26px; font-size: 12.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .6px;
    margin-top: auto; align-self: center;
  }
  .product-card .btn-add:hover { background: #06192c; }

  /* Owl nav arrows for product carousels */
  .owl-products { position: relative; }
  .owl-products .owl-nav { position: absolute; top: -40px; right: 0; margin: 0; display: flex; gap: 8px; }
  .owl-products .owl-nav button.owl-prev,
  .owl-products .owl-nav button.owl-next {
    width: 34px; height: 30px; border-radius: 6px;
    border: 1px solid var(--dme-border) !important;
    background: #f4f6f8 !important; color: #7a8794 !important;
    font-size: 15px !important;
    line-height: 1; margin: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .owl-products .owl-nav button:hover { background: #e7ecf0 !important; color: var(--dme-navy) !important; }
  .owl-products .owl-nav button.disabled { opacity: .45; }
  
  /* ================================ Footer ================================ */
  .site-footer { color: #4a5866; padding: 50px 0 0; margin-top: 50px; font-size: 14px; }
  .site-footer h5 {
    color: #222529; font-size: 14px; font-weight: 600;
    text-transform: capitalize; letter-spacing: .6px; margin-bottom: 18px;
  }
  .site-footer p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
  }
  .site-footer a {
    color: #333 !important;
  }
  .foot-contact a {
    font-weight: 600;
  }

  
  .site-footer .footer-logo { max-height: 40px; margin-bottom: 14px; }
  .site-footer ul { list-style: none; padding: 0; margin: 0; }
  .site-footer ul li { margin-bottom: 10px; }
  .site-footer ul li a { color: #4a5866; transition: color .15s; }
  .site-footer ul li a:hover { color: var(--dme-teal); }
  .site-footer .foot-contact i { color: var(--dme-teal); width: 18px; }
  .footer-bottom {
    border-top: 1px solid #dde3e8;
    margin-top: 40px; padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
  }
  .footer-bottom .copy { color: #8a97a4; font-size: 13px; }
  .footer-bottom img { max-height: 26px; }
  
  /* Floating chat button */
  .chat-fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 1080;
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--dme-teal); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(22,157,173,.45);
    font-size: 24px;
  }
  .chat-fab:hover { color: #fff; background: #128795; }
  
  /* Accessibility widget button (left) */
  .acsb-fab {
    position: fixed; left: 18px; top: 50%; z-index: 1080;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--dme-blue); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(10,37,64,.3);
  }
  
  /* ============================== Base / content pages ====================== */
  .base-page-title {
    font-size: 24px;
    font-weight: 700;
    color: #222529;
    margin: 0;
    padding-bottom: 14px;
  }
  .about-logo-block {
    text-align: center;
    padding: 36px 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--dme-border);
  }
  .whitebox-inner {
    border: 1px solid #ececec;
    border-radius: 0;
    background: #fff;
    border-top: 4px solid #08c;
    padding: 10px 25px 25px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .08);
  }

  /* ============================== Contact Page ============================== */
  .contact-map {
    margin: 0 -25px 24px;
    line-height: 0;
  }
  .contact-map iframe {
    display: block;
    width: 100%;
    min-height: 320px;
  }
  .policy-banner {
    margin: 0 -25px 24px;
    line-height: 0;
  }
  .policy-banner img {
    display: block;
    width: 100%;
    height: auto;
  }
  .contact-form { padding-bottom: 10px; }
  .contact-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #3a4653;
    margin-bottom: 6px;
  }
  .contact-label .req { color: #d0241b; }
  .contact-input {
    border: 1px solid #d5dbe1;
    border-radius: 2px;
    font-size: 14px;
    padding: 10px 12px;
    box-shadow: none;
  }
  .contact-input:focus {
    border-color: var(--dme-teal);
    box-shadow: none;
  }
  .contact-textarea { resize: vertical; min-height: 140px; }
  .contact-submit {
    background: var(--dme-navy);
    color: #fff;
    border: 0;
    border-radius: 2px;
    padding: 11px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s;
  }
  .contact-submit:hover { background: #06192c; }

  /* ============================== Thank you page ============================ */
  .thank-you-box {
    max-width: 720px;
    margin: 10px auto 30px;
    border-top: 4px solid var(--dme-teal);
  }
  .thank-you-icon {
    font-size: 48px;
    color: var(--dme-teal);
    margin-bottom: 12px;
    line-height: 1;
  }
  .thank-you-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--dme-navy);
    margin-bottom: 8px;
  }
  .thank-you-copy {
    color: #555;
    font-size: 15px;
    margin-bottom: 0;
  }
  .thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
  }
  .thank-you-secondary {
    color: var(--dme-navy);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }
  .thank-you-secondary:hover { text-decoration: underline; color: var(--dme-teal); }

  /* ============================== Base page content sections ================ */
  .base-page-sections { padding: 10px 0 20px; }
  .base-page-section { margin-bottom: 28px; }
  .base-page-section:last-child { margin-bottom: 0; }
  .base-page-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px;
    line-height: 1.4;
  }
  .base-page-section p {
    color: #666;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
  }
  .base-page-section p + p { margin-top: 12px; }
  .base-page-section ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
  }
  .base-page-section ul li { margin-bottom: 6px; }
  .base-page-section ul li:last-child { margin-bottom: 0; }
  .base-page-section ol {
    margin: 12px 0 0;
    padding-left: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
  }
  .base-page-section ol li { margin-bottom: 6px; }
  .base-page-section ol li:last-child { margin-bottom: 0; }
  .base-page-section a { color: var(--dme-teal); text-decoration: none; }
  .base-page-section a:hover { text-decoration: underline; }
  .base-page-section strong { color: #444; font-weight: 700; }
  .base-page-section h4 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 20px 0 10px;
    line-height: 1.4;
  }
  .base-page-meta {
    color: #666;
    font-size: 14px;
    margin: 0 0 12px;
  }

  .about-logo-block img {
    max-width: 340px;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .about-tagline {
    font-style: italic;
    color: #888;
    font-size: 18px;
    margin: 0;
    letter-spacing: .3px;
  }
  .about-columns p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .about-subheading {
    color: var(--dme-orange);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 16px;
  }

  /* ========================= Product Listing Page ========================= */
  .listing-breadcrumb ol {
    list-style: none; margin: 0 0 18px; padding: 0;
    display: flex; flex-wrap: wrap; gap: 6px;
    font-size: 13px; color: #7a8794;
  }
  .listing-breadcrumb li + li::before { content: "/"; margin-right: 6px; color: #b0bac3; }
  .listing-breadcrumb a { color: #7a8794; }
  .listing-breadcrumb a:hover { color: var(--dme-blue); }

  .listing-wrapper {padding-top: 40px;padding-bottom: 40px;}

  .listing-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .listing-sidebar { margin-top: 4px; }

  .category-box {
    border: 1px solid #e0e4e8;
    background: #fff;
    overflow: hidden;
  }
  .category-box__head {
    background: var(--dme-navy);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 12px 16px;
    line-height: 1.3;
  }
  .category-box__list {
    list-style: none;
    margin: 0;
    padding: 10px 0 14px;
  }
  .category-box__list li { margin: 0; }
  .category-box__list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    transition: color .15s, background .15s;
  }
  .category-box__list a i {
    font-size: 10px;
    color: #777;
    flex-shrink: 0;
  }
  .category-box__list a:hover {
    color: var(--dme-blue);
    background: #f7f9fb;
  }
  .category-box__list a:hover i { color: var(--dme-blue); }
  .category-box__list li.is-active > a {
    color: var(--dme-blue);
    font-weight: 600;
    background: #f7f9fb;
  }
  .category-box__list li.is-active > a i { color: var(--dme-blue); }

  .filter-panel { border: 1px solid var(--dme-border); margin-bottom: 10px; }
  .filter-toggle {
    width: 100%; border: 0; background: var(--dme-navy); color: #fff;
    text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; padding: 11px 14px;
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
  }
  .filter-toggle i { font-size: 11px; transition: transform .2s; }
  .filter-panel.open .filter-toggle i { transform: rotate(180deg); }
  .filter-body { display: none; padding: 14px; background: #fff; }
  .filter-panel.open .filter-body { display: block; }
  .filter-options { list-style: none; margin: 0; padding: 0; max-height: 180px; overflow: auto; }
  .filter-options li { margin-bottom: 8px; font-size: 13px; color: #4a5866; }
  .filter-options label { display: flex; align-items: center; gap: 8px; cursor: default; }
  .price-filter .form-range { width: 100%; accent-color: var(--dme-blue); }
  .price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: #7a8794; margin-top: 6px; }

  .listing-page-title {
    font-size: 22px; font-weight: 600; color: #222529;
    margin: 0 0 18px; line-height: 30px;
  }
  .search-summary {
    margin: 0 0 18px;
    color: #4a5866;
    font-size: 14px;
  }
  .search-empty {
    margin: 0 0 24px;
    color: #6b7683;
    font-size: 15px;
  }
  .listing-intro { color: #3a4653; font-size: 14px; line-height: 1.65; margin-bottom: 22px; }
  .listing-intro-teaser { display: inline; }
  .listing-intro-lead {
    display: inline; margin: 0; color: #3a4653; font-size: 14px; line-height: 1.65;
  }
  .listing-intro-ellipsis { color: #3a4653; font-weight: 600; letter-spacing: 1px; }
  .listing-intro-more { display: none; margin-top: 4px; }
  .listing-intro-more h2 { font-size: 18px; font-weight: 600; color: var(--dme-navy); margin: 18px 0 10px; }
  .listing-intro-more p { margin-bottom: 14px; }
  .listing-intro-more a { color: var(--dme-blue); }
  .listing-intro.is-expanded .listing-intro-teaser { display: block; }
  .listing-intro.is-expanded .listing-intro-lead { display: block; }
  .listing-intro.is-expanded .listing-intro-ellipsis { display: none; }
  .listing-intro.is-expanded .listing-intro-more { display: block; }
  .listing-read-more {
    display: inline-block; vertical-align: baseline;
    border: 1px solid #e2e6ea; background: #f3f5f7; color: var(--dme-blue);
    font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
    padding: 7px 14px; margin: 0 0 0 4px; font-size: 12px; line-height: 1.2;
    cursor: pointer; transition: background .2s, border-color .2s;
  }
  .listing-read-more:hover { background: #e9eef3; border-color: #d5dbe1; }
  .listing-intro.is-expanded .listing-read-more {
    display: inline-block; margin: 16px 0 0;
  }

  .listing-item-count {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #4a5866;
  }
  .listing-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--dme-border);
    font-size: 13px;
  }
  .listing-pagination--top {
    justify-content: space-between;
    border-top: 0;
    border-bottom: 1px solid var(--dme-border);
    margin-bottom: 22px;
  }
  .listing-pagination--bottom { margin-top: 28px; margin-bottom: 0; }
  .listing-pagination-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 4px;
    align-items: center;
  }
  .listing-pagination-nav a,
  .listing-pagination-nav .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 6px;
    border-radius: 4px;
    font-size: 13px;
    color: #4a5866;
  }
  .listing-pagination-nav a:hover { background: #eef3f7; color: var(--dme-blue); }
  .listing-pagination-nav .current { background: var(--dme-navy); color: #fff; font-weight: 600; }

  .listing-toolbar {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 12px; padding: 12px 0; border-top: 1px solid var(--dme-border);
    border-bottom: 1px solid var(--dme-border); margin-bottom: 22px; font-size: 13px;
  }
  .listing-toolbar--bottom { margin-top: 28px; margin-bottom: 0; border-top: 1px solid var(--dme-border); }
  .toolbar-right { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
  .toolbar-count { font-weight: 600; color: #4a5866; }
  .toolbar-field { display: inline-flex; align-items: center; gap: 6px; margin: 0; color: #4a5866; font-size: 13px; }
  .toolbar-field .form-select { width: auto; min-width: 110px; border-color: #d5dbe1; font-size: 13px; }
  .toolbar-dir { color: #4a5866; font-size: 16px; padding: 4px 6px; }
  .toolbar-dir:hover { color: var(--dme-blue); }
  .toolbar-per, .toolbar-view-label { color: #7a8794; }
  .toolbar-view { color: #9aa6b2; font-size: 15px; padding: 4px; }
  .toolbar-view.active { color: var(--dme-navy); }
  .toolbar-pages { display: inline-flex; align-items: center; gap: 8px; }
  .toolbar-pages-label { font-weight: 600; color: #4a5866; }
  .toolbar-pages ul { list-style: none; margin: 0; padding: 0; display: inline-flex; gap: 4px; align-items: center; }
  .toolbar-pages a, .toolbar-pages .current {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 28px; height: 28px; padding: 0 6px; border-radius: 4px;
    font-size: 13px; color: #4a5866;
  }
  .toolbar-pages a:hover { background: #eef3f7; color: var(--dme-blue); }
  .toolbar-pages .current { background: var(--dme-navy); color: #fff; font-weight: 600; }

  .listing-empty-message {
    margin: 24px 0 40px;
    padding: 18px 20px;
    background: #f7f9fb;
    border: 1px solid var(--dme-border);
    color: #555;
    font-size: 15px;
  }
  .listing-empty-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 24px 0 40px;
    padding: 16px 18px;
    background: #fdf6e3;
    border: 1px solid #e6d7a8;
    color: #5c4b1f;
    font-size: 15px;
    line-height: 1.45;
  }
  .listing-empty-alert__icon {
    flex: 0 0 auto;
    color: #e2a100;
    font-size: 20px;
    line-height: 1;
    margin-top: 1px;
  }
  .listing-empty-alert__text {
    margin: 0;
  }
  .listing-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 18px;
  }
  .listing-product-card {
    text-align: center; display: flex; flex-direction: column; height: 100%;
  }
  .listing-prod-thumb {
    position: relative; border: 1px solid var(--dme-border); border-radius: 4px;
    background: #fff; height: 210px; padding: 16px; margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .listing-prod-thumb > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }
  .listing-prod-thumb img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .listing-prod-label { position: absolute; top: 0; left: 0; height: 26px; z-index: 2; }
  .listing-discount {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    background: #d0241b; color: #fff; font-size: 11px; font-weight: 700;
    padding: 2px 7px; border-radius: 3px;
  }
  .listing-prod-name {
    color: #3a4653; font-size: 14px; font-weight: 500; line-height: 1.4;
    min-height: 40px; margin-bottom: 10px; display: block;
  }
  .listing-prod-name:hover { color: var(--dme-blue); }
  .listing-prod-price { font-weight: 700; color: var(--dme-navy); font-size: 17px; margin-bottom: 12px; }
  .listing-prod-price .old-price { color: #9aa6b2; text-decoration: line-through; font-weight: 500; font-size: 14px; margin-right: 4px; }
  .listing-prod-price .special { color: #d0241b; }
  .listing-prod-price .out-stock-text { color: #9aa6b2; font-weight: 600; font-size: 14px; }
  .listing-btn-add {
    background: var(--dme-navy); color: #fff; border: 0; border-radius: 4px;
    padding: 10px 22px; font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: .5px; margin-top: auto; align-self: center;
  }
  .listing-btn-add:hover { background: #06192c; }
  .listing-btn-add.is-disabled, .listing-btn-add:disabled {
    background: #b8c2cb; cursor: not-allowed;
  }

  /* ============================= Product Detail Page ======================= */
  .product-detail-wrapper {
    border: 1px solid var(--dme-border);
    border-radius: 4px;
    margin-bottom: 30px;
  }
  .pd-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dme-navy);
    line-height: 1.3;
    margin-bottom: 14px;
  }
  .pd-meta { margin-bottom: 14px; font-size: 14px; color: #4a5866; }
  .pd-share { margin-bottom: 10px; }
  .pd-share-text {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2e9b4e;
    line-height: 1.4;
  }
  .pd-share-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .pd-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #d5dbe1;
    border-radius: 50%;
    background: #fff;
    color: #4a5866;
    font-size: 14px;
    padding: 0;
    transition: background .2s, color .2s, border-color .2s;
  }
  .pd-share-btn:hover {
    color: #fff;
    border-color: transparent;
  }
  .pd-share-facebook:hover { background: #1877f2; }
  .pd-share-twitter:hover { background: #000; }
  .pd-share-pinterest:hover { background: #e60023; }
  .pd-share-whatsapp:hover { background: #25d366; }
  .pd-share-email:hover { background: var(--dme-navy); }
  .pd-share-copy:hover { background: var(--dme-teal); }
  .pd-share-copy.is-copied { background: #2e9b4e; color: #fff; border-color: #2e9b4e; }
  .pd-sku, .pd-availability { margin-top: 4px; }
  .pd-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
  .pd-badge {
    display: inline-flex; align-items: center; gap: 6px;
    border: 1px solid #b8dfc4; border-radius: 999px;
    padding: 5px 12px; font-size: 12px; font-weight: 600;
  }
  .pd-badge-ship { color: #2e9b4e; }
  .pd-badge-days { color: var(--dme-navy); border-color: #c5d4e3; }
  .pd-buybox {
    background: #f3f5f7;
    border: 1px solid var(--dme-border);
    border-radius: 4px;
    padding: 18px;
    margin-bottom: 16px;
  }
  .pd-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--dme-navy);
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .pd-price-call { font-size: 22px; }
  .pd-rewards { color: var(--dme-orange); font-weight: 600; font-size: 14px; margin-bottom: 14px; }
  .pd-btn-cart {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--dme-navy);
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 12px 18px;
    margin-top: 14px;
  }
  .pd-btn-cart:hover { background: #06192c; color: #fff; }
  .pd-btn-cart:disabled { background: #b8c2cb; cursor: not-allowed; }
  .pd-actions { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; }
  .pd-action-link { color: #4a5866; font-weight: 500; }
  .pd-action-link:hover { color: var(--dme-blue); }
  .pd-action-link i { margin-right: 4px; }

  .pd-gallery { max-width: 100%; }
  .pd-main-image-wrap {
    border: 1px solid var(--dme-border);
    border-radius: 4px;
    background: #fff;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 14px;
    overflow: hidden;
  }
  .pd-main-image {
    max-width: 100%;
    max-height: 340px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .pd-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pd-thumbs {
    display: flex;
    gap: 8px;
    overflow: hidden;
    flex: 1;
  }
  .pd-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border: 1px solid var(--dme-border);
    border-radius: 4px;
    background: #fff;
    padding: 6px;
    cursor: pointer;
  }
  .pd-thumb.is-active { border-color: var(--dme-blue); box-shadow: 0 0 0 1px var(--dme-blue); }
  .pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .pd-thumb-nav {
    width: 28px;
    height: 28px;
    border: 1px solid var(--dme-border);
    border-radius: 4px;
    background: #fff;
    color: #6b7683;
    flex-shrink: 0;
  }
  .pd-thumb-nav:hover { color: var(--dme-navy); border-color: #c5d4e3; }

  .pd-service-sidebar { border-left: 1px solid var(--dme-border); padding-left: 18px; }
  .pd-service-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #4a5866;
    min-height: 50px;
  }
  .pd-service-item:last-child { margin-bottom: 0; }
  .pd-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: var(--dme-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }
  .pd-service-item a { color: var(--dme-blue); font-weight: 600; }
  .pd-service-item p {
      margin: 0;
  }
  .pd-tabs-wrap { margin-top: 28px; border-top: 1px solid var(--dme-border); padding-top: 0; }
  .pd-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0 0 0;
    border-bottom: 1px solid var(--dme-border);
  }
  .pd-tab {
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #4a5866;
    margin-bottom: -1px;
  }
  .pd-tab.is-active {
    color: #1f2933;
    border-bottom-color: #1f2933;
  }
  .pd-tab-panels { padding: 22px 0 8px; }
  .pd-tab-panel[hidden] { display: none; }
  .pd-description { color: #4a5866; font-size: 14px; line-height: 1.65; }
  .pd-description p { margin-bottom: 14px; }
  .pd-features-title {
    font-size: 22px;
    font-weight: 700;
    color: #3a4653;
    margin: 18px 0 12px;
  }
  .pd-features-list {
    margin: 0 0 16px;
    padding-left: 20px;
  }
  .pd-features-list li { margin-bottom: 8px; }
  .pd-attr-table { width: 100%; border-collapse: collapse; font-size: 14px; }
  .pd-attr-table th,
  .pd-attr-table td {
    border: 1px solid var(--dme-border);
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
  }
  .pd-attr-table th {
    width: 34%;
    background: #f7f9fb;
    font-weight: 600;
    color: #3a4653;
  }
  .pd-empty-tab { color: #7b8794; font-size: 14px; }
  .pd-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }
  .pd-media-item {
    border: 1px solid var(--dme-border);
    border-radius: 4px;
    padding: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
  }
  .pd-media-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
  }
