
    :root{
      --brand:#549f57;
      --brand-dark:#3d7e40;
      --navy:#071821;
      --navy-2:#0b1b22;
      --text:#071821;
      --muted:#657083;
      --line:#e4e9e6;
      --soft:#f7faf8;
      --card:#ffffff;
      --shadow:0 18px 42px rgba(15,23,42,.07);
      --shadow-lg:0 28px 80px rgba(15,23,42,.12);
      --radius:18px;
    }

    *{box-sizing:border-box}
    html,body{
      margin:0;
      width:100%;
      overflow-x:hidden;
      font-family:"Plus Jakarta Sans",sans-serif;
      color:var(--text);
      background:#fff;
      scroll-behavior:smooth;
    }
    a{text-decoration:none;color:inherit}
    button,input,select{font-family:inherit}
    img,svg{max-width:100%}
    body.menu-open{overflow:hidden}

    .container-x{
      width:min(100% - 44px, 1380px);
      margin-inline:auto;
    }

    /* HEADER */
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:#071821;
      border-bottom:1px solid rgba(255,255,255,.08);
      box-shadow:0 10px 28px rgba(0,0,0,.14);
    }
    .header-inner{
      height:70px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      min-width:250px;
    }
    .main-logo{
      height:54px;
      width:auto;
      max-width:240px;
      object-fit:contain;
      display:block;
    }
    .desktop-nav{
      flex:1;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:34px;
    }
    .nav-link{
      position:relative;
      color:rgba(255,255,255,.92);
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
    }
    .nav-link::after{
      content:"";
      position:absolute;
      left:50%;
      bottom:-16px;
      width:0;
      height:3px;
      border-radius:999px;
      background:var(--brand);
      transform:translateX(-50%);
      transition:.22s ease;
    }
    .nav-link:hover::after,
    .nav-link.active::after{width:72px}
    .header-actions{
      min-width:260px;
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:14px;
    }
    .lang-wrap{position:relative}
    .lang-btn{
      height:42px;
      min-width:64px;
      border-radius:10px;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.05);
      color:#fff;
      font-size:13px;
      font-weight:900;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:7px;
      cursor:pointer;
    }
    .lang-dropdown{
      position:absolute;
      right:0;
      top:calc(100% + 10px);
      width:94px;
      padding:7px;
      border:1px solid var(--line);
      border-radius:14px;
      background:#fff;
      box-shadow:var(--shadow);
      opacity:0;
      visibility:hidden;
      transform:translateY(8px);
      transition:.2s ease;
    }
    .lang-dropdown.open{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .lang-dropdown button{
      width:100%;
      border:0;
      background:transparent;
      padding:9px 10px;
      border-radius:10px;
      text-align:left;
      color:#111827;
      font-weight:800;
      cursor:pointer;
    }
    .lang-dropdown button:hover{background:#f3f7f4}

    .hero-btn{
      height:42px;
      padding:0 18px;
      border-radius:10px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      background:var(--brand);
      color:#fff;
      font-size:13px;
      font-weight:900;
      box-shadow:0 14px 30px rgba(84,159,87,.24);
      transition:.22s ease;
      white-space:nowrap;
    }
    .hero-btn:hover{background:var(--brand-dark);transform:translateY(-2px)}
    .burger-btn{
      display:none;
      width:44px;
      height:44px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.06);
      color:#fff;
      align-items:center;
      justify-content:center;
      cursor:pointer;
    }

    /* MOBILE MENU */
    .mobile-menu{
      position:fixed;
      inset:0;
      z-index:2000;
      background:radial-gradient(circle at 90% 10%, rgba(84,159,87,.18), transparent 35%), var(--navy);
      transform:translateX(100%);
      transition:.32s ease;
      padding:22px;
      overflow-y:auto;
    }
    .mobile-menu.open{transform:translateX(0)}
    .mobile-menu-top{
      height:64px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      border-bottom:1px solid rgba(255,255,255,.1);
      margin-bottom:20px;
    }
    .mobile-close{
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.08);
      color:#fff;
      display:grid;
      place-items:center;
      cursor:pointer;
    }
    .mobile-lang{
      display:flex;
      gap:8px;
      margin:18px 0;
    }
    .mobile-lang-btn{
      flex:1;
      height:40px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.07);
      color:#fff;
      font-weight:900;
    }
    .mobile-lang-btn.active{background:var(--brand);border-color:var(--brand)}
    .mobile-nav a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:16px 0;
      color:rgba(255,255,255,.92);
      border-bottom:1px solid rgba(255,255,255,.08);
      font-size:19px;
      font-weight:900;
    }
    .btn-primary{
      border:0;
      border-radius:12px;
      background:var(--brand);
      color:#fff;
      padding:13px 19px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      font-weight:900;
      cursor:pointer;
      box-shadow:0 12px 30px rgba(84,159,87,.24);
      transition:.22s ease;
    }
    .btn-primary:hover{background:var(--brand-dark);transform:translateY(-2px)}

    /* PAGE */
    .products-page{
      padding:34px 0 22px;
      background:
        radial-gradient(circle at 12% 7%, rgba(84,159,87,.08), transparent 25%),
        radial-gradient(circle at 92% 14%, rgba(84,159,87,.06), transparent 26%),
        #fff;
    }
    .catalog-hero{
      display:grid;
      grid-template-columns:.92fr 1.35fr;
      align-items:start;
      gap:54px;
      padding:0 0 28px;
    }
    .page-title{
      margin:0;
      color:var(--navy);
      font-size:clamp(40px, 4.8vw, 62px);
      line-height:.95;
      letter-spacing:-.07em;
      font-weight:900;
    }
    .page-title span{color:var(--brand)}
    .title-line{
      width:70px;
      height:4px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--brand),rgba(84,159,87,.18));
      margin:16px 0 12px;
    }
    .page-subtitle{
      max-width:600px;
      margin:0;
      color:#4c596c;
      font-size:15px;
      line-height:1.65;
      font-weight:600;
    }
    .benefit-panel{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(255,255,255,.86);
      box-shadow:0 12px 40px rgba(15,23,42,.04);
      overflow:hidden;
      min-height:118px;
    }
    .benefit-item{
      padding:22px 18px;
      text-align:center;
      border-right:1px solid var(--line);
    }
    .benefit-item:last-child{border-right:0}
    .benefit-item i{
      color:var(--brand);
      display:inline-flex;
      margin-bottom:9px;
    }
    .benefit-item h4{
      margin:0 0 7px;
      color:var(--navy);
      font-size:13px;
      font-weight:900;
    }
    .benefit-item p{
      margin:0;
      color:#566174;
      font-size:12px;
      line-height:1.45;
      font-weight:600;
    }

    .catalog-layout{
      display:grid;
      grid-template-columns:270px minmax(0,1fr);
      gap:42px;
      align-items:start;
      margin-top:18px;
    }

    /* SIDEBAR */
    .catalog-sidebar{
      position:sticky;
      top:92px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      padding:16px;
      box-shadow:0 14px 38px rgba(15,23,42,.045);
    }
    .side-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:13px;
    }
    .side-head h3{
      margin:0;
      color:var(--navy);
      font-size:17px;
      font-weight:900;
    }
    .side-view-icons{display:flex;gap:6px}
    .side-view-icons button{
      width:27px;
      height:27px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:7px;
      display:grid;
      place-items:center;
      color:#6b7280;
      cursor:pointer;
    }
    .category-list{
      display:grid;
      gap:6px;
    }
    .category-btn{
      width:100%;
      min-height:34px;
      border:0;
      border-radius:9px;
      background:transparent;
      color:var(--navy);
      display:grid;
      grid-template-columns:22px 1fr auto;
      gap:9px;
      align-items:center;
      padding:7px 8px;
      cursor:pointer;
      text-align:left;
      transition:.18s ease;
    }
    .category-btn i{
      width:18px;
      height:18px;
      color:var(--navy);
      display:flex;
      align-items:center;
    }
    .category-btn span{
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .category-btn small{
      min-width:26px;
      height:20px;
      border-radius:999px;
      background:#eef1f0;
      color:#6b7280;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:11px;
      font-weight:900;
    }
    .category-btn:hover,
    .category-btn.active{
      background:linear-gradient(90deg, rgba(84,159,87,.14), rgba(84,159,87,.04));
      color:var(--brand-dark);
    }
    .category-btn:hover i,
    .category-btn.active i{color:var(--brand)}
    .category-btn.active small{background:#fff;color:#374151}

    .filter-divider{
      height:1px;
      background:var(--line);
      margin:18px 0;
    }
    .filter-title{
      margin:0 0 14px;
      color:var(--navy);
      font-size:17px;
      font-weight:900;
    }
    .filter-group{margin-bottom:14px}
    .filter-group label{
      display:block;
      margin-bottom:7px;
      color:#111827;
      font-size:12px;
      font-weight:800;
    }
    .filter-select{
      width:100%;
      height:38px;
      border:1px solid var(--line);
      border-radius:9px;
      padding:0 12px;
      outline:0;
      color:#111827;
      background:#fff;
      font-size:13px;
      font-weight:700;
    }
    .checkbox-line{
      display:flex;
      align-items:center;
      gap:8px;
      color:#111827;
      font-size:13px;
      font-weight:700;
      margin:14px 0 18px;
    }
    .checkbox-line input{
      width:15px;
      height:15px;
      accent-color:var(--brand);
    }
    .range-row{
      display:flex;
      align-items:center;
      gap:8px;
      margin:9px 0 9px;
    }
    .range-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--brand);
      flex:0 0 auto;
    }
    .range-line{
      height:4px;
      border-radius:999px;
      background:var(--brand);
      flex:1;
    }
    .range-values{
      display:flex;
      justify-content:space-between;
      color:#334155;
      font-size:12px;
      font-weight:700;
    }
    .clear-btn{
      margin-top:20px;
      width:100%;
      height:39px;
      border-radius:9px;
      border:1px solid var(--line);
      background:#fff;
      color:#334155;
      font-weight:800;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      cursor:pointer;
    }

    /* CONTENT */
    .catalog-content{min-width:0}
    .catalog-toolbar{
      display:grid;
      grid-template-columns:minmax(260px, 520px) 1fr auto auto;
      gap:18px;
      align-items:center;
      margin-bottom:22px;
    }
    .search-box{
      height:40px;
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
      display:flex;
      align-items:center;
      gap:9px;
      padding:0 14px;
    }
    .search-box svg{width:17px;height:17px;color:#253044}
  .search-box input{
  width:100%;
  border:0;
  outline:0;
  font-size:16px;
  color:#111827;
  font-weight:600;
}
    .sort-wrap{
      justify-self:end;
      display:flex;
      align-items:center;
      gap:10px;
      color:#334155;
      font-size:13px;
      font-weight:800;
    }
    .sort-wrap select{
      width:130px;
      height:40px;
      border:1px solid var(--line);
      border-radius:10px;
      padding:0 12px;
      background:#fff;
      font-weight:800;
      outline:0;
    }
    .view-toggle{
      display:flex;
      border:1px solid var(--line);
      border-radius:10px;
      overflow:hidden;
      background:#fff;
    }
    .view-toggle button{
      width:46px;
      height:40px;
      border:0;
      background:#fff;
      color:#334155;
      display:grid;
      place-items:center;
      cursor:pointer;
    }
    .view-toggle button.active{
      background:var(--brand);
      color:#fff;
    }

    .products-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:22px;
    }
    .product-card{
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:12px;
      background:#fff;
      box-shadow:0 10px 28px rgba(15,23,42,.035);
      transition:.22s ease;
      animation:fadeInUp .4s ease both;
    }

    .product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(15,23,42,.10);
  border-color:rgba(84,159,87,.35);
}

