:root{
      --brand:#0B3D91;
      --template-theme:{主题色};
      --brand-dark:#072b68;
      --brand-soft:#eaf1ff;
      --cyan:#06c9e6;
      --cyan-soft:#e8fbff;
      --ink:#12213f;
      --muted:#64718a;
      --line:#dce4f0;
      --surface:#ffffff;
      --surface-soft:#f4f7fb;
      --shadow:0 18px 48px rgba(11,61,145,.12);
      --radius:18px;
      --container:1200px;
    }

    *{
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      margin:0;
      color:var(--ink);
      background:#fff;
      font-family:Arial,"Noto Sans KR","Apple SD Gothic Neo",sans-serif;
      line-height:1.65;
      overflow-x:hidden;
    }

    body.drawer-lock{
      overflow:hidden;
    }

    img{
      display:block;
      max-width:100%;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    button,
    input,
    select{
      font:inherit;
    }

    button{
      color:inherit;
    }

    .container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }

    .skip-link{
      position:fixed;
      top:12px;
      left:12px;
      z-index:3000;
      padding:11px 16px;
      color:#fff;
      background:var(--brand);
      border-radius:10px;
      transform:translateY(-160%);
      transition:transform .2s ease;
    }

    .skip-link:focus{
      transform:translateY(0);
    }

    .topbar{
      color:#dce9ff;
      background:#061b3e;
      font-size:13px;
    }

    .topbar-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .topbar-welcome{
      margin:0;
    }

    .topbar-contact{
      display:flex;
      align-items:center;
      gap:20px;
    }

    .topbar-contact a{
      transition:color .2s ease;
    }

    .topbar-contact a:hover,
    .topbar-contact a:focus-visible{
      color:var(--cyan);
    }

    .header{
      position:relative;
      z-index:1000;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--line);
      box-shadow:0 8px 30px rgba(10,34,74,.05);
    }

    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:26px;
    }

    .logo{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:11px;
      color:var(--brand);
      font-weight:900;
      letter-spacing:-.02em;
    }

    .logo img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:10px;
    }

    .logo span{
      max-width:190px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .main-nav{
      flex:1 1 auto;
      align-self:stretch;
    }

    .nav-list{
      height:100%;
      display:flex;
      align-items:stretch;
      justify-content:center;
      gap:2px;
      margin:0;
      padding:0;
      list-style:none;
    }

    .nav-item{
      position:relative;
      display:flex;
      align-items:center;
    }

    .nav-link{
      height:100%;
      display:flex;
      align-items:center;
      padding:0 13px;
      font-size:15px;
      font-weight:750;
      white-space:nowrap;
      transition:color .2s ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-item:focus-within > .nav-link{
      color:var(--brand);
    }

    .has-panel > .nav-link::after{
      width:6px;
      height:6px;
      margin:-4px 0 0 8px;
      border-right:2px solid currentColor;
      border-bottom:2px solid currentColor;
      content:"";
      transform:rotate(45deg);
    }

    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      left:0;
      z-index:1050;
      visibility:hidden;
      opacity:0;
      transform:translateY(8px);
      pointer-events:none;
      transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
    }

    .dropdown-panel{
      width:340px;
      padding:20px;
      background:#fff;
      border:1px solid var(--line);
      border-top:3px solid var(--cyan);
      border-radius:0 0 16px 16px;
      box-shadow:var(--shadow);
    }

    .mega-menu{
      left:50%;
      width:760px;
      padding:24px;
      background:#fff;
      border:1px solid var(--line);
      border-top:3px solid var(--cyan);
      border-radius:0 0 20px 20px;
      box-shadow:var(--shadow);
      transform:translate(-50%,8px);
    }

    .mega-menu.mega-wide{
      width:min(1040px,calc(100vw - 40px));
    }

    .nav-item:nth-last-child(-n+2) .mega-menu{
      left:auto;
      right:0;
      transform:translateY(8px);
    }

    .nav-item:hover > .dropdown-panel,
    .nav-item:focus-within > .dropdown-panel{
      visibility:visible;
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }

    .nav-item:hover > .mega-menu,
    .nav-item:focus-within > .mega-menu{
      visibility:visible;
      opacity:1;
      transform:translate(-50%,0);
      pointer-events:auto;
    }

    .nav-item:nth-last-child(-n+2):hover > .mega-menu,
    .nav-item:nth-last-child(-n+2):focus-within > .mega-menu{
      transform:translateY(0);
    }

    .dropdown-title,
    .mega-title{
      margin:0 0 12px;
      color:var(--brand);
      font-weight:900;
    }

    .dropdown-article{
      display:block;
      padding:10px 0;
      border-bottom:1px solid var(--line);
      font-size:14px;
      font-weight:700;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .dropdown-article:hover,
    .dropdown-article:focus-visible{
      color:var(--brand);
    }

    .panel-more{
      display:inline-flex;
      margin-top:15px;
      color:var(--brand);
      font-size:14px;
      font-weight:900;
    }

    .mega-layout{
      display:grid;
      grid-template-columns:200px minmax(0,1fr);
      gap:22px;
    }

    .mega-sidebar{
      padding:20px;
      background:linear-gradient(145deg,var(--brand),var(--brand-dark));
      color:#fff;
      border-radius:15px;
    }

    .mega-sidebar .mega-title{
      color:#fff;
      font-size:18px;
    }

    .mega-sidebar p{
      margin:0 0 18px;
      color:#dce8ff;
      font-size:14px;
    }

    .mega-sidebar a{
      display:inline-flex;
      padding:9px 12px;
      color:#06214d;
      background:var(--cyan);
      border-radius:9px;
      font-size:13px;
      font-weight:900;
    }

    .mega-categories{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:18px;
      padding-bottom:16px;
      border-bottom:1px solid var(--line);
    }

    .mega-categories a{
      padding:7px 12px;
      color:var(--brand);
      background:var(--brand-soft);
      border-radius:999px;
      font-size:13px;
      font-weight:800;
    }

    .mega-grid{
      min-width:0;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }

    .mega-card{
      min-width:0;
      display:flex;
      flex-direction:column;
      gap:8px;
      padding:14px;
      background:var(--surface-soft);
      border:1px solid transparent;
      border-radius:13px;
      transition:transform .2s ease,border-color .2s ease,background .2s ease;
    }

    .mega-card:hover,
    .mega-card:focus-visible{
      background:#fff;
      border-color:#aac5f2;
      transform:translateY(-2px);
    }

    .mega-card img{
      width:38px;
      height:38px;
      object-fit:contain;
      border-radius:8px;
    }

    .mega-card.video-card img,
    .mega-card.product-card img{
      width:100%;
      height:76px;
      object-fit:cover;
    }

    .mega-card strong,
    .mega-card small{
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .mega-card strong{
      font-size:14px;
      white-space:nowrap;
    }

    .mega-card small{
      color:var(--muted);
      font-size:12px;
      line-height:1.5;
      display:-webkit-box;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }

    .mega-meta{
      display:flex;
      flex-wrap:wrap;
      gap:6px 10px;
      color:var(--brand);
      font-size:11px;
      font-weight:800;
    }

    .header-btns{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:10px;
    }

    .member-entry{
      display:flex;
      align-items:center;
      font-size:14px;
      font-weight:800;
    }

    .member-entry a{
      color:var(--brand);
    }

    .open-account{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 17px;
      color:#fff;
      background:var(--brand);
      border-radius:11px;
      font-size:14px;
      font-weight:900;
      box-shadow:0 9px 20px rgba(11,61,145,.2);
      transition:background .2s ease,transform .2s ease;
    }

    .open-account:hover,
    .open-account:focus-visible{
      background:var(--brand-dark);
      transform:translateY(-1px);
    }

    .hamburger{
      width:44px;
      height:44px;
      display:none;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      padding:0;
      background:#fff;
      border:1px solid var(--line);
      border-radius:11px;
      cursor:pointer;
    }

    .hamburger span{
      width:20px;
      height:2px;
      background:var(--ink);
      border-radius:999px;
      transition:transform .2s ease,opacity .2s ease;
    }

    .hamburger.active span:nth-child(1){
      transform:translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2){
      opacity:0;
    }

    .hamburger.active span:nth-child(3){
      transform:translateY(-7px) rotate(-45deg);
    }

    .drawer-overlay{
      position:fixed;
      inset:0;
      z-index:1800;
      visibility:hidden;
      opacity:0;
      background:rgba(4,16,39,.6);
      backdrop-filter:blur(3px);
      transition:opacity .25s ease,visibility .25s ease;
    }

    .drawer-overlay.open{
      visibility:visible;
      opacity:1;
    }

    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      z-index:1900;
      width:min(390px,92vw);
      height:100%;
      overflow-y:auto;
      color:var(--ink);
      background:#fff;
      box-shadow:-20px 0 50px rgba(3,17,42,.25);
      transform:translateX(105%);
      transition:transform .28s ease;
    }

    .mobile-drawer.open{
      transform:translateX(0);
    }

    .drawer-head{
      min-height:74px;
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px 18px;
      background:var(--brand);
      color:#fff;
    }

    .drawer-head > a{
      padding:8px 11px;
      color:#06214d;
      background:var(--cyan);
      border-radius:8px;
      font-size:13px;
      font-weight:900;
    }

    .drawer-close{
      width:38px;
      height:38px;
      margin-left:auto;
      padding:0;
      color:#fff;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.25);
      border-radius:9px;
      font-size:27px;
      line-height:1;
      cursor:pointer;
    }

    .drawer-menu{
      padding:14px 18px 28px;
    }

    .drawer-link,
    .drawer-toggle{
      width:100%;
      min-height:50px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:10px 4px;
      background:none;
      border:0;
      border-bottom:1px solid var(--line);
      font-weight:850;
      text-align:left;
      cursor:pointer;
    }

    .drawer-toggle::after{
      width:8px;
      height:8px;
      margin-right:5px;
      border-right:2px solid var(--brand);
      border-bottom:2px solid var(--brand);
      content:"";
      transform:rotate(45deg);
      transition:transform .2s ease;
    }

    .drawer-toggle.active::after{
      transform:rotate(225deg);
    }

    .drawer-submenu{
      max-height:0;
      overflow:hidden;
      padding:0 12px;
      background:var(--surface-soft);
      transition:max-height .3s ease,padding .3s ease;
    }

    .drawer-submenu.open{
      max-height:620px;
      padding:8px 12px;
    }

    .drawer-submenu a{
      display:block;
      padding:9px 4px;
      color:var(--muted);
      border-bottom:1px solid #e8edf5;
      font-size:14px;
    }

    .productlist-main{
      min-width:0;
      background:var(--surface-soft);
    }

    .productlist-main .product-hero{
      position:relative;
      overflow:hidden;
      padding:74px 0 66px;
      color:#fff;
      background:
        radial-gradient(circle at 15% 20%,rgba(6,201,230,.3),transparent 30%),
        radial-gradient(circle at 85% 80%,rgba(74,123,220,.35),transparent 34%),
        linear-gradient(135deg,#061a3c 0%,var(--brand) 58%,#075f92 100%);
    }

    .productlist-main .product-hero::before,
    .productlist-main .product-hero::after{
      position:absolute;
      border:1px solid rgba(255,255,255,.12);
      border-radius:50%;
      content:"";
    }

    .productlist-main .product-hero::before{
      width:380px;
      height:380px;
      top:-230px;
      right:8%;
    }

    .productlist-main .product-hero::after{
      width:230px;
      height:230px;
      bottom:-170px;
      left:10%;
    }

    .productlist-main .breadcrumb{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:9px;
      margin-bottom:22px;
      color:#c8d9f8;
      font-size:14px;
    }

    .productlist-main .breadcrumb a:hover,
    .productlist-main .breadcrumb a:focus-visible{
      color:var(--cyan);
    }

    .productlist-main .hero-label{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:16px;
      padding:7px 13px;
      color:#052451;
      background:var(--cyan);
      border-radius:999px;
      font-size:13px;
      font-weight:900;
    }

    .productlist-main .hero-label::before{
      width:7px;
      height:7px;
      background:var(--brand);
      border-radius:50%;
      content:"";
    }

    .productlist-main .product-hero h1{
      position:relative;
      z-index:1;
      max-width:820px;
      margin:0 0 18px;
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      letter-spacing:-.045em;
    }

    .productlist-main .product-hero p{
      position:relative;
      z-index:1;
      max-width:760px;
      margin:0;
      color:#d8e6ff;
      font-size:17px;
    }

    .productlist-main .catalog-section{
      padding:60px 0 78px;
    }

    .productlist-main .category-panel{
      margin-bottom:34px;
      padding:26px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:0 12px 35px rgba(11,61,145,.07);
    }

    .productlist-main .section-heading{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:22px;
    }

    .productlist-main .section-kicker{
      display:block;
      margin-bottom:5px;
      color:var(--brand);
      font-size:13px;
      font-weight:900;
      letter-spacing:.08em;
    }

    .productlist-main .section-heading h2{
      margin:0;
      color:var(--ink);
      font-size:clamp(25px,3vw,34px);
      letter-spacing:-.03em;
    }

    .productlist-main .section-heading p{
      max-width:550px;
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .productlist-main .category-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .productlist-main .category-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:42px;
      padding:8px 15px;
      color:var(--brand);
      background:var(--brand-soft);
      border:1px solid #cdddf8;
      border-radius:999px;
      font-size:14px;
      font-weight:850;
      transition:color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease;
    }

    .productlist-main .category-link::after{
      content:"→";
    }

    .productlist-main .category-link:hover,
    .productlist-main .category-link:focus-visible{
      color:#06214d;
      background:var(--cyan);
      border-color:var(--cyan);
      transform:translateY(-2px);
    }

    .productlist-main .catalog-toolbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      margin-bottom:25px;
      padding:18px 20px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:15px;
    }

    .productlist-main .catalog-toolbar strong{
      color:var(--brand);
    }

    .productlist-main .catalog-toolbar span{
      color:var(--muted);
      font-size:14px;
    }

    .productlist-main .product-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:22px;
    }

    .productlist-main .product-card{
      min-width:0;
      display:flex;
      flex-direction:column;
      overflow:hidden;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:0 10px 30px rgba(13,42,88,.07);
      transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
    }

    .productlist-main .product-card:hover{
      border-color:#9ab8e9;
      box-shadow:0 20px 45px rgba(11,61,145,.14);
      transform:translateY(-5px);
    }

    .productlist-main .product-image-link{
      position:relative;
      display:block;
      overflow:hidden;
      aspect-ratio:16/10;
      background:linear-gradient(145deg,#e8effa,#f8fbff);
    }

    .productlist-main .product-image-link img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .35s ease;
    }

    .productlist-main .product-card:hover .product-image-link img{
      transform:scale(1.04);
    }

    .productlist-main .product-badge{
      position:absolute;
      top:14px;
      left:14px;
      padding:6px 10px;
      color:#fff;
      background:rgba(7,43,104,.9);
      border:1px solid rgba(255,255,255,.22);
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      backdrop-filter:blur(6px);
    }

    .productlist-main .product-card-body{
      min-width:0;
      flex:1;
      display:flex;
      flex-direction:column;
      padding:21px;
    }

    .productlist-main .product-card h3{
      margin:0 0 11px;
      font-size:20px;
      line-height:1.35;
      letter-spacing:-.025em;
    }

    .productlist-main .product-card h3 a:hover,
    .productlist-main .product-card h3 a:focus-visible{
      color:var(--brand);
    }

    .productlist-main .product-summary{
      min-height:78px;
      margin:0 0 18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
      display:-webkit-box;
      overflow:hidden;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }

    .productlist-main .product-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px 15px;
      margin-top:auto;
      padding-top:15px;
      color:#758198;
      border-top:1px solid var(--line);
      font-size:12px;
    }

    .productlist-main .product-meta span{
      display:inline-flex;
      align-items:center;
      gap:5px;
    }

    .productlist-main .product-meta span::before{
      width:6px;
      height:6px;
      background:var(--cyan);
      border-radius:50%;
      content:"";
    }

    .productlist-main .product-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:17px;
    }

    .productlist-main .product-detail{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 15px;
      color:#fff;
      background:var(--brand);
      border-radius:10px;
      font-size:14px;
      font-weight:900;
      transition:background .2s ease,transform .2s ease;
    }

    .productlist-main .product-detail:hover,
    .productlist-main .product-detail:focus-visible{
      background:var(--brand-dark);
      transform:translateY(-1px);
    }

    .productlist-main .product-read{
      color:var(--brand);
      font-size:13px;
      font-weight:850;
    }

    .productlist-main .pagination{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:center;
      gap:8px;
      margin-top:42px;
    }

    .productlist-main .pagination a{
      min-width:42px;
      height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 13px;
      color:var(--brand);
      background:#fff;
      border:1px solid var(--line);
      border-radius:10px;
      font-size:14px;
      font-weight:850;
      transition:color .2s ease,background .2s ease,border-color .2s ease;
    }

    .productlist-main .pagination a:hover,
    .productlist-main .pagination a:focus-visible,
    .productlist-main .pagination a.active,
    .productlist-main .pagination a.current{
      color:#fff;
      background:var(--brand);
      border-color:var(--brand);
    }

    .productlist-main .catalog-note{
      margin-top:34px;
      padding:22px 24px;
      color:#33415c;
      background:var(--cyan-soft);
      border:1px solid #b9edf5;
      border-radius:15px;
      font-size:14px;
    }

    .productlist-main .catalog-note strong{
      display:block;
      margin-bottom:4px;
      color:var(--brand);
      font-size:16px;
    }

    .footer{
      color:#c9d5e9;
      background:#06152f;
    }

    .footer-main{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr 1fr;
      gap:42px;
      padding-top:58px;
      padding-bottom:44px;
    }

    .footer .logo{
      color:#fff;
    }

    .footer-brand p{
      max-width:380px;
      margin:18px 0;
      color:#9fb0ca;
      font-size:14px;
    }

    .footer-social{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }

    .footer-social a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:6px 10px;
      color:#d9e7fb;
      background:rgba(255,255,255,.07);
      border-radius:8px;
      font-size:13px;
    }

    .footer h2{
      margin:4px 0 18px;
      color:#fff;
      font-size:16px;
    }

    .footer-links{
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .footer-links a,
    .footer-contact a{
      color:#aebdd3;
      font-size:14px;
      transition:color .2s ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible,
    .footer-contact a:hover,
    .footer-contact a:focus-visible{
      color:var(--cyan);
    }

    .footer-contact address{
      display:flex;
      flex-direction:column;
      gap:10px;
      color:#91a3bd;
      font-size:14px;
      font-style:normal;
    }

    .footer-bottom{
      min-height:68px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding-top:15px;
      padding-bottom:15px;
      border-top:1px solid rgba(255,255,255,.1);
      color:#8799b4;
      font-size:13px;
    }

    .footer-bottom-links{
      display:flex;
      gap:16px;
    }

    .footer-bottom-links a:hover,
    .footer-bottom-links a:focus-visible{
      color:var(--cyan);
    }

    @media (max-width:1100px){
      .main-nav{
        display:none;
      }

      .hamburger{
        display:flex;
      }

      .header-inner{
        min-height:72px;
      }

      .header-btns{
        margin-left:auto;
      }

      .productlist-main .product-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

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

    @media (max-width:760px){
      .container{
        width:min(100% - 28px,var(--container));
      }

      .topbar-inner{
        min-height:48px;
        align-items:flex-start;
        flex-direction:column;
        justify-content:center;
        gap:2px;
        padding:7px 0;
      }

      .topbar-contact{
        width:100%;
        gap:12px;
        overflow:hidden;
      }

      .topbar-contact a{
        min-width:0;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
      }

      .header-btns .member-entry,
      .header-btns .open-account{
        display:none;
      }

      .logo img{
        width:37px;
        height:37px;
      }

      .logo span{
        max-width:180px;
      }

      .productlist-main .product-hero{
        padding:52px 0 48px;
      }

      .productlist-main .product-hero p{
        font-size:15px;
      }

      .productlist-main .catalog-section{
        padding:38px 0 55px;
      }

      .productlist-main .category-panel{
        padding:20px;
      }

      .productlist-main .section-heading,
      .productlist-main .catalog-toolbar{
        align-items:flex-start;
        flex-direction:column;
      }

      .productlist-main .product-grid{
        grid-template-columns:1fr;
      }

      .productlist-main .product-summary{
        min-height:auto;
      }

      .footer-main{
        grid-template-columns:1fr;
        gap:30px;
        padding-top:44px;
      }

      .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
      }
    }

    @media (max-width:420px){
      .logo span{
        max-width:135px;
      }

      .productlist-main .product-actions{
        align-items:stretch;
        flex-direction:column;
      }

      .productlist-main .product-detail{
        width:100%;
      }
    }