 :root{
      --brand-red:#e30613;
      --brand-red-dark:#b6000a;
      --ink:#151515;
      --muted:#666;
      --line:#e6e6e6;
      --soft:#f5f5f5;
      --white:#fff;
      --success:#198754;
      --shadow:0 10px 30px rgba(0,0,0,.10);
      --radius:14px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      color:var(--ink);
      background:#efefef;
      line-height:1.55;
    }

    a{color:inherit}
    button, input{font:inherit}

    .topbar{
      background:var(--brand-red);
      color:#fff;
      padding:8px 16px;
      text-align:center;
      font-size:14px;
      font-weight:700;
    }

    .header{
      background:#fff;
      border-bottom:1px solid var(--line);
      position:sticky;
      top:0;
      z-index:20;
    }

    .header-inner{
      width:min(1120px, calc(100% - 32px));
      min-height:74px;
      margin:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
    }

    .brand-mark{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:12px;
      color:#fff;
      background:linear-gradient(145deg,var(--brand-red),var(--brand-red-dark));
      font-weight:900;
      letter-spacing:-1px;
      box-shadow:0 6px 14px rgba(227,6,19,.25);
    }

    .brand-name{
      font-size:25px;
      font-weight:900;
      letter-spacing:-.8px;
    }

    .brand-name span{color:var(--brand-red)}

    .header-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }

    .header-link{
      color:#333;
      text-decoration:none;
      font-size:14px;
      font-weight:700;
    }

    .header-button{
      background:var(--ink);
      color:#fff;
      padding:11px 16px;
      border-radius:9px;
      text-decoration:none;
      font-weight:800;
      font-size:14px;
    }

    .page{
      width:min(760px, calc(100% - 24px));
      margin:26px auto 50px;
    }

    .card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
      margin-bottom:20px;
    }

    .post-head{
      padding:18px 20px 14px;
      display:flex;
      align-items:center;
      gap:12px;
      border-bottom:1px solid var(--line);
    }

    .avatar{
      width:48px;
      height:48px;
      border-radius:50%;
      background:var(--brand-red);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:900;
    }

    .post-brand{
      font-weight:900;
      font-size:17px;
    }

    .verified{
      display:inline-grid;
      place-items:center;
      width:17px;
      height:17px;
      margin-left:4px;
      border-radius:50%;
      background:#1877f2;
      color:white;
      font-size:11px;
      vertical-align:1px;
    }

    .post-meta{
      font-size:13px;
      color:var(--muted);
      margin-top:2px;
    }

    .hero{
      padding:36px 28px 28px;
      text-align:center;
      background:
        radial-gradient(circle at 20% 0%, rgba(227,6,19,.12), transparent 28%),
        linear-gradient(#fff,#fff7f7);
    }

    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      background:#ffe8ea;
      color:var(--brand-red-dark);
      border:1px solid #ffc7cc;
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.4px;
    }

    h1{
      margin:18px auto 10px;
      font-size:clamp(31px,7vw,48px);
      line-height:1.05;
      letter-spacing:-1.5px;
      max-width:620px;
    }

    .lead{
      color:#505050;
      font-size:18px;
      max-width:610px;
      margin:0 auto;
    }

    .winner-box {
    margin: 28px auto 22px;
    background: #ffb96e1c;
    border: 2px solid #e72d2d;
    border-radius: 14px;
    padding: 22px;
    max-width: 590px;
    border-style: dashed;
}

    .winner-label{
      color:var(--muted);
      text-transform:uppercase;
      letter-spacing:1px;
      font-size:12px;
      font-weight:900;
    }

    .winner-name{
      margin:5px 0;
      font-size:28px;
      font-weight:900;
      color:var(--brand-red);
    }

    .prize-name{
      font-size:17px;
      font-weight:800;
    }

    .note{
      max-width:610px;
      margin:14px auto 0;
      color:#5a5a5a;
      font-size:15px;
    }

    .cta{
      display:inline-flex;
      justify-content:center;
      align-items:center;
      min-height:52px;
      margin-top:22px;
      padding:0 26px;
      border:none;
      border-radius:10px;
      background:#49850a;
      color:#fff;
      text-decoration:none;
      font-weight:900;
      box-shadow:0 8px 20px rgba(227,6,19,.25);
      transition:.2s ease;
    }
