  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red: #cc0000;
    --red-dark: #990000;
    --yellow: #ffd700;
    --yellow-dark: #e6b800;
    --black: #111111;
    --white: #ffffff;
    --grey: #f0f0f0;
    --text: #222222;
    --green: #009900;
    --orange: #ff6600;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Open Sans', sans-serif;
    background: #f5f0e8;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
  }

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

  /* ===== DETECTIVE MODE ===== */
  .detective-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.25);
    z-index: 50;
    pointer-events: none;
  }
  .detective-overlay.active { display: block; }

  body.detective-active .flag {
    cursor: pointer;
    position: relative;
  }
  body.detective-active .flag:hover {
    outline: 2.5px dashed #ff3300;
    outline-offset: 3px;
    background: rgba(255,0,0,.07) !important;
    border-radius: 4px;
  }
  body.detective-active .flag.found {
    outline: 3px solid #ff0000 !important;
    outline-offset: 3px;
    background: rgba(255,0,0,.13) !important;
    border-radius: 4px;
    cursor: default;
  }

  .flag-tooltip {
    display: none;
    position: fixed;
    background: #1a0000;
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    max-width: 320px;
    z-index: 9999;
    box-shadow: 0 6px 24px rgba(0,0,0,.5);
    border: 2px solid #ff3300;
    pointer-events: none;
  }
  .flag-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 14px;
    height: 14px;
    background: #1a0000;
    border-right: 2px solid #ff3300;
    border-bottom: 2px solid #ff3300;
    transform: rotate(45deg);
  }

  /* detective button */
  .detective-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: #1a1a2e;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
    transition: transform .18s, background .18s;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .detective-btn:hover { background: #2d2d52; transform: translateY(-2px); }
  .detective-btn.active-mode { background: #cc0000; }

  /* detective counter */
  .detective-hud {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 901;
    background: #1a1a2e;
    color: white;
    border-radius: 12px;
    padding: 14px 16px;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,.45);
    display: none;
    font-family: 'Open Sans', sans-serif;
  }
  .detective-hud.visible { display: block; }
  .hud-title { font-size: 12px; font-weight: 700; color: #ffd700; letter-spacing: .5px; margin-bottom: 8px; }
  .hud-count { font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
  .hud-total { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 10px; }
  .hud-bar-track { height: 8px; background: rgba(255,255,255,.2); border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
  .hud-bar-fill { height: 100%; background: linear-gradient(90deg, #ffd700, #ff6600); border-radius: 4px; width: 0%; transition: width .4s ease; }
  .hud-msg { font-size: 12px; color: #ffd700; font-weight: 600; min-height: 18px; }
  .hud-list { margin-top: 10px; max-height: 200px; overflow-y: auto; }
  .hud-list-item { font-size: 11px; color: rgba(255,255,255,.75); padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,.1); line-height: 1.4; }
  .hud-list-item:last-child { border-bottom: none; }

  /* celebration */
  .celebration-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  .celebration-overlay.active { display: flex; }
  .celebration-box {
    background: white;
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    max-width: 460px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
  }
  @keyframes popIn { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
  .celebration-trophy { font-size: 64px; margin-bottom: 12px; }
  .celebration-title { font-size: 24px; font-weight: 800; color: #cc0000; margin-bottom: 8px; font-family: 'Oswald', sans-serif; }
  .celebration-sub { font-size: 15px; color: #444; margin-bottom: 20px; line-height: 1.55; }
  .celebration-close { background: #1a1a2e; color: white; border: none; border-radius: 8px; padding: 12px 28px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; }
  .confetti { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; border-radius: 20px; pointer-events: none; }
  .confetti-piece {
    position: absolute;
    width: 8px;
    height: 12px;
    top: -20px;
    animation: fall linear infinite;
  }
  @keyframes fall {
    0% { top: -20px; transform: rotate(0deg) translateX(0); opacity: 1; }
    100% { top: 110%; transform: rotate(720deg) translateX(40px); opacity: 0; }
  }

  /* ===== TOPBAR ===== */
  .topbar {
    background: var(--black);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 0;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .5px;
    animation: pulse-bg 2s infinite alternate;
  }
  @keyframes pulse-bg { from { background: #111; } to { background: #2a0000; } }

  /* ===== HEADER ===== */
  .header {
    background: var(--red);
    padding: 10px 0;
    border-bottom: 4px solid var(--yellow);
  }
  .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .logo {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 rgba(0,0,0,.3);
  }
  .logo .logo-sub { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.75); letter-spacing: 2px; display: block; font-family: 'Open Sans', sans-serif; }
  nav { display: flex; gap: 4px; flex-wrap: wrap; }
  nav a {
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    transition: background .15s;
  }
  nav a:hover { background: rgba(255,255,255,.2); }
  /* flag: no contact info in header */
  .header-contact { font-size: 12px; color: rgba(255,255,255,.6); }
  .header-contact a { color: rgba(255,255,255,.8); }

  /* ===== BANNER ===== */
  .sale-banner {
    background: linear-gradient(135deg, var(--yellow) 0%, #ff9900 50%, var(--yellow) 100%);
    padding: 14px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
    border-bottom: 3px solid var(--red);
  }
  .sale-banner span { color: var(--red); }

  /* ===== MAIN ===== */
  .main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 16px 50px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }

  /* ===== GALLERY ===== */
  .gallery { position: sticky; top: 10px; }
  .main-image {
    background: white;
    border: 3px solid var(--yellow);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .main-image img { width: 100%; height: 100%; object-fit: cover; }
  .img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .5px;
    transform: rotate(-5deg);
  }
  .img-badge2 {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--yellow);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    font-size: 10px;
  }

  /* ===== PRODUCT INFO ===== */
  .product-info {}
  .product-name {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1.15;
  }

  /* flag 15 - fake social proof */
  .social-proof {
    background: #fff3cd;
    border: 1px solid #e6b800;
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 13px;
    color: #856404;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* flag 4 - fake stock pressure */
  .stock-pressure {
    background: #ffebeb;
    border: 2px solid var(--red);
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 13.5px;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  .price-original {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
  }
  .price-main {
    font-size: 44px;
    font-weight: 800;
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    line-height: 1;
  }
  .price-badge {
    background: var(--red);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
  }

  /* flag 3 - countdown */
  .countdown-box {
    background: var(--black);
    color: var(--yellow);
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
  }
  .countdown-time { font-size: 22px; font-weight: 700; color: white; letter-spacing: 2px; }

  /* size selector */
  .option-group { margin-bottom: 14px; }
  .option-label { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
  .size-options { display: flex; gap: 6px; flex-wrap: wrap; }
  .size-btn {
    width: 44px;
    height: 40px;
    border: 2px solid #ccc;
    background: white;
    border-radius: 3px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
    font-family: 'Open Sans', sans-serif;
  }
  .size-btn:hover { border-color: var(--red); color: var(--red); }
  .size-btn.active { border-color: var(--red); background: var(--red); color: white; }

  .qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .qty-control { display: flex; align-items: center; border: 2px solid #ccc; border-radius: 3px; overflow: hidden; }
  .qty-btn { width: 36px; height: 40px; background: #eee; border: none; font-size: 18px; cursor: pointer; font-weight: 700; font-family: inherit; }
  .qty-btn:hover { background: #ddd; }
  .qty-input { width: 46px; height: 40px; text-align: center; border: none; border-left: 2px solid #ccc; border-right: 2px solid #ccc; font-size: 15px; font-weight: 600; font-family: inherit; outline: none; }

  .btn-add-cart {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 4px;
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    transition: background .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .btn-add-cart:hover { background: var(--yellow-dark); }

  /* flag 5 - payment only bank transfer */
  .payment-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 12px;
  }
  .payment-title { font-size: 12px; font-weight: 700; text-transform: uppercase; color: #666; margin-bottom: 8px; letter-spacing: .5px; }
  .payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #333;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .payment-option:last-child { border-bottom: none; }
  .payment-option .unavail { color: #ccc; text-decoration: line-through; font-size: 12px; margin-left: auto; }

  /* flag 6 - delivery buried */
  .delivery-small {
    font-size: 11px;
    color: #999;
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .delivery-small strong { color: #bbb; }

  /* fake trust badge - flag 9 */
  .fake-trust {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
    margin-bottom: 14px;
  }
  .fake-trust-icon { font-size: 18px; }

  /* product description - flag 12 (spelling errors) */
  .product-desc {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: #444;
    line-height: 1.65;
  }
  .product-desc h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--red); font-family: 'Oswald', sans-serif; text-transform: uppercase; }

  /* ===== FAKE REVIEWS ===== */
  .reviews-section {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 20px;
  }
  .reviews-title { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
  .review-card {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
  }
  .review-card:last-child { border-bottom: none; }
  .review-header { display: flex; justify-content: space-between; margin-bottom: 3px; }
  .reviewer-name { font-size: 13px; font-weight: 700; color: #333; }
  .review-date { font-size: 11.5px; color: #aaa; }
  .review-stars { color: #ffd700; font-size: 13px; margin-bottom: 3px; }
  .review-text { font-size: 12.5px; color: #555; }

  /* ===== SIDEBAR REVIEWS ALL 5 STAR / SAME DATE ===== */

  /* fake TOS - flag 10 */
  .tos-section {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 12px;
  }
  .tos-title { font-size: 13px; font-weight: 700; color: #ccc; margin-bottom: 6px; display: flex; justify-content: space-between; }
  .tos-text {
    font-size: 9.5px;
    color: #555;
    line-height: 1.5;
    max-height: 80px;
    overflow: hidden;
    position: relative;
  }
  .tos-text::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30px; background: linear-gradient(transparent, #1a1a1a); }

  /* ===== TRACK ORDER - FLAG 13 ===== */
  .track-btn {
    background: #666;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* ===== RETURNS - FLAG 7 ===== */
  .returns-link { font-size: 12px; color: #888; text-decoration: underline; cursor: pointer; margin-bottom: 14px; display: block; }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--black);
    color: rgba(255,255,255,.55);
    padding: 20px 0;
    font-size: 12px;
    text-align: center;
  }
  .footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
  .footer-edu {
    background: rgba(255,200,0,.12);
    border: 1px solid rgba(255,200,0,.25);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,.65);
    margin-bottom: 12px;
    text-align: left;
  }
  .footer-edu a { color: #ffd700; }
  /* flag 2 - no company info */
  .footer-copy { color: rgba(255,255,255,.4); font-size: 11.5px; }

  /* ===== POPUP FLAG 14 ===== */
  .popup-notification {
    position: fixed;
    bottom: 90px;
    left: 24px;
    background: white;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
    z-index: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 290px;
    transform: translateX(-360px);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    border-left: 4px solid #16a34a;
  }
  .popup-notification.show { transform: translateX(0); }
  .popup-icon { font-size: 22px; }
  .popup-sub { font-size: 11.5px; color: #888; font-weight: 400; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 700px) {
    .product-grid { grid-template-columns: 1fr; }
    .header-inner { justify-content: center; }
    .footer-inner > div[style*="grid"] { grid-template-columns: 1fr !important; }
  }

  /* ===== GARISH BANNER OVERLAYS ===== */
  .marquee-bar {
    background: var(--red);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
  }
  .marquee-inner {
    display: inline-block;
    animation: marquee 18s linear infinite;
  }
  @keyframes marquee { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

  .promo-block {
    background: linear-gradient(90deg, var(--red) 0%, #aa0000 100%);
    color: white;
    text-align: center;
    padding: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 0;
    border-bottom: 3px solid var(--yellow);
  }
