:root{
      --theme:#0B3D91;
      --theme-dark:#072b68;
      --theme-soft:#eaf1ff;
      --accent:#d61f69;
      --ink:#172033;
      --muted:#667085;
      --line:#e3e8f0;
      --surface:#fff;
      --background:#f5f7fb;
      --success:#16845b;
      --shadow:0 18px 45px rgba(15,35,70,.09);
      --radius:18px;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:var(--background);
      font-family:-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
      line-height:1.7;
      -webkit-font-smoothing:antialiased;
    }
    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-inline:auto}

    .topbar{
      color:#dfe9ff;
      background:#061d49;
      font-size:12px;
    }
    .topbar-inner{
      min-height:35px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .topbar-contact{display:flex;align-items:center;gap:20px}
    .topbar a{transition:color .2s ease}
    .topbar a:hover{color:#fff}

    .header{
      position:relative;
      z-index:50;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--line);
      box-shadow:0 4px 18px rgba(16,24,40,.04);
    }
    .header-inner{
      min-height:76px;
      display:flex;
      align-items:center;
      gap:28px;
    }
    .logo{
      min-width:0;
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--theme);
      font-weight:800;
      letter-spacing:.01em;
    }
    .logo img{
      width:42px;
      height:42px;
      flex:0 0 auto;
      object-fit:contain;
      border-radius:10px;
    }
    .logo span{
      max-width:190px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .main-nav{margin-left:auto;align-self:stretch}
    .nav-list{
      height:100%;
      display:flex;
      align-items:stretch;
      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 11px;
      border:0;
      color:#344054;
      background:transparent;
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
      cursor:pointer;
      transition:color .2s ease,background .2s ease;
    }
    .nav-link:hover,.nav-link:focus{color:var(--theme);background:var(--theme-soft);outline:0}
    .has-panel>.nav-link::after{
      content:"";
      width:6px;
      height:6px;
      margin:0 0 4px 7px;
      border-right:1.5px solid currentColor;
      border-bottom:1.5px solid currentColor;
      transform:rotate(45deg);
    }
    .dropdown-panel,.mega-menu{
      position:absolute;
      top:100%;
      z-index:60;
      visibility:hidden;
      opacity:0;
      pointer-events:none;
      transform:translateY(10px);
      transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:0 24px 55px rgba(18,38,75,.16);
    }
    .nav-item:hover>.dropdown-panel,
    .nav-item:focus-within>.dropdown-panel,
    .nav-item:hover>.mega-menu,
    .nav-item:focus-within>.mega-menu{
      visibility:visible;
      opacity:1;
      pointer-events:auto;
      transform:translateY(0);
    }
    .dropdown-panel{
      left:0;
      width:330px;
      padding:14px;
      border-radius:0 0 16px 16px;
    }
    .dropdown-list{display:grid;gap:3px}
    .dropdown-list a{
      padding:10px 12px;
      border-radius:9px;
      color:#344054;
      font-size:13px;
      font-weight:600;
    }
    .dropdown-list a:hover{color:var(--theme);background:var(--theme-soft)}
    .panel-entry{
      display:flex;
      justify-content:space-between;
      margin-top:10px;
      padding:11px 12px;
      color:#fff;
      background:var(--theme);
      border-radius:10px;
      font-size:13px;
      font-weight:800;
    }
    .mega-menu{
      left:50%;
      width:min(920px,calc(100vw - 40px));
      padding:20px;
      border-radius:0 0 20px 20px;
      transform:translate(-50%,10px);
    }
    .nav-item:hover>.mega-menu,.nav-item:focus-within>.mega-menu{transform:translate(-50%,0)}
    .mega-heading{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin-bottom:15px;
      padding-bottom:12px;
      border-bottom:1px solid var(--line);
    }
    .mega-heading strong{font-size:16px}
    .mega-heading a,.mega-heading span{color:var(--theme);font-size:12px;font-weight:800}
    .mega-categories{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:15px;
    }
    .mega-categories a{
      padding:6px 11px;
      color:var(--theme);
      background:var(--theme-soft);
      border-radius:999px;
      font-size:12px;
      font-weight:700;
    }
    .mega-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
    .mega-card{
      min-width:0;
      display:flex;
      align-items:flex-start;
      gap:11px;
      padding:11px;
      border:1px solid var(--line);
      border-radius:12px;
      transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
    }
    .mega-card:hover{
      border-color:#b9caeb;
      box-shadow:0 10px 24px rgba(11,61,145,.09);
      transform:translateY(-2px);
    }
    .mega-card img{
      width:50px;
      height:50px;
      flex:0 0 auto;
      object-fit:cover;
      border-radius:10px;
      background:#eef2f8;
    }
    .mega-card span{min-width:0}
    .mega-card strong{
      display:block;
      overflow:hidden;
      color:#1d2939;
      font-size:13px;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .mega-card p{
      display:-webkit-box;
      overflow:hidden;
      margin:3px 0;
      color:var(--muted);
      font-size:11px;
      line-height:1.45;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .mega-card small{display:block;color:#7a8496;font-size:10px;line-height:1.45}

    .header-btns{
      display:flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .header-btns>span{
      color:var(--theme);
      font-size:13px;
      font-weight:700;
    }
    .header-btns>a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 15px;
      color:#fff;
      background:var(--theme);
      border-radius:10px;
      font-size:13px;
      font-weight:800;
      box-shadow:0 8px 18px rgba(11,61,145,.2);
    }
    .header-btns>a:hover{background:var(--theme-dark)}
    .hamburger{
      width:42px;
      height:42px;
      display:none;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      padding:0;
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
      cursor:pointer;
    }
    .hamburger span{
      width:19px;
      height:2px;
      background:var(--theme);
      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:90;
      visibility:hidden;
      opacity:0;
      background:rgba(6,20,45,.58);
      backdrop-filter:blur(2px);
      transition:opacity .25s ease,visibility .25s ease;
    }
    .drawer-overlay.open{visibility:visible;opacity:1}
    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      z-index:100;
      width:min(390px,92vw);
      height:100dvh;
      overflow-y:auto;
      background:#fff;
      box-shadow:-20px 0 50px rgba(0,0,0,.16);
      transform:translateX(105%);
      transition:transform .25s ease;
    }
    .mobile-drawer.open{transform:translateX(0)}
    .drawer-head{
      position:sticky;
      top:0;
      z-index:2;
      display:flex;
      align-items:center;
      gap:10px;
      min-height:70px;
      padding:12px 18px;
      color:#fff;
      background:var(--theme);
    }
    .drawer-head>span{min-width:0;font-size:13px;font-weight:700}
    .drawer-head>a{
      margin-left:auto;
      padding:7px 11px;
      color:var(--theme);
      background:#fff;
      border-radius:8px;
      font-size:12px;
      font-weight:800;
    }
    .drawer-close{
      width:36px;
      height:36px;
      padding:0;
      color:#fff;
      border:1px solid rgba(255,255,255,.35);
      border-radius:9px;
      background:transparent;
      font-size:25px;
      line-height:1;
      cursor:pointer;
    }
    .drawer-menu{padding:15px 18px 30px}
    .drawer-link,.drawer-toggle{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:13px 4px;
      border:0;
      border-bottom:1px solid var(--line);
      background:transparent;
      text-align:left;
      font-size:14px;
      font-weight:800;
      cursor:pointer;
    }
    .drawer-toggle::after{
      content:"+";
      color:var(--theme);
      font-size:20px;
      font-weight:400;
    }
    .drawer-toggle.active::after{content:"−"}
    .drawer-submenu{
      max-height:0;
      overflow:hidden;
      padding:0 10px;
      background:#f7f9fc;
      transition:max-height .3s ease,padding .3s ease;
    }
    .drawer-submenu.open{max-height:650px;padding:8px 10px}
    .drawer-submenu a{
      display:block;
      padding:9px 7px;
      color:#526078;
      border-bottom:1px dashed #dce2eb;
      font-size:13px;
    }

    .productlist-main{min-height:700px}
    .productlist-main .product-hero{
      position:relative;
      overflow:hidden;
      padding:68px 0 58px;
      color:#fff;
      background:
        radial-gradient(circle at 85% 20%,rgba(214,31,105,.35),transparent 28%),
        radial-gradient(circle at 10% 100%,rgba(73,135,255,.3),transparent 34%),
        linear-gradient(135deg,#071c48 0%,var(--theme) 58%,#164fa9 100%);
    }
    .productlist-main .product-hero::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.15;
      background-image:linear-gradient(rgba(255,255,255,.25) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.25) 1px,transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom,#000,transparent);
    }
    .productlist-main .hero-inner{position:relative;z-index:1;max-width:850px}
    .productlist-main .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      padding:6px 12px;
      border:1px solid rgba(255,255,255,.3);
      border-radius:999px;
      background:rgba(255,255,255,.1);
      font-size:12px;
      font-weight:800;
      letter-spacing:.08em;
    }
    .productlist-main .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:#ff6aa2;
      box-shadow:0 0 0 5px rgba(255,106,162,.15);
    }
    .productlist-main .product-hero h1{
      margin:0;
      font-size:clamp(34px,5vw,58px);
      line-height:1.22;
      letter-spacing:-.04em;
    }
    .productlist-main .product-hero p{
      max-width:720px;
      margin:18px 0 0;
      color:#dce8ff;
      font-size:16px;
    }
    .productlist-main .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:25px;
    }
    .productlist-main .hero-points span{
      padding:8px 12px;
      border-radius:9px;
      background:rgba(255,255,255,.11);
      font-size:12px;
      font-weight:700;
    }
    .productlist-main .catalog{padding:52px 0 76px}
    .productlist-main .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:25px;
      margin-bottom:22px;
    }
    .productlist-main .section-head small{
      display:block;
      margin-bottom:4px;
      color:var(--accent);
      font-weight:800;
      letter-spacing:.08em;
    }
    .productlist-main .section-head h2{margin:0;font-size:clamp(24px,3vw,34px);line-height:1.3}
    .productlist-main .section-head p{max-width:520px;margin:0;color:var(--muted);font-size:14px}
    .productlist-main .category-filter{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-bottom:30px;
      padding:15px;
      border:1px solid var(--line);
      border-radius:15px;
      background:#fff;
      box-shadow:0 8px 25px rgba(15,35,70,.04);
    }
    .productlist-main .category-filter a{
      padding:8px 14px;
      color:#46526a;
      border:1px solid #dfe5ee;
      border-radius:999px;
      background:#f8fafc;
      font-size:13px;
      font-weight:700;
      transition:.2s ease;
    }
    .productlist-main .category-filter a:hover{
      color:#fff;
      border-color:var(--theme);
      background:var(--theme);
      transform:translateY(-1px);
    }
    .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;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:0 10px 30px rgba(15,35,70,.05);
      transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
    }
    .productlist-main .product-card:hover{
      border-color:#bacbea;
      box-shadow:var(--shadow);
      transform:translateY(-5px);
    }
    .productlist-main .product-image{
      position:relative;
      display:block;
      aspect-ratio:16/10;
      overflow:hidden;
      background:linear-gradient(145deg,#edf2f9,#dde6f3);
    }
    .productlist-main .product-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .45s ease;
    }
    .productlist-main .product-card:hover .product-image img{transform:scale(1.045)}
    .productlist-main .product-label{
      position:absolute;
      top:13px;
      left:13px;
      padding:5px 10px;
      color:#fff;
      background:rgba(11,61,145,.92);
      border-radius:999px;
      font-size:11px;
      font-weight:800;
      backdrop-filter:blur(5px);
    }
    .productlist-main .product-body{
      min-width:0;
      display:flex;
      flex:1;
      flex-direction:column;
      padding:20px;
    }
    .productlist-main .product-body h3{
      margin:0;
      color:#172033;
      font-size:19px;
      line-height:1.45;
    }
    .productlist-main .product-body h3 a:hover{color:var(--theme)}
    .productlist-main .product-summary{
      display:-webkit-box;
      overflow:hidden;
      margin:10px 0 16px;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }
    .productlist-main .product-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px 14px;
      margin-top:auto;
      padding-top:14px;
      color:#7b8495;
      border-top:1px solid #edf0f5;
      font-size:12px;
    }
    .productlist-main .product-meta span{display:inline-flex;align-items:center;gap:5px}
    .productlist-main .product-meta span::before{
      content:"";
      width:5px;
      height:5px;
      border-radius:50%;
      background:var(--accent);
    }
    .productlist-main .product-action{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-top:16px;
    }
    .productlist-main .product-price{color:var(--success);font-size:13px;font-weight:800}
    .productlist-main .detail-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--theme);
      font-size:13px;
      font-weight:800;
    }
    .productlist-main .detail-link span{transition:transform .2s ease}
    .productlist-main .detail-link:hover span{transform:translateX(4px)}
    .productlist-main .pagination{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:center;
      gap:8px;
      margin-top:40px;
    }
    .productlist-main .pagination a{
      min-width:42px;
      min-height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:7px 12px;
      color:#46526a;
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
      font-size:13px;
      font-weight:800;
      transition:.2s ease;
    }
    .productlist-main .pagination a:hover,
    .productlist-main .pagination a.active,
    .productlist-main .pagination a.current{
      color:#fff;
      border-color:var(--theme);
      background:var(--theme);
      box-shadow:0 8px 18px rgba(11,61,145,.18);
    }
    .productlist-main .catalog-note{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
      margin-top:52px;
    }
    .productlist-main .note-card{
      padding:22px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
    }
    .productlist-main .note-card strong{display:block;margin-bottom:7px;color:var(--theme);font-size:15px}
    .productlist-main .note-card p{margin:0;color:var(--muted);font-size:13px}

    .footer{
      color:#cbd5e7;
      background:#07172f;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.5fr 1fr 1fr 1fr;
      gap:42px;
      padding:58px 0 42px;
    }
    .footer .logo{color:#fff}
    .footer .logo img{background:#fff}
    .footer-brand p{margin:17px 0 0;color:#9eabc0;font-size:13px;line-height:1.85}
    .footer h2{margin:0 0 16px;color:#fff;font-size:15px}
    .footer-links,.footer-contact{display:grid;gap:9px}
    .footer-links a,.footer-contact a{
      color:#aeb9cb;
      font-size:13px;
      transition:color .2s ease,transform .2s ease;
    }
    .footer-links a:hover,.footer-contact a:hover{color:#fff;transform:translateX(2px)}
    .footer-social{margin-top:5px}
    .footer-bottom{
      min-height:68px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      border-top:1px solid rgba(255,255,255,.1);
      color:#8390a4;
      font-size:12px;
    }

    @media (max-width:1080px){
      .main-nav{display:none}
      .hamburger{display:flex}
      .header-btns{margin-left:auto}
      .productlist-main .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:720px){
      .container{width:min(100% - 28px,var(--container))}
      .topbar-inner{min-height:42px;align-items:flex-start;flex-direction:column;justify-content:center;gap:2px;padding:5px 0}
      .topbar-contact{flex-wrap:wrap;gap:2px 12px}
      .header-inner{min-height:68px;gap:10px}
      .logo img{width:37px;height:37px}
      .logo span{max-width:135px;font-size:14px}
      .header-btns>span{display:none}
      .header-btns>a{min-height:38px;padding:0 11px;font-size:12px}
      .productlist-main .product-hero{padding:49px 0 45px}
      .productlist-main .product-hero p{font-size:14px}
      .productlist-main .catalog{padding:38px 0 58px}
      .productlist-main .section-head{align-items:flex-start;flex-direction:column;gap:9px}
      .productlist-main .product-grid{grid-template-columns:1fr}
      .productlist-main .catalog-note{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr;gap:30px;padding:45px 0 34px}
      .footer-bottom{align-items:flex-start;flex-direction:column;justify-content:center;padding:18px 0}
    }
    @media (max-width:420px){
      .header-btns>a{display:none}
      .productlist-main .hero-points{display:grid;grid-template-columns:1fr}
      .productlist-main .product-body{padding:17px}
    }