/* OUTUS — monochrome storefront */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #111111;
  --ink-soft: #444444;
  --muted: #777777;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --accent: #111111;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.4rem; }

a { color: var(--ink); text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .65; }

img { display: block; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}
.site-logo img { height: 34px; width: auto; }

.main-navigation ul { list-style: none; display: flex; gap: 2rem; }
.main-navigation a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  padding: .4rem 0;
  position: relative;
}
.main-navigation a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--ink);
  transition: width .25s ease;
}
.main-navigation a:hover { opacity: 1; }
.main-navigation a:hover::after { width: 100%; }

/* Mobile toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: .3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero-section {
  background: var(--ink);
  color: #fff;
  padding: 5.5rem 0;
  text-align: center;
}
.hero-section h1 { color: #fff; font-weight: 700; font-size: 3.4rem; letter-spacing: 2px; }
.hero-section p { font-size: 1.15rem; color: #cfcfcf; max-width: 620px; margin: 1rem auto 2rem; text-transform: none; font-family: 'Inter', sans-serif; }
.hero-cta {
  display: inline-block;
  background: #fff; color: var(--ink);
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 600; font-size: .95rem;
  padding: .9rem 2.6rem; border: 2px solid #fff;
}
.hero-cta:hover { background: transparent; color: #fff; opacity: 1; }

/* Section headings */
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { position: relative; display: inline-block; padding-bottom: .8rem; }
.section-head h2::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 54px; height: 3px; background: var(--ink);
}
.section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; }

/* Categories */
.categories-section { padding: 4.5rem 0; background: var(--bg-soft); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}
.category-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.category-card:hover { border-color: var(--ink); transform: translateY(-4px); opacity: 1; }
.category-thumb { width: 100%; height: 190px; object-fit: contain; background: #fff; padding: 1.2rem; }
.category-name {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600; font-size: 1.05rem; color: var(--ink);
  text-align: center; padding: 1rem; border-top: 1px solid var(--line);
}
.category-count { display: block; font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: .8rem; color: var(--muted); margin-top: .2rem; }

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.6rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.product-image { width: 100%; height: 250px; background: #fff; border-bottom: 1px solid var(--line); }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 1.2rem; }
.product-content { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.product-cat-tag {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px;
  font-size: .72rem; color: var(--muted); margin-bottom: .5rem;
}
.product-title {
  font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0;
  font-size: .98rem; font-weight: 600; line-height: 1.4; color: var(--ink);
  margin-bottom: .8rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-price-row { display: flex; align-items: baseline; gap: .6rem; margin: auto 0 1rem; }
.product-price { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--ink); }
.product-list-price { font-size: .95rem; color: var(--muted); text-decoration: line-through; }
.product-button {
  display: block; text-align: center;
  background: var(--ink); color: #fff;
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 500; font-size: .9rem;
  padding: .85rem 1rem; border: 2px solid var(--ink);
}
.product-button:hover { background: #fff; color: var(--ink); opacity: 1; }

/* Single product page */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.product-detail .pd-image { border: 1px solid var(--line); height: 460px; display: flex; align-items: center; justify-content: center; padding: 2rem; background: #fff; }
.product-detail .pd-image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pd-info h1 { font-size: 2rem; text-transform: none; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0; line-height: 1.3; }
.pd-price { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 600; color: var(--ink); margin: 1rem 0 .3rem; }
.pd-list { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.pd-desc { margin: 1.5rem 0 2rem; line-height: 1.8; color: var(--ink-soft); }
.pd-button {
  display: inline-block; background: var(--ink); color: #fff;
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 500; font-size: 1rem; padding: 1rem 3.5rem; border: 2px solid var(--ink);
}
.pd-button:hover { background: #fff; color: var(--ink); opacity: 1; }
.breadcrumb { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); opacity: 1; }

/* Feature strip */
.feature-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.feature-item { text-align: center; padding: 1.5rem; }
.feature-item .fi-num { font-family: 'Oswald', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--ink); }
.feature-item h3 { font-size: 1.15rem; margin: .6rem 0; }
.feature-item p { color: var(--muted); text-transform: none; }

/* SEO content */
.seo-content { background: #fff; }
.seo-content .container { max-width: 900px; }
.seo-content h3 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.seo-content p { color: var(--ink-soft); line-height: 1.85; margin-bottom: 1rem; text-transform: none; }
.seo-content ul { margin: 1rem 0 1.5rem 1.4rem; color: var(--ink-soft); line-height: 1.85; }
.seo-content li { margin-bottom: .5rem; }
.seo-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2.5rem; font-size: .95rem; }
.seo-content th { background: var(--ink); color: #fff; text-align: left; padding: .8rem 1rem; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .5px; font-weight: 500; }
.seo-content td { border: 1px solid var(--line); padding: .75rem 1rem; color: var(--ink-soft); }
.seo-content tbody tr:nth-child(even) td { background: var(--bg-soft); }

/* Reviews */
.reviews-section { background: var(--bg-soft); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.6rem; }
.review-card { background: #fff; border: 1px solid var(--line); padding: 2rem; }
.review-stars { letter-spacing: 3px; color: var(--ink); margin-bottom: .8rem; font-size: 1.1rem; }
.review-card p { color: var(--ink-soft); font-style: italic; margin-bottom: 1rem; text-transform: none; }
.review-author { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; color: var(--ink); }

/* Footer */
.site-footer { background: var(--ink); color: #cfcfcf; padding: 3.5rem 0 1.5rem; margin-top: 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: .5rem; }
.footer-section a { color: #b8b8b8; text-transform: none; font-family: 'Inter', sans-serif; }
.footer-section a:hover { color: #fff; opacity: 1; }
.footer-section p { color: #b8b8b8; font-size: .9rem; }
.footer-bottom { border-top: 1px solid #333; padding-top: 1.5rem; text-align: center; color: #888; font-size: .85rem; }
.footer-disclaimer { display: block; max-width: 820px; margin: 0 auto .8rem; color: #888; font-size: .82rem; line-height: 1.6; }

/* Utility */
.text-center { text-align: center; }
.py-section { padding: 4.5rem 0; }
.mb-2 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail .pd-image { height: 340px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  .hero-section h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }
  .menu-toggle { display: block; }
  .main-navigation {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 2px solid var(--ink);
    display: none;
  }
  .main-navigation.active { display: block; }
  .main-navigation ul { flex-direction: column; gap: 0; }
  .main-navigation li { border-bottom: 1px solid var(--line); }
  .main-navigation a { padding: 1rem 24px; }
  .hero-section { padding: 3.5rem 0; }
}
