/* ─── RESET & ROOT ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #0f0e0d;
  --white:      #faf9f7;
  --accent:     #ff5722;
  --soft-bg:    #f5f3ee;
  --card-bg:    #ffffff;
  --text-muted: #888077;
  --orange:     #FF8C42;
  --pink:       #F9748F;
  --blue:       #5B9BD5;
  --orange-bg:  #FFF0E6;
  --pink-bg:    #FFF0F3;
  --blue-bg:    #EBF3FC;
  --radius:     18px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,14,13,0.07);
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black);
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--accent); }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}

.hamburger:hover { background: rgba(255,87,34,0.08); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--soft-bg);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,87,34,0.06);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 520px;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,87,34,0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: var(--black);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 420px;
}

.hero-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.hero-price .old-price {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  margin-left: 4px;
  text-decoration: line-through;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(255,87,34,0.3);
}

.btn-primary:hover {
  background: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,87,34,0.4);
}

.btn-primary .arrow { transition: transform var(--transition); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.hero-image {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.9s ease both 0.2s;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-img-wrapper svg {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
}

.float-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  text-align: center;
}

.float-badge .stars { color: #fbbf24; font-size: 0.75rem; }
.float-badge .rating { margin-top: 2px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; }
.float-badge .reviews { font-size: 0.72rem; color: #888; }

/* ─── SECTIONS COMMON ────────────────────────────────────── */
section { padding: 80px 60px; }

.section-header { margin-bottom: 48px; }

.section-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  letter-spacing: -0.8px;
  color: var(--black);
}

.section-title span { color: var(--accent); }

/* ─── CATEGORIES ─────────────────────────────────────────── */
.categories-section { background: var(--white); }

.categories-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.category-card {
  flex: 1;
  min-width: 220px;
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.category-card.watch  { background: var(--orange-bg); }
.category-card.bag    { background: var(--pink-bg); }
.category-card.shoes  { background: var(--blue-bg); }

.category-card.watch:hover::after  { border-color: var(--orange); }
.category-card.bag:hover::after    { border-color: var(--pink); }
.category-card.shoes:hover::after  { border-color: var(--blue); }

.cat-info { display: flex; flex-direction: column; gap: 4px; }

.cat-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--black);
}

.cat-sub { font-size: 0.82rem; color: var(--text-muted); font-weight: 400; }

.cat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.watch .cat-icon  { background: rgba(255,140,66,0.2); }
.bag   .cat-icon  { background: rgba(249,116,143,0.2); }
.shoes .cat-icon  { background: rgba(91,155,213,0.2); }

/* ─── PRODUCT GRID ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}

.product-img-wrap {
  background: var(--soft-bg);
  padding: 28px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.product-img-wrap svg { transition: transform var(--transition); }
.product-card:hover .product-img-wrap svg { transform: scale(1.05); }

.product-body {
  padding: 22px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.product-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 11px 26px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
  letter-spacing: 0.2px;
}

.btn-buy:hover { background: var(--accent); transform: scale(1.03); }

/* ─── BACKPACK SECTION ───────────────────────────────────── */
.backpack-section { background: var(--soft-bg); }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter {
  background: var(--black);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner { position: relative; z-index: 1; }

.nl-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.nl-sub {
  font-size: 1rem;
  color: rgba(250,249,247,0.5);
  margin-bottom: 40px;
  font-weight: 300;
}

.nl-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  justify-content: center;
}

.nl-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.nl-input::placeholder { color: rgba(250,249,247,0.35); }
.nl-input:focus { border-color: var(--accent); }

.btn-send {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(255,87,34,0.35);
}

.btn-send:hover { background: #e64a19; transform: translateY(-2px); }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

footer .logo-text { color: var(--white); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(250,249,247,0.35);
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── LAPTOP (max-width: 1200px) ─────────────────────────── */
@media (max-width: 1200px) {
  header         { padding: 0 40px; }
  .hero          { padding: 60px 40px; }
  .hero-title    { font-size: clamp(1.6rem, 3vw, 2.4rem); }
  section        { padding: 60px 40px; }
  .newsletter    { padding: 80px 40px; }
  footer         { padding: 24px 40px; }
}

/* ─── TABLET (max-width: 992px) ──────────────────────────── */
@media (max-width: 992px) {
  header { padding: 0 28px; }

  .hero {
    padding: 60px 28px;
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .hero-content { max-width: 100%; }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image { max-width: 360px; width: 100%; }

  section { padding: 56px 28px; }

  .categories-grid { flex-wrap: wrap; }
  .category-card   { flex: 1 1 calc(50% - 12px); min-width: 200px; }

  .products-grid   { grid-template-columns: 1fr; gap: 20px; }
  .product-img-wrap{ min-height: 180px; }

  .nl-input   { padding: 12px 18px; font-size: 0.9rem; }
  .newsletter { padding: 72px 28px; }
  footer      { padding: 24px 28px; }
}

/* ─── MOBILE (max-width: 640px) ──────────────────────────── */
@media (max-width: 640px) {
  header      { padding: 0 20px; height: 64px; }
  .logo-text  { font-size: 1.2rem; }

  .hero       { padding: 48px 20px; gap: 32px; }
  .float-badge{ display: none; }

  section     { padding: 48px 20px; }

  .categories-grid {
    flex-direction: column;
    gap: 16px;
  }

  .category-card {
    flex: 1 1 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
  }

  .cat-info { align-items: center; }

  .nl-form {
    flex-direction: column;
    align-items: center;
  }

  .nl-input  { width: 100%; max-width: 360px; }
  .btn-send  { width: 100%; max-width: 360px; }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* ─── SMALL MOBILE (max-width: 380px) ────────────────────── */
@media (max-width: 380px) {
  .hero-title  { font-size: 1.5rem; }
  .hero-price  { font-size: 1.8rem; }
}