.product-card:hover .product-image img{
  transform:scale(1.05);
}

.mobile-filter-toggle{
  animation:pulseFilter 2s infinite;
}

@keyframes pulseFilter{
  0%{box-shadow:0 0 0 0 rgba(84,159,87,.45);}
  70%{box-shadow:0 0 0 16px rgba(84,159,87,0);}
  100%{box-shadow:0 0 0 0 rgba(84,159,87,0);}
}

.product-image{
  height:220px;
  background:#ffffff;
  overflow:hidden;
  border-bottom:1px solid var(--line);

  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  transition:.35s ease;
}
.product-card:hover .product-image img{
  transform:scale(1.03);
}

    .product-info{
      padding:14px 15px 15px;
    }
    .product-tag{
      display:inline-flex;
      align-items:center;
      width:max-content;
      max-width:100%;
      padding:4px 8px;
      border-radius:7px;
      background:rgba(84,159,87,.12);
      color:var(--brand-dark);
      text-transform:uppercase;
      letter-spacing:.06em;
      font-size:10px;
      font-weight:900;
      margin-bottom:8px;
    }
    .product-title{
      margin:0 0 7px;
      color:var(--navy);
      font-size:16px;
      line-height:1.2;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .product-desc{
      margin:0;
      min-height:58px;
      color:#4c596c;
      font-size:12.5px;
      line-height:1.5;
      font-weight:600;
    }
    .product-actions{
      margin-top:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
    }
    .card-link{
      border:0;
      background:transparent;
      padding:0;
      color:#166534;
      font-size:12px;
      font-weight:900;
      cursor:pointer;
    }
    .quote-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#166534;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .quote-link svg{width:15px;height:15px}
    .empty-state{
      display:none;
      grid-column:1/-1;
      padding:50px 20px;
      text-align:center;
      border:1px dashed rgba(84,159,87,.35);
      border-radius:16px;
      background:#fbfdfb;
    }
    .empty-state.show{display:block}
    .empty-state h3{margin:0 0 8px;font-size:22px;color:var(--navy)}
    .empty-state p{margin:0;color:var(--muted)}

    .pagination-row{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      margin:24px 0 0;
    }
    .pagination{
      justify-self:center;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .page-btn{
      min-width:36px;
      height:36px;
      border:1px solid var(--line);
      border-radius:9px;
      background:#fff;
      color:#111827;
      font-weight:800;
      cursor:pointer;
      display:grid;
      place-items:center;
    }
    .page-btn.active{
      background:var(--brand);
      color:#fff;
      border-color:var(--brand);
    }
    .show-select{
      justify-self:end;
      display:flex;
      align-items:center;
      gap:9px;
      color:#334155;
      font-size:13px;
      font-weight:800;
    }
    .show-select select{
      width:128px;
      height:40px;
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
      padding:0 12px;
      font-weight:800;
    }

    /* FOOTER */
    .footer{
      background:
        radial-gradient(circle at 85% 16%, rgba(84,159,87,.12), transparent 28%),
        var(--navy);
      color:#fff;
      padding:26px 0 22px;
      margin-top:0;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .75fr .9fr 1.2fr;
      gap:54px;
      padding-bottom:18px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .footer p,
    .footer a,
    .footer span{
      color:rgba(255,255,255,.66);
      font-size:13px;
      line-height:1.55;
    }
    .footer h4{
      margin:0 0 12px;
      color:#fff;
      font-size:14px;
      font-weight:900;
    }
    .footer-logo{height:46px;margin-bottom:8px}
    .footer-links{
      display:grid;
      gap:7px;
    }
    .footer-contact{
      display:grid;
      gap:9px;
    }
    .footer-contact span{
      display:flex;
      align-items:center;
      gap:9px;
    }
    .newsletter-box{
      display:flex;
      align-items:center;
      gap:8px;
      height:38px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:9px;
      background:rgba(255,255,255,.04);
      padding:0 7px 0 12px;
      margin-top:10px;
    }
    .newsletter-box input{
      min-width:0;
      flex:1;
      border:0;
      outline:0;
      background:transparent;
      color:#fff;
      font-size:12px;
    }
    .newsletter-box button{
      width:34px;
      height:28px;
      border:0;
      border-radius:8px;
      background:var(--brand);
      color:#fff;
      display:grid;
      place-items:center;
      cursor:pointer;
    }
    .footer-bottom{
      padding-top:14px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      color:rgba(255,255,255,.50);
      font-size:12px;
    }

    /* MODAL */
    .product-modal{
      position:fixed;
      inset:0;
      z-index:3000;
      display:none;
      align-items:center;
      justify-content:center;
      padding:22px;
      background:rgba(7,24,33,.72);
      backdrop-filter:blur(10px);
    }
    .product-modal.open{display:flex}
    .modal-card{
      width:min(100%,880px);
      display:grid;
      grid-template-columns:.95fr 1.1fr;
      background:#fff;
      border-radius:22px;
      overflow:hidden;
      box-shadow:0 40px 120px rgba(0,0,0,.35);
      animation:modalZoom .25s ease both;
      position:relative;
    }
    @keyframes modalZoom{
      from{opacity:0;transform:scale(.95) translateY(14px)}
      to{opacity:1;transform:scale(1) translateY(0)}
    }
    .modal-close{
      position:absolute;
      right:16px;
      top:16px;
      z-index:4;
      width:38px;
      height:38px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:999px;
      display:grid;
      place-items:center;
      cursor:pointer;
    }
    .modal-image{
      min-height:360px;
      background:#f4f7f5;
    }
    .modal-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .modal-content{
      padding:48px 42px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .modal-tag{
      width:max-content;
      padding:6px 10px;
      border-radius:9px;
      background:rgba(84,159,87,.12);
      color:var(--brand-dark);
      font-size:11px;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.08em;
    }
    .modal-content h3{
      margin:18px 0 12px;
      color:var(--navy);
      font-size:34px;
      line-height:1.05;
      letter-spacing:-.04em;
    }
    .modal-content p{
      margin:0;
      color:#5f6b7a;
      line-height:1.7;
      font-size:15px;
    }
    .modal-list{
      display:grid;
      gap:10px;
      margin:24px 0;
    }
    .modal-list div{
      display:flex;
      align-items:center;
      gap:10px;
      color:#334155;
      font-size:13px;
      font-weight:800;
    }
    .modal-list svg{color:var(--brand);width:18px;height:18px}
    
@media(max-width:820px){
  input,
  select,
  textarea{
    font-size:16px !important;
  }
}
    /* RESPONSIVE */
    @media(max-width:1180px){
      .desktop-nav,.header-actions{display:none}
      .burger-btn{display:inline-flex}
      .brand-logo{min-width:auto}
      .catalog-hero{grid-template-columns:1fr;gap:24px}
      .catalog-layout{grid-template-columns:1fr}
      .catalog-sidebar{position:relative;top:auto}
      .products-grid{grid-template-columns:repeat(3,1fr)}
      .catalog-toolbar{grid-template-columns:1fr auto auto}
      .sort-wrap{justify-self:start}
      .footer-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media(max-width:820px){
      .container-x{width:min(100% - 28px, 1380px)}
      .products-page{padding-top:28px}
      .benefit-panel{grid-template-columns:repeat(2,1fr)}
      .benefit-item:nth-child(2){border-right:0}
      .benefit-item:nth-child(-n+2){border-bottom:1px solid var(--line)}
      .catalog-toolbar{grid-template-columns:1fr;gap:12px}
      .sort-wrap{justify-self:stretch}
      .sort-wrap select{flex:1}
      .view-toggle{width:max-content}
      .products-grid{grid-template-columns:1fr}
      .product-image{height:210px}
      .pagination-row{grid-template-columns:1fr;gap:16px}
      .show-select{justify-self:center}
      .modal-card{grid-template-columns:1fr;max-height:92vh;overflow:auto}
      .modal-image{min-height:240px;height:240px}
      .modal-content{padding:30px 24px}
      .footer-grid{grid-template-columns:1fr;gap:24px}
      .footer-bottom{flex-direction:column;text-align:center}
    }
    @media(max-width:480px){
      .main-logo{height:47px}
      .header-inner{height:64px}
      .page-title{font-size:40px}
      .benefit-panel{grid-template-columns:1fr}
      .benefit-item{border-right:0!important;border-bottom:1px solid var(--line)}
      .benefit-item:last-child{border-bottom:0}
      .category-btn span{white-space:normal}
      .catalog-sidebar{padding:14px}
    }
    /* MOBILE FILTER BUTTON */
.mobile-filter-toggle{
  display:none;
}

@media(max-width:820px){

  .catalog-layout{
    display:block;
  }

  .catalog-sidebar{
    position:fixed !important;
    left:0;
    right:0;
    bottom:-100%;
    top:auto !important;
    z-index:3000;
    background:#fff;
    border-radius:24px 24px 0 0;
    padding:20px;
    transition:.35s ease;
    box-shadow:0 -20px 60px rgba(0,0,0,.22);
    max-height:82vh;
    overflow-y:auto;
  }

  .catalog-sidebar.open{
    bottom:0;
  }

  .mobile-filter-toggle{
    position:fixed;
    right:18px;
    bottom:24px;
    z-index:3500;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:#549f57;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(84,159,87,.45);
    cursor:pointer;
  }

  .mobile-filter-toggle svg{
    width:24px;
    height:24px;
  }

  .catalog-toolbar{
    grid-template-columns:1fr;
  }
}
.products-grid.list-view{
  grid-template-columns:1fr !important;
}

.products-grid.list-view .product-card{
  display:grid;
  grid-template-columns:260px 1fr;
}

.products-grid.list-view .product-image{
  height:100%;
  min-height:190px;
}

.products-grid.list-view .product-info{
  padding:24px;
}

@media(max-width:820px){
  .view-toggle{
    display:none !important;
  }

  .products-grid.list-view .product-card{
    grid-template-columns:1fr;
  }
}
.category-list.compact{
  grid-template-columns: repeat(2, 1fr);
}

.category-list.compact .category-btn{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  min-height:86px;
  text-align:center;
  gap:7px;
}

.category-list.compact .category-btn span{
  font-size:11px;
  white-space:normal;
}

.category-list.compact .category-btn small{
  display:none;
}

.category-list.compact .category-btn i{
  width:22px;
  height:22px;
}

.side-view-icons button.active{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}

.side-view-icons button.active svg{
  color:#fff;
}
.quote-link{
  height:36px;
  padding:0 14px;
  border-radius:10px;
  border:1px solid rgba(84,159,87,.18);

  background:rgba(84,159,87,.08);

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  color:#166534;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;

  transition:.25s ease;
}

.quote-link svg{
  width:15px;
  height:15px;
  transition:.25s ease;
}

.quote-link:hover{
  background:#549f57;
  color:#fff;
  border-color:#549f57;

  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(84,159,87,.24);
}

.quote-link:hover svg{
  transform:translateX(3px);
}
.detail-btn{
  width:42px;
  height:42px;
  border-radius:12px;

  border:1px solid rgba(84,159,87,.18);
  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#166534;
  cursor:pointer;

  transition:.25s ease;
}

.detail-btn svg{
  width:18px;
  height:18px;
}

.detail-btn:hover{
  background:#549f57;
  color:#fff;

  transform:translateY(-2px);

  box-shadow:0 12px 24px rgba(84,159,87,.22);
}
