﻿:root{--bg:#111111;--text:#fafafa;--muted:#bdbdbd;--line:#2c2c2c;--card:#171717;--btn:#f43f5e;--btnText:#fff}
*{box-sizing:border-box}body{margin:0;font-family:Arial Black,Arial,sans-serif;background:repeating-linear-gradient(45deg,#101010,#101010 10px,#131313 10px,#131313 20px);color:var(--text)}
.container{width:min(1140px,93%);margin:0 auto}nav{display:flex;justify-content:space-between;align-items:center;padding:16px 0}.logo{text-transform:uppercase;letter-spacing:1px}.nav-links{display:flex;gap:10px;align-items:center}nav a{color:var(--text);text-decoration:none}.cart-open{border:0;background:var(--btn);color:#fff;border-radius:999px;padding:8px 14px}

.products{columns:3 220px;column-gap:14px}.card{display:inline-block;width:100%;margin:0 0 14px;background:var(--card);border:1px solid var(--line);border-radius:10px;overflow:hidden}.card img{width:100%;height:auto;display:block}.card-body{padding:12px}.meta{color:var(--muted);font-size:13px;min-height:34px}.buy-btn{width:100%;border:0;background:var(--btn);color:#fff;border-radius:7px;padding:10px;font-weight:700}
footer{margin-top:20px;padding:16px 0;border-top:1px solid var(--line);color:var(--muted)}
.modal{position:fixed;inset:0;background:rgba(0,0,0,.62);display:none;align-items:center;justify-content:center;padding:12px;z-index:50}.modal.open{display:flex}.modal-card{width:min(760px,100%);max-height:92vh;overflow:auto;background:#171717;border:1px solid var(--line);border-radius:10px;padding:16px}.close-modal{border:1px solid var(--line);background:#171717;color:#fff;border-radius:6px;padding:6px 10px}
.modal-head{display:flex;justify-content:space-between;align-items:center}#cart-items{padding-left:18px}.cart-row{display:flex;justify-content:space-between;gap:8px}.qty-controls{display:flex;gap:6px}.qty-controls button{border:1px solid var(--line);background:transparent;color:#fff;border-radius:4px;padding:3px 8px}.order-form{display:grid;grid-template-columns:1fr 1fr;gap:10px}.order-form .full{grid-column:1/-1}.order-form input,.order-form textarea{width:100%;padding:10px;border:1px solid var(--line);border-radius:6px;background:#121212;color:#fff}.order-submit{border:0;background:var(--btn);color:#fff;border-radius:6px;padding:10px 14px}
@media (max-width:700px){nav{flex-direction:column;align-items:flex-start}.products{columns:1}.order-form{grid-template-columns:1fr}}

.hero-punch{padding:20px 0 18px}.hero-punch-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:16px;align-items:center}.hero-punch h1{margin:0;font-size:clamp(30px,6vw,60px);line-height:1}.hero-punch p{margin:0;color:var(--muted)}.hero-punch-tag{display:inline-block;margin-top:12px;padding:7px 10px;border:1px solid #4b5563;border-radius:999px;color:#fda4af;font-size:12px;letter-spacing:.8px}@media (max-width:840px){.hero-punch-grid{grid-template-columns:1fr}}

/* about-site3-start */
.about3-banner{padding:24px 0 14px;animation:a3Pop .7s ease both}
.about3-banner h1{margin:0 0 10px;font-size:clamp(32px,6vw,58px);line-height:1;text-transform:uppercase}
.about3-banner p{margin:0;color:var(--muted);max-width:60ch}
.about3-tag{display:inline-block;margin-top:12px;border:1px solid #4b5563;border-radius:999px;padding:6px 10px;color:#fda4af;animation:a3Flick 1.1s ease .4s both}
.about3-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;padding-bottom:10px}
.about3-card{border:1px solid var(--line);border-radius:10px;background:#171717;padding:14px;transform:skewX(-1.5deg);animation:a3Pop .65s ease both}
.about3-card:nth-child(2){animation-delay:.1s}.about3-card:nth-child(3){animation-delay:.2s}.about3-card:nth-child(4){animation-delay:.3s}
.about3-card h3{margin:0 0 8px}
@keyframes a3Pop{from{opacity:0;transform:translateY(16px) scale(.97)}to{opacity:1;transform:none}}
@keyframes a3Flick{0%{opacity:0}60%{opacity:1}100%{opacity:1}}
@media (max-width:860px){.about3-list{grid-template-columns:1fr}}
/* about-site3-end */

/* main-anim-start */
section[class^="hero-"] {
  animation: mainHeroIn .82s cubic-bezier(.2,.7,.2,1) both;
}

.products .card {
  opacity: 0;
  transform: translateY(22px) scale(.99);
  animation: mainCardIn .68s ease forwards;
}

.products .card:nth-child(1) { animation-delay: .08s; }
.products .card:nth-child(2) { animation-delay: .16s; }
.products .card:nth-child(3) { animation-delay: .24s; }
.products .card:nth-child(4) { animation-delay: .32s; }
.products .card:nth-child(5) { animation-delay: .40s; }

.products .card {
  transition: transform .24s ease, box-shadow .24s ease;
}

.products .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}

footer {
  animation: mainFooterIn .75s ease .35s both;
}

@keyframes mainHeroIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes mainCardIn {
  from { opacity: 0; transform: translateY(22px) scale(.99); }
  to { opacity: 1; transform: none; }
}

@keyframes mainFooterIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
  .products .card:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  section[class^="hero-"],
  .products .card,
  footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* main-anim-end */

/* ux-patch-start */
html { scroll-behavior: smooth; }

body { line-height: 1.45; }

.nav-links a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

button,
.cart-open,
nav a,
.about-link,
.order-submit,
.buy-btn,
.close-modal,
.secondary-btn {
  min-height: 42px;
}

:focus-visible {
  outline: 2px solid var(--btn);
  outline-offset: 2px;
}

.modal-card {
  scrollbar-gutter: stable;
}

#cart-items {
  max-height: 220px;
  overflow: auto;
  padding-right: 4px;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
}

.form-status {
  margin: 8px 0 0;
  font-size: 14px;
}

.form-status.info { color: var(--muted); }
.form-status.ok { color: #16a34a; }
.form-status.error { color: #dc2626; }

.order-submit[disabled] {
  opacity: .55;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal-card {
    width: 100%;
    max-height: 95vh;
    border-radius: 14px 14px 0 0;
  }

  .cart-actions button,
  .order-submit {
    width: 100%;
  }
}
/* ux-patch-end */

