﻿/* D&F ART — минималистичный фирменный стиль */
:root{
  --bg: #0c0c0f;
  --panel: #121218;
  --card: #15151d;
  --text: #e9e9ef;
  --muted: #b7b7c7;
  --brand: #ff6a00;
  --brand-2: #ff9b4c;
  --stroke: #242436;
  --shadow: rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  background: radial-gradient(1200px 800px at 70% -10%, rgba(255,106,0,.12), transparent 60%),
              radial-gradient(900px 700px at -10% 10%, rgba(255,155,76,.12), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:var(--text); text-decoration:none}
.container{max-width:1150px; margin:0 auto; padding:0 20px}

/* === HEADER === */
.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(160%) blur(8px);
  background: rgba(12,12,15,.55);
  border-bottom:1px solid var(--stroke);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:64px}
.brandmark{width:148px; height:44px}
.brand-box{fill:#0b0b0f; stroke:#2a2a3a; stroke-width:2}
.brand-text{fill:#fff; font-weight:800; font-size:28px; letter-spacing:.08em}

.main-nav{display:flex; gap:18px; align-items:center; flex-wrap:wrap}
.main-nav a{opacity:.9}
.main-nav a:hover{opacity:1}

.btn{
  display:inline-block; background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#141318; font-weight:700; padding:12px 18px; border-radius:14px; border:none; cursor:pointer;
  box-shadow:0 10px 24px var(--shadow);
}
.btn.ghost{background:transparent; color:var(--text); border:1px solid var(--stroke)}
.btn.small{padding:8px 12px; font-size:14px}
.btn.full{width:100%}

/* === HERO === */
.hero{padding:48px 0 28px; border-bottom:1px solid var(--stroke)}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:28px; align-items:center}
.hero h1{font-size:44px; line-height:1.1; margin:.2em 0 .3em; letter-spacing:.01em}
.hero p{color:var(--muted); font-size:18px}
.cta{display:flex; gap:12px; margin:18px 0}
.bullets{list-style:none; padding:0; margin:20px 0 0; display:grid; gap:10px}
.bullets li{position:relative; padding-left:26px}
.bullets li::before{content:"•"; position:absolute; left:8px; color:var(--brand)}

/* === HERO ART & SLIDER === */
.hero-art{
  display:flex;
  justify-content:center;
  width:100%;
  max-width:380px;
  margin:0 auto;
  position:relative;
}

.slider {
  position: relative;
  width: 100%;
  height: 280px;          /* фиксированная высота */
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, #222, #111);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity .6s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* картинка заполняет весь блок */
  object-position: center; /* центрируем */
  display: block;
}

.slide p {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,.3);
  text-align: center;
  pointer-events: none;
  background: rgba(0,0,0,0.3);
  padding: 4px 8px;
  border-radius: 6px;
}


/* === CARD PREVIEW (оставляем для других блоков, если нужны) === */
.card-preview{
  position:relative; width:360px; height:300px;
  background:linear-gradient(180deg, #181824, #12121a);
  border:1px solid var(--stroke); border-radius:18px; box-shadow:0 20px 50px var(--shadow);
  overflow:hidden; padding:16px;
}
.tag{
  position:absolute; top:12px; left:12px; background:rgba(255,106,0,.16); color:#ffd4b4;
  padding:6px 10px; border-radius:999px; font-weight:700; font-size:12px; border:1px solid #8a3e12;
}
.mockup{position:absolute; inset:auto; background:#0d0d14; border:1px solid var(--stroke); border-radius:12px; padding:10px 14px; opacity:.9}
.mockup.hoodie{top:56px; right:20px}
.mockup.tee{bottom:24px; left:18px}
.mockup.cap{bottom:80px; right:42px}

/* === ABOUT === */
.about{padding:48px 0}
.about p{color:var(--muted)}

/* === CATALOG === */
.catalog{padding:28px 0 8px; border-top:1px solid var(--stroke)}
.catalog-head{display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap}
.note{color:var(--muted); font-size:14px}
.grid{
  margin-top:18px;
  display:grid; gap:16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px){ .grid{grid-template-columns: repeat(3, minmax(0, 1fr));} }
@media (max-width: 780px){ .hero-grid{grid-template-columns:1fr} .grid{grid-template-columns: repeat(2, minmax(0, 1fr));} }
@media (max-width: 520px){ .grid{grid-template-columns: 1fr;} .main-nav{display:none} }

/* === CARD === */
.card{
  background:var(--card); border:1px solid var(--stroke); border-radius:16px; overflow:hidden; display:flex; flex-direction:column; min-height:220px;
}
.card-img {
  height: 220px;
  background: linear-gradient(180deg, #181824, #111118);
  border-bottom: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.card-body{padding:14px}
.card-body h3{margin:0 0 4px 0; font-size:18px}
.price{font-weight:800; font-size:20px; margin:4px 0}
.meta{color:var(--muted); font-size:13px}
.hint{margin:18px 0 8px; color:var(--muted); text-align:center}
.center{justify-content:center}

/* === TERMS === */
.terms{padding:36px 0}
.list{line-height:1.9; color:var(--muted)}

/* === CONTACTS === */
.contacts{padding:36px 0 64px; border-top:1px solid var(--stroke)}
.contacts-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px}
@media (max-width: 760px){ .contacts-grid{grid-template-columns:1fr} }
.c-card{background:var(--card); border:1px solid var(--stroke); border-radius:16px; padding:18px}
.c-card h3{margin-top:0}
.c-card p{margin:.3em 0}
.c-card span{color:var(--muted)}
.c-card label{display:block; font-size:14px; color:var(--muted); margin:10px 0 6px}
.c-card input, .c-card textarea{
  width:100%; padding:12px 14px; border-radius:12px; border:1px solid var(--stroke);
  background:#0f0f15; color:var(--text); outline:none;
}
.c-card input:focus, .c-card textarea:focus{border-color:#3a3a66}

/* === FOOTER === */
.site-footer{border-top:1px solid var(--stroke); padding:18px 0; background:rgba(0,0,0,.2)}
.site-footer .container{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.to-top{opacity:.7}
.to-top:hover{opacity:1}

/* === WHATSAPP FAB === */
.wa-fab{
  position:fixed; right:18px; bottom:18px; width:54px; height:54px; display:grid; place-items:center;
  font-weight:900; background:linear-gradient(135deg, #25D366, #128C7E); color:#04120d; border-radius:50%;
  box-shadow:0 16px 32px var(--shadow); border:1px solid rgba(0,0,0,.25);
}

/
