/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background: #f5f7fb;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  height: 32px;
  width: auto;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: #111827;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: #111827;
  color: #ffffff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent),
              linear-gradient(to bottom right, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7));
}

.hero-content {
  position: relative;
  padding: 80px 0;
  max-width: 550px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-light {
  background: #f9fafb;
  color: #111827;
}

.btn-light:hover {
  background: #e5e7eb;
}

.btn-outline {
  background: transparent;
  color: #f9fafb;
  border-color: #f9fafb;
}

.btn-outline:hover {
  background: #f9fafb;
  color: #111827;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-dark {
  background: #0b1120;
  color: #e5e7eb;
}

.section-accent {
  background: linear-gradient(135deg, #fdf2f8, #eff6ff);
}

.section .section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.section p {
  font-size: 0.98rem;
}

/* Lineup image */
.lineup-image-wrapper {
  margin-bottom: 24px;
  text-align: center;
}

.lineup-image {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

/* Products grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section-dark .product-card {
  background: #020617;
  color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.product-tag.ladies {
  background: rgba(236, 72, 153, 0.1);
  color: #be185d;
}

.product-tag.men {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.product-desc {
  font-size: 0.85rem;
  color: #4b5563;
  margin-top: auto;
}

.section-dark .product-desc {
  color: #d1d5db;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.about-grid p {
  margin-bottom: 10px;
}

.about-image-wrapper {
  text-align: center;
}

.about-image {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

/* How to order */
.order-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: center;
}

.order-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.step-number {
  height: 32px;
  width: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.order-step p {
  font-size: 0.9rem;
  margin: 0;
}

.order-contact {
  text-align: center;
  font-size: 0.95rem;
}

.order-contact p + p {
  margin-top: 6px;
}

.order-contact a {
  color: #1d4ed8;
  text-decoration: none;
}

.order-contact a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding: 16px 0;
  background: #ffffff;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6b7280;
}

/* Responsive rules */
@media (max-width: 960px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: 60vh;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo {
    height: 28px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .order-step {
    max-width: 100%;
  }
}
