﻿* { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Segoe UI', Arial, sans-serif; background: #0a0a1a; color: #fff; overflow-x: hidden; }

  /* FLOATING ORDER BUTTON */
  .float-btn {
    position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
    z-index: 9999; width: 92%; max-width: 420px;
    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
    color: #fff; font-size: 17px; font-weight: 800;
    border: none; border-radius: 50px; padding: 16px 24px;
    box-shadow: 0 6px 30px rgba(168,85,247,0.6);
    cursor: pointer; text-align: center;
    animation: pulsePurple 2s infinite;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  @keyframes pulsePurple {
    0%,100% { box-shadow: 0 6px 30px rgba(168,85,247,0.6); }
    50% { box-shadow: 0 6px 50px rgba(168,85,247,0.95); transform: translateX(-50%) scale(1.02); }
  }

  /* FLOATING MODAL */
  .modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8);
    z-index: 10000; align-items: flex-end; justify-content: center;
  }
  .modal-overlay.active { display: flex; }
  .modal-box {
    background: linear-gradient(160deg, #0f0a2e, #1a0a3e, #0d1a3a);
    border-radius: 28px 28px 0 0; padding: 30px 20px 40px;
    width: 100%; max-width: 480px;
    border-top: 3px solid #a855f7;
    animation: slideUp 0.35s ease;
    position: relative;
  }
  @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .modal-close {
    position: absolute; top: 14px; right: 18px;
    background: rgba(255,255,255,0.1); border: none; color: #fff;
    font-size: 20px; width: 36px; height: 36px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
  }
  .modal-title { font-size: 19px; font-weight: 800; color: #c084fc; text-align: center; margin-bottom: 4px; }
  .modal-subtitle { font-size: 13px; color: #a78bfa; text-align: center; margin-bottom: 16px; }

  /* TOP BAR */
  .top-bar {
    background: linear-gradient(90deg, #0f0a2e, #1a0a3e);
    padding: 10px 16px; text-align: center;
    font-size: 13px; color: #a78bfa; border-bottom: 1px solid rgba(168,85,247,0.25);
  }

  /* BADGES ABOVE HERO */
  .hero-badges {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap;
    padding: 12px 12px 10px;
    background: linear-gradient(135deg, #07051a, #0f0a2e);
    border-bottom: 1px solid rgba(168,85,247,0.2);
  }

  /* COUNTER BADGE */
  .counter-wrap {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(124,58,237,0.15));
    border: 1.5px solid #a855f7; border-radius: 50px;
    padding: 9px 18px; white-space: nowrap;
    box-shadow: 0 4px 20px rgba(168,85,247,0.3);
    animation: floatAnim 3s ease-in-out infinite;
  }
  @keyframes floatAnim {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  .counter-fire { font-size: 18px; }
  .counter-text { font-size: 12px; font-weight: 700; color: #c084fc; }
  .counter-num { font-size: 20px; font-weight: 900; color: #fff; }

  /* IN STOCK */
  .instock-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.08));
    border: 1.5px solid #22c55e; border-radius: 50px;
    padding: 9px 18px; white-space: nowrap;
    font-size: 13px; font-weight: 700; color: #22c55e;
    box-shadow: 0 4px 16px rgba(34,197,94,0.2);
  }

  /* HERO */
  .hero { width: 100%; position: relative; }
  .hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
  }

  /* TRUST STRIP */
  .trust-strip {
    background: linear-gradient(135deg, #0f0a2e, #1a0a3e);
    padding: 14px 16px; border-bottom: 1px solid rgba(168,85,247,0.15);
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px; color: #d4b8ff;
  }
  .trust-item:last-child { border-bottom: none; }
  .trust-icon { font-size: 20px; min-width: 28px; text-align: center; }

  /* URGENCY BOX */
  .urgency-box {
    background: linear-gradient(135deg, #1a0030, #2d0050);
    border: 2px solid #a855f7; border-radius: 18px;
    margin: 16px; padding: 18px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(168,85,247,0.3);
  }
  .urgency-title { font-size: 15px; font-weight: 800; color: #c084fc; margin-bottom: 12px; }
  .timer-wrap { display: flex; justify-content: center; gap: 10px; margin-bottom: 12px; }
  .timer-block {
    background: rgba(0,0,0,0.5); border-radius: 12px;
    padding: 10px 14px; min-width: 62px; text-align: center;
    border: 1px solid rgba(168,85,247,0.3);
  }
  .timer-num { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
  .timer-label { font-size: 10px; color: #a78bfa; margin-top: 3px; }
  .timer-sep { font-size: 28px; font-weight: 900; color: #a855f7; align-self: center; }
  .hot-orders {
    background: rgba(168,85,247,0.15); border-radius: 12px; padding: 10px 14px;
    font-size: 14px; color: #e9d5ff; font-weight: 700;
    border: 1px solid rgba(168,85,247,0.3);
  }

  /* ORDER FORM */
  .order-section {
    background: linear-gradient(160deg, #0f0a2e, #1a0a3e);
    margin: 16px; border-radius: 22px; padding: 24px 18px;
    border: 1.5px solid rgba(168,85,247,0.4);
    box-shadow: 0 8px 40px rgba(168,85,247,0.2);
  }
  .manager-note {
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(124,58,237,0.08));
    border: 1px solid rgba(168,85,247,0.4); border-radius: 14px;
    padding: 14px 16px; margin-bottom: 18px; text-align: center;
  }
  .manager-note .icon { font-size: 26px; margin-bottom: 6px; }
  .manager-note p { font-size: 13px; color: #c084fc; font-weight: 600; line-height: 1.6; }
  .price-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px; }
  .price-old { font-size: 18px; color: #6b7280; text-decoration: line-through; }
  .price-new { font-size: 38px; font-weight: 900; color: #c084fc; text-shadow: 0 0 20px rgba(192,132,252,0.5); }
  .price-badge {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff; font-size: 13px; font-weight: 800;
    padding: 5px 12px; border-radius: 20px;
    box-shadow: 0 4px 12px rgba(168,85,247,0.4);
  }
  .form-title { font-size: 18px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 16px; }
  .form-group { margin-bottom: 12px; }
  .form-group input {
    width: 100%; padding: 14px 16px; border-radius: 14px;
    border: 1.5px solid rgba(168,85,247,0.25);
    background: rgba(255,255,255,0.06); color: #fff;
    font-size: 15px; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-group input:focus { border-color: #a855f7; box-shadow: 0 0 0 3px rgba(168,85,247,0.15); }
  .form-group input::placeholder { color: rgba(255,255,255,0.35); }
  .submit-btn {
    width: 100%; padding: 17px; border: none; border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
    color: #fff; font-size: 18px; font-weight: 900;
    cursor: pointer; margin-top: 6px;
    box-shadow: 0 6px 28px rgba(168,85,247,0.5);
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.5px;
  }
  .submit-btn:active { transform: scale(0.97); }
  .form-note { font-size: 11px; color: #7c6fa0; text-align: center; margin-top: 10px; }

  /* PHOTO + DESCRIPTION */
  .photo-section { margin-bottom: 0; }
  .photo-section img { width: 100%; display: block; }
  .photo-desc {
    background: linear-gradient(160deg, #0f0a2e, #0a0a1a);
    padding: 22px 18px; border-bottom: 1px solid rgba(168,85,247,0.1);
  }
  .photo-desc h3 { font-size: 18px; font-weight: 800; color: #c084fc; margin-bottom: 10px; }
  .photo-desc p { font-size: 14px; color: #c4b5fd; line-height: 1.75; }
  .feature-list { list-style: none; margin-top: 14px; }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #ddd6fe; padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-list li span:first-child { font-size: 18px; min-width: 26px; }

  /* SPECS */
  .specs-box {
    background: rgba(168,85,247,0.06); border-radius: 16px;
    padding: 14px; margin-top: 16px;
    border: 1px solid rgba(168,85,247,0.15);
  }
  .spec-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
  }
  .spec-row:last-child { border-bottom: none; }
  .spec-key { color: #9ca3af; }
  .spec-val { color: #e9d5ff; font-weight: 600; text-align: right; }

  /* FUNCTIONS GRID */
  .functions-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-top: 16px;
  }
  .func-card {
    background: rgba(168,85,247,0.1); border-radius: 14px;
    padding: 14px 12px; text-align: center;
    border: 1px solid rgba(168,85,247,0.25);
  }
  .func-icon { font-size: 28px; margin-bottom: 6px; }
  .func-name { font-size: 13px; font-weight: 700; color: #e9d5ff; }

  /* REVIEWS */
  .reviews-section { padding: 22px 16px; }
  .section-title {
    font-size: 20px; font-weight: 800; color: #c084fc;
    text-align: center; margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .review-card {
    background: linear-gradient(160deg, #0f0a2e, #1a0a3e);
    border-radius: 20px; padding: 18px;
    margin-bottom: 14px; border: 1px solid rgba(168,85,247,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(168,85,247,0.25); }
  .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
  .review-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; color: #fff; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(168,85,247,0.4);
  }
  .review-meta { flex: 1; }
  .review-name { font-size: 15px; font-weight: 700; color: #fff; }
  .review-date { font-size: 12px; color: #7c6fa0; margin-top: 2px; }
  .review-stars { color: #fbbf24; font-size: 16px; margin-bottom: 8px; }
  .review-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.35);
    border-radius: 20px; padding: 3px 10px;
    font-size: 11px; color: #22c55e; font-weight: 600; margin-bottom: 10px;
  }
  .review-text { font-size: 14px; color: #c4b5fd; line-height: 1.65; }
  .review-helpful {
    display: flex; align-items: center; gap: 6px;
    margin-top: 12px; padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px; color: #6b5fa0; cursor: pointer;
    transition: color 0.2s;
  }
  .review-helpful:hover { color: #c084fc; }

  /* FOOTER */
  .footer {
    background: #07051a; padding: 24px 16px 110px;
    text-align: center; border-top: 1px solid rgba(168,85,247,0.15);
  }
  .footer p { font-size: 12px; color: #4a3a6a; line-height: 1.9; }

  /* MOBILE */
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  img { max-width: 100%; height: auto; -webkit-user-drag: none; }
  input, button { -webkit-appearance: none; appearance: none; touch-action: manipulation; }
  button { -webkit-tap-highlight-color: transparent; }

  @media (max-width: 360px) {
    .hero-badges { gap: 6px; padding: 8px 8px 6px; }
    .counter-wrap { padding: 6px 10px; gap: 5px; }
    .counter-text { font-size: 10px; }
    .counter-num { font-size: 17px; }
    .instock-badge { padding: 6px 10px; font-size: 11px; }
    .timer-block { min-width: 50px; padding: 8px 10px; }
    .timer-num { font-size: 24px; }
    .price-new { font-size: 32px; }
    .submit-btn { font-size: 16px; padding: 14px; }
    .float-btn { font-size: 15px; padding: 14px 18px; }
    .photo-desc { padding: 16px 14px; }
    .photo-desc h3 { font-size: 16px; }
    .order-section { margin: 10px; padding: 18px 14px; }
    .urgency-box { margin: 10px; padding: 14px; }
    .functions-grid { gap: 8px; }
    .func-card { padding: 10px 8px; }
  }
  @media (min-width: 361px) and (max-width: 480px) {
    .timer-num { font-size: 26px; }
    .price-new { font-size: 36px; }
  }
  @media (min-width: 481px) and (max-width: 600px) {
    .counter-wrap { padding: 10px 20px; }
    .counter-text { font-size: 14px; }
    .counter-num { font-size: 22px; }
    .instock-badge { font-size: 15px; padding: 10px 20px; }
    .order-section { margin: 18px; padding: 26px 22px; }
    .submit-btn { font-size: 19px; }
    .float-btn { font-size: 18px; }
  }
  @media (min-width: 601px) {
    body { max-width: 600px; margin: 0 auto; }
    .float-btn { max-width: 560px; }
    .hero img { width: 100%; height: auto; object-fit: contain; }
  }