button{cursor: pointer;}
a{cursor: pointer;}
    .cta:hover{
      transform:translateY(-1px);
      background:var(--brand-red-dark);
    }

    .engagement{
      padding:13px 20px;
      border-top:1px solid var(--line);
      color:var(--muted);
      font-size:14px;
      display:flex;
      justify-content:space-between;
      gap:15px;
    }

    .actions{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      border-top:1px solid var(--line);
    }

    .action{
      padding:13px 8px;
      text-align:center;
      color:#555;
      font-size:14px;
      font-weight:800;
      border-right:1px solid var(--line);
    }

    .action:last-child{border-right:0}

    .section{
      padding:26px;
    }

    .section h2{
      margin:0 0 10px;
      font-size:28px;
      line-height:1.15;
      letter-spacing:-.6px;
    }

    .section-sub{
      margin:0 0 22px;
      color:var(--muted);
    }

    .steps{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
    }

    .step{
      background:var(--soft);
      border:1px solid var(--line);
      border-radius:12px;
      padding:18px;
    }

    .step-number{
      width:32px;
      height:32px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--brand-red);
      color:#fff;
      font-weight:900;
      margin-bottom:12px;
    }

    .step strong{
      display:block;
      margin-bottom:5px;
    }

    .step p{
      margin:0;
      font-size:14px;
      color:#5c5c5c;
    }

    .code-panel{
      margin-top:20px;
      border:1px dashed #bbb;
      border-radius:12px;
      padding:20px;
      text-align:center;
      background:#fafafa;
    }

    .code-label{
      font-size:13px;
      color:var(--muted);
      font-weight:800;
    }

    .promo-code{
      margin:8px 0 14px;
      font-size:26px;
      font-weight:900;
      letter-spacing:2px;
    }

    .code-help{
      margin:12px 0 0;
      color:var(--muted);
      font-size:13px;
    }

    .trust-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:20px;
    }

    .trust-item{
      border:1px solid var(--line);
      border-radius:12px;
      padding:16px;
      text-align:center;
      font-size:14px;
    }

    .trust-icon{
      display:block;
      font-size:25px;
      margin-bottom:7px;
    }

    .terms{
      font-size:13px;
      color:#666;
      background:#fafafa;
      border-top:1px solid var(--line);
      padding:18px 24px;
    }

    .footer{
      background:#151515;
      color:#d7d7d7;
      padding:34px 18px;
    }

    .footer-inner{
      width:min(900px,100%);
      margin:auto;
      text-align:center;
    }

    .footer-brand{
      color:#fff;
      font-size:22px;
      font-weight:900;
      margin-bottom:10px;
    }

    .footer-links{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:12px 20px;
      margin:16px 0;
    }

    .footer-links a{
      color:#fff;
      font-size:13px;
    }

    .copyright{
      margin:0;
      font-size:12px;
      color:#999;
    }



    .modal-backdrop{
      position:fixed;inset:0;background:rgba(0,0,0,.66);display:none;align-items:center;justify-content:center;
      padding:20px;z-index:1000;
    }
    .modal-backdrop.active{display:flex}
    .offer-modal{
      width:min(500px,100%);max-height:92vh;overflow:auto;background:#fff;border-radius:18px;
      box-shadow:0 24px 70px rgba(0,0,0,.35);position:relative;
    }
    .modal-close{
      position:absolute;right:14px;top:12px;width:38px;height:38px;border:0;border-radius:50%;
      background:#f1f1f1;font-size:24px;cursor:pointer;z-index:2;
    }
    .modal-content{padding:34px;text-align:center}
    .modal-kicker{color:var(--brand-red);font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.8px}
    .modal-content h2{font-size:18px;line-height:1.15;margin:4px 0 18px}
    .modal-content p{color:#444;font-size:17px;margin:14px 0}
    .flow-page{display:none;width:min(900px,calc(100% - 24px));margin:30px auto 50px}
    .flow-page.active{display:block}
    .flow-card{background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow);overflow:hidden}
    .flow-header{padding:12px 30px;background:linear-gradient(135deg,#fff,#fff2f3);border-bottom:1px solid var(--line)}
    .flow-header h2 {
    font-size: 34px;
    line-height: 1.1;
    margin: 5px 0 0px;
}
.flow-body {
    padding: 12px 30px;
}    .back-link{display:inline-block;margin-bottom:18px;border:0;background:none;color:var(--brand-red);font-weight:800;cursor:pointer;padding:0}
    .notice-box{background:#fff4f4;border:1px solid #ffd0d3;border-radius:12px;padding:16px;margin:18px 0}
    .notice-box strong{display:block;color:var(--brand-red-dark);margin-bottom:5px}
    .question{margin:22px 0}
    .question h3{font-size:18px;margin:0 0 12px}
    .answers{display:grid;gap:10px}
    .answer-option{display:flex;align-items:center;gap:10px;border:1px solid #d8d8d8;border-radius:10px;padding:13px 14px;cursor:pointer;background:#fff}
    .answer-option:hover{border-color:var(--brand-red)}
    .answer-option input{accent-color:var(--brand-red)}
    .form-error{display:none;color:#b0000b;background:#fff0f1;border:1px solid #ffc9cd;border-radius:9px;padding:10px 12px;font-size:14px;margin-top:12px}
    .question-step{display:none}
    .question-step.active{display:block;animation:fadeIn .28s ease}
    .question-count{font-size:13px;color:var(--muted);font-weight:800;margin-bottom:10px}
    .answer-option.selected{border-color:var(--brand-red);background:#fff3f4;box-shadow:0 0 0 2px rgba(227,6,19,.08)}
    .loading-page{display:none;width:min(900px,calc(100% - 24px));margin:30px auto 50px}
    .loading-page.active{display:block}
    .loading-card{background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow);padding:42px 30px;text-align:center}
    .loading-spinner{width:58px;height:58px;border:6px solid #f1c8cb;border-top-color:var(--brand-red);border-radius:50%;margin:0 auto 22px;animation:spin .9s linear infinite}
    .progress-track{height:16px;background:#eee;border-radius:999px;overflow:hidden;margin:22px auto 10px;max-width:620px}
    .progress-bar{height:100%;width:0;background:linear-gradient(90deg,var(--brand-red),var(--brand-red-dark));transition:width .12s linear}
    .progress-value{font-size:22px;font-weight:900;color:var(--brand-red)}

    /* Persistent Facebook-style comments */
    .reviews-section{
      width:min(900px,calc(100% - 24px));
      margin:22px auto 26px;
      position:relative;
      z-index:5;
    }
    .reviews-card{
      background:#f2f2f2;
      border:0;
      border-radius:0;
      box-shadow:none;
      padding:0 0 10px;
    }
    .reviews-card h2{
      margin:0 0 12px;
      text-align:center;
      font-size:23px;
      line-height:1.2;
      font-weight:500;
      color:#222;
    }
    .reviews-note{
      margin:0 16px 13px;
      text-align:center;
      color:#777;
      font-size:12px;
    }
    .review-list{
      display:grid;
      gap:20px;
    }
    .review{
      display:grid;
      grid-template-columns:108px minmax(0,1fr);
      gap:16px;
      padding:18px 20px 16px;
      background:#fff;
      border:0;
      border-radius:13px;
      box-shadow:none;
      position:relative;
    }
    .review img{
      width:80px;
      height:80px;
      margin:0 auto;
      border-radius:50%;
      object-fit:cover;
      flex:0 0 auto;
      border:0;
      box-shadow:none;
    }
    .review-content{
      min-width:0;
    }
    .comment-bubble{
      background:#f0f0f2;
      border-radius:16px;
      padding:10px 12px 12px;
      min-height:78px;
      position:relative;
    }
    .review-name{
      color:#1727b8;
      font-size:14px;
      font-weight:500;
      margin:0 0 8px;
    }
    .review-text{
      margin:0;
      color:#050505;
      font-size:14px;
      line-height:1.45;
    }
    .review-actions{
      margin:8px 8px 0;
      color:#1769c2;
      font-size:13px;
      white-space:nowrap;
    }
    .review-actions span{
      cursor:default;
    }
    img.sfsf {
    margin-top: -6px;
}


    .reaction-pill{
      position:absolute;
      right:10px;
      bottom:-13px;
      display:flex;
      align-items:center;
      gap:2px;
      min-height:26px;
      padding:2px 7px 2px 4px;
      border-radius:999px;
      background:#fff;
      box-shadow:0 1px 6px rgba(0,0,0,.22);
      color:#333;
      font-size:13px;
    }
    .reaction-icon{
      width:20px;
      height:20px;
      display:grid;
      place-items:center;
      border-radius:50%;
      color:#fff;
      font-size:12px;
      line-height:1;
    }
    .reaction-like{background:#1687db}
    .reaction-love{background:#f55368}
    @media (max-width:680px){
      .reviews-section{width:100%;margin:14px auto 20px}
      .reviews-card h2{font-size:20px}
      .review{
        grid-template-columns:70px minmax(0,1fr);
        gap:10px;
        padding:14px 10px 15px;
        border-radius:0;
      }
      .review img{width:58px;height:58px}
      .comment-bubble{padding:9px 10px 11px}
      .review-name,.review-text{font-size:13px}
      .review-actions{font-size:12px}
    }

    @keyframes spin{to{transform:rotate(360deg)}}
    @keyframes fadeIn{from{opacity:0;transform:translateY(5px)}to{opacity:1;transform:none}}
    .product-layout{display:grid;grid-template-columns:220px 1fr;gap:24px;align-items:start}
    .product-image{width:100%;aspect-ratio:1/1;background:linear-gradient(145deg,#f7f7f7,#e8e8e8);border:1px solid var(--line);border-radius:14px;display:grid;place-items:center;overflow:hidden}
    .product-image img{width:100%;height:100%;object-fit:cover}
    .product-placeholder{font-size:58px}
    .product-title{font-size:27px;font-weight:900;line-height:1.15;margin:0 0 8px}
    .product-sub{color:#666;margin:0 0 16px}
    .price-row{display:flex;align-items:end;gap:10px;margin:12px 0}
    .offer-price{font-size:34px;font-weight:900;color:var(--brand-red)}
    .old-price{text-decoration:line-through;color:#888}
    .summary-table{width:100%;border-collapse:collapse;margin:18px 0}
    .summary-table td{padding:10px 0;border-bottom:1px solid var(--line)}
    .summary-table td:last-child{text-align:right;font-weight:800}
    .delivery-badge{display:inline-block;background:#eaf8ef;color:#176a36;border:1px solid #bfe6cc;padding:7px 10px;border-radius:999px;font-size:13px;font-weight:800}
    .fine-print{font-size:12px;color:#777;margin-top:14px}
    @media(max-width:620px){.modal-content{padding:28px 20px}.product-layout{grid-template-columns:1fr}.product-image{max-width:280px;margin:auto}.modal-content h2,.flow-header h2{font-size:27px}.flow-header,.flow-body{padding:22px 18px}}

    @media (max-width:680px){
      .header-inner{min-height:64px}
      .header-link{display:none}
      .brand-name{font-size:21px}
      .hero{padding:28px 18px 23px}
      .section{padding:22px 18px}
      .steps,.trust-grid{grid-template-columns:1fr}
      .engagement{font-size:12px}
    }
  
    /* Premium final product details */
    .product-page{
      width:min(1120px,calc(100% - 24px));
      margin:28px auto 34px;
    }
    .product-shell{
      background:#fff;
      border:1px solid #e8e8ea;
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 24px 70px rgba(18,18,22,.12);
    }
    .product-topbar{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      padding:16px 24px;
      background:linear-gradient(90deg,#171717,#2a2a2a);
      color:#fff;
    }
    .product-topbar strong{
      font-size:14px;
      letter-spacing:.4px;
    }
    .product-topbar span{
      font-size:13px;
      color:#d5d5d5;
    }
    .premium-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff3d8;
      color:#8a5a00;
      border:1px solid #f2d184;
      font-size:12px;
      font-weight:900;
      letter-spacing:.35px;
      text-transform:uppercase;
    }
    .product-grid{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
      gap:0;
    }
    .product-visual{
      padding:36px;
      background:
        radial-gradient(circle at 30% 18%,rgba(227,6,19,.08),transparent 34%),
        linear-gradient(180deg,#fbfbfc,#f3f4f6);
      border-right:1px solid #ececef;
      display:flex;
      flex-direction:column;
      justify-content:center;
      min-height:560px;
    }
    .product-image-frame{
      background:#fff;
      border:1px solid #ececef;
      border-radius:22px;
      padding:28px;
      min-height:390px;
      display:grid;
      place-items:center;
      box-shadow:0 18px 48px rgba(0,0,0,.08);
    }
    .product-image-frame img{
      width:100%;
      max-width:460px;
      max-height:350px;
      object-fit:contain;
      display:block;
    }
    .product-mini-features{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:18px;
    }
    .product-mini-feature{
      background:#fff;
      border:1px solid #e8e8ea;
      border-radius:14px;
      padding:13px;
      text-align:center;
      font-size:12px;
      color:#555;
    }
    .product-mini-feature strong{
      display:block;
      color:#171717;
      margin-bottom:3px;
      font-size:13px;
    }
    .product-info-panel{
      padding:36px 34px 32px;
    }
    .product-kicker{
      color:var(--brand-red);
      font-size:12px;
      font-weight:900;
      letter-spacing:1.1px;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .product-title {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -1.2px;
}


    .product-subtitle{
      margin:12px 0 22px;
      color:#68686d;
      font-size:15px;
    }
    .rating-row{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:22px;
      color:#5c5c61;
      font-size:13px;
    }
    .stars{
      color:#f0a400;
      letter-spacing:2px;
      font-size:17px;
    }
    .price-card{
      border:1px solid #ececef;
      background:#fafafb;
      border-radius:18px;
      padding:20px;
      margin-bottom:22px;
    }
    .price-line{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:18px;
    }
    .offer-price{
      font-size:42px;
      line-height:1;
      font-weight:900;
      color:var(--brand-red);
      letter-spacing:-1px;
    }
    .old-price{
      color:#888;
      text-decoration:line-through;
      font-size:16px;
      margin-top:7px;
    }
    .saving-pill{
      background:#e9f8ee;
      color:#13783a;
      border:1px solid #bfe8cc;
      border-radius:999px;
      padding:8px 11px;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .detail-list{
      display:grid;
      gap:0;
      border:1px solid #ececef;
      border-radius:18px;
      overflow:hidden;
      margin-bottom:22px;
    }
    .detail-row{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      padding:15px 17px;
      border-bottom:1px solid #ececef;
      background:#fff;
      font-size:14px;
    }
    .detail-row:last-child{border-bottom:0}
    .detail-row span:first-child{color:#737378}
    .detail-row strong{text-align:right}
    .secure-note{
      display:flex;
      align-items:flex-start;
      gap:11px;
      background:#f6f8fb;
      border:1px solid #e2e8f0;
      border-radius:15px;
      padding:14px 15px;
      margin-bottom:20px;
      color:#555d68;
      font-size:13px;
    }
    .secure-note b{color:#20242b}
    .premium-checkout{
      width:100%;
      min-height:58px;
      border:0;
      border-radius:14px;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-red-dark));
      color:#fff;
      font-weight:900;
      font-size:16px;
      cursor:pointer;
      box-shadow:0 14px 28px rgba(227,6,19,.24);
      transition:.2s ease;
    }
    .premium-checkout:hover{
      transform:translateY(-1px);
      box-shadow:0 18px 34px rgba(227,6,19,.29);
    }
    .fine-print{
      text-align:center;
      margin:11px 0 0;
      color:#8a8a90;
      font-size:11px;
    }
    @media(max-width:840px){
      .product-grid{grid-template-columns:1fr}
      .product-visual{border-right:0;border-bottom:1px solid #ececef;min-height:auto;padding:24px}
      .product-info-panel{padding:28px 22px}
      .product-mini-features{grid-template-columns:1fr}
      .product-topbar{align-items:flex-start;flex-direction:column}
    }

  
    /* XYZ social-style header */
    .social-header{
      height:62px;
      width:100%;
      position:sticky;
      top:0;
      z-index:100;
      display:grid;
      grid-template-columns:minmax(310px,1fr) minmax(430px,650px) minmax(310px,1fr);
      align-items:center;
      gap:16px;
      padding:0 16px;
      background:#fff;
      border-bottom:1px solid #d9dce1;
      box-shadow:0 1px 3px rgba(0,0,0,.08);
    }

    .social-header-left{
      display:flex;
      align-items:center;
      gap:8px;
      min-width:0;
    }

    .xyz-social-logo{
      width:42px;
      height:42px;
      flex:0 0 42px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:#1877f2;
      color:#fff;
      text-decoration:none;
      font-family:Arial,Helvetica,sans-serif;
      font-size:25px;
      line-height:1;
      font-weight:900;
      letter-spacing:-1px;
      box-shadow:inset 0 -2px 0 rgba(0,0,0,.08);
    }

    .social-search{
      width:240px;
      height:40px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 13px;
      border-radius:22px;
      background:#f0f2f5;
      color:#65676b;
    }

    .social-search svg{
      width:18px;
      height:18px;
      fill:none;
      stroke:currentColor;
      stroke-width:2;
      stroke-linecap:round;
    }

    .social-search input{
      width:100%;
      min-width:0;
      border:0;
      outline:0;
      background:transparent;
      color:#1c1e21;
      font-size:14px;
    }

    .social-search input::placeholder{color:#7a7d82}

    .social-main-nav{
      height:100%;
      display:grid;
      grid-template-columns:repeat(5,1fr);
      align-items:stretch;
      gap:8px;
    }

    .social-nav-item{
      position:relative;
      display:grid;
      place-items:center;
      color:#65676b;
      text-decoration:none;
      border-radius:8px;
      margin:4px 0;
      transition:background .15s ease;
    }

    .social-nav-item:hover{background:#f2f2f2}

    .social-nav-item.active::after{
      content:"";
      position:absolute;
      left:7px;
      right:7px;
      bottom:-4px;
      height:3px;
      border-radius:3px 3px 0 0;
      background:#1877f2;
    }

    .social-nav-item svg{
      width:27px;
      height:27px;
      fill:none;
      stroke:currentColor;
      stroke-width:1.7;
      stroke-linecap:round;
      stroke-linejoin:round;
    }

    .social-nav-item.active{color:#1877f2}

    .social-header-actions{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:8px;
    }

    .profile-circle,
    .header-circle-button{
      width:40px;
      height:40px;
      border:0;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#e4e6eb;
      color:#050505;
      cursor:pointer;
      padding:0;
    }

    .profile-circle{
      color:#fff;
      background:linear-gradient(#d9dde3,#bfc5cd);
    }

    .profile-circle svg,
    .header-circle-button svg{
      width:23px;
      height:23px;
      fill:none;
      stroke:currentColor;
      stroke-width:1.9;
      stroke-linecap:round;
      stroke-linejoin:round;
    }

    .profile-circle svg{
      width:28px;
      height:28px;
      fill:rgba(255,255,255,.88);
      stroke:rgba(255,255,255,.88);
    }

    .header-circle-button:hover{background:#d8dadf}

    .dot-grid{
      width:20px;
      height:20px;
      display:grid;
      grid-template-columns:repeat(3,4px);
      grid-auto-rows:4px;
      gap:3px;
      align-content:center;
      justify-content:center;
    }

    .dot-grid i{
      width:4px;
      height:4px;
      border-radius:50%;
      background:#050505;
      display:block;
    }

    @media(max-width:1050px){
      .social-header{
        grid-template-columns:minmax(180px,1fr) minmax(380px,560px) auto;
      }
      .social-search{width:40px;padding:0;justify-content:center}
      .social-search input{display:none}
    }

    @media(max-width:760px){
      .social-header{
        height:58px;
        grid-template-columns:1fr auto;
        padding:0 10px;
      }
      .social-main-nav{display:none}
      .social-header-actions .profile-circle,
      .social-header-actions .header-circle-button{
        width:36px;
        height:36px;
      }
      .social-header-actions button:nth-child(3),
      .social-header-actions button:nth-child(4){
        display:none;
      }
    }

  img.zsww {
    width: 49px;
    border: 1px solid #00000042;
    border-radius: 35px;
}
img.mkkhj {
    width: 185px;
}
