/* ===== Objektwacht — Design System ===== */
:root {
  --accent:     #D97706;
  --accent-h:   #B45309;
  --accent-dim: rgba(217,119,6,.12);

  --bg:         #FAFAF9;
  --body-text:  #1C1917;
  --text:       #1C1917;
  --muted:      #57534E;
  --muted2:     #A8A29E;

  --card:       #FFFFFF;
  --card-border:#E7E5E4;
  --border:     #E7E5E4;
  --card2:      #F5F5F4;
  --surface:    #EFEDEB;

  --header-bg:  #1C1917;
  --header-text:#FAFAF9;
  --header-muted: rgba(250,250,249,.5);

  --success:    #16A34A;
  --warning:    #B45309;
  --info:       #2563EB;

  --radius:     10px;
  --radius-sm:  6px;
  --shadow:     0 1px 3px rgba(0,0,0,.06), 0 4px 14px rgba(0,0,0,.05);
  --shadow-md:  0 8px 26px rgba(0,0,0,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Sora', sans-serif; background: var(--bg); color: var(--body-text); font-size: 14.5px; line-height: 1.62; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── SKIP LINK ── */
.ow-skip-link { position: absolute; top: -100px; left: 1rem; background: var(--accent); color: #fff; padding: .5rem 1rem; border-radius: 0 0 6px 6px; font-size: 14px; font-weight: 600; z-index: 9999; transition: top .2s; }
.ow-skip-link:focus { top: 0; }

/* ── ANNOUNCEMENT BAR (above header) ── */
.ow-announce-bar { background: var(--accent); color: #1C1917; }
.ow-announce-inner { max-width: 1280px; margin: 0 auto; padding: 8px 24px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; font-size: 12.5px; font-weight: 700; }
.ow-announce-inner span { display: inline-flex; align-items: center; gap: 6px; }

/* ── HEADER (no separate category bar) ── */
.ow-site-header { position: sticky; top: 0; z-index: 500; background: var(--header-bg); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.ow-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; gap: 32px; }
.ow-logo { display: flex; align-items: center; gap: 9px; font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--header-text); letter-spacing: -.2px; flex-shrink: 0; }
.ow-logo b { color: var(--accent); font-weight: 800; }
.ow-nav-main { display: flex; align-items: center; gap: 28px; margin-left: 8px; }
.ow-nav-main a { color: rgba(250,250,249,.68); font-size: 14px; font-weight: 600; transition: color .15s; }
.ow-nav-main a:hover { color: #fff; }
.ow-header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.ow-icon-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; color: rgba(250,250,249,.7); transition: background .15s, color .15s; }
.ow-icon-btn:hover { background: rgba(255,255,255,.08); color: #fff; }
.ow-cart-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; background: var(--accent); color: #1C1917; }
.ow-cart-btn:hover { background: var(--accent-h); }
.ow-cart-count { position: absolute; top: -5px; right: -5px; background: #fff; color: var(--accent); width: 17px; height: 17px; border-radius: 50%; font-size: 10px; font-weight: 800; display: none; align-items: center; justify-content: center; }
.ow-hamburger-btn { display: none; background: none; border: none; color: var(--header-text); padding: 6px; }

/* ── MOBILE NAV ── */
.ow-mobile-nav { display: none; position: fixed; inset: 0; background: var(--header-bg); z-index: 1000; flex-direction: column; padding: 2rem; overflow-y: auto; }
.ow-mobile-nav.ow-open { display: flex; }
.ow-mobile-nav .ow-close-btn { align-self: flex-end; background: none; border: none; color: #fff; cursor: pointer; margin-bottom: 1.5rem; }
.ow-mobile-nav a { color: #fff; font-size: 1.1rem; font-weight: 600; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.1); display: block; }
.ow-mobile-nav a:hover { color: var(--accent); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; border-radius: var(--radius); border: none; font-family: inherit; transition: all .18s; cursor: pointer; }
.ow-btn-primary { background: var(--accent); color: #fff; padding: 13px 28px; font-size: 14px; }
.ow-btn-primary:hover { background: var(--accent-h); }
.ow-btn-secondary { background: var(--card2); color: var(--body-text); padding: 12px 22px; font-size: 14px; border: 1px solid var(--card-border); }
.ow-btn-secondary:hover { background: var(--surface); }
.ow-btn-outline { background: transparent; color: #fff; padding: 12px 22px; font-size: 14px; border: 2px solid var(--accent); }
.ow-btn-outline:hover { background: var(--accent); color: #fff; }
.ow-btn-sm { padding: 8px 16px; font-size: 12.5px; border-radius: var(--radius-sm); }
.ow-btn-lg { padding: 15px 34px; font-size: 15px; }

/* ── PRODUCT CARD ── */
.ow-product-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.ow-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ow-product-card:hover .ow-product-img img { transform: scale(1.04); }
.ow-product-img { height: 190px; background: #f7f6f5; position: relative; overflow: hidden; border-bottom: 1px solid var(--card-border); }
.ow-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .35s; }
.ow-product-badge { position: absolute; top: 10px; left: 10px; font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 5px; z-index: 2; background: var(--accent); color: #fff; }
.ow-product-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.ow-product-brand { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.ow-product-name { font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.ow-product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.ow-stars { color: var(--warning); font-size: 12px; letter-spacing: .5px; }
.ow-product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--card-border); margin-top: auto; }
.ow-price-old { font-size: 11.5px; color: var(--muted); text-decoration: line-through; }
.price { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--accent); }
.ow-add-btn { display: flex; align-items: center; gap: 5px; background: var(--body-text); color: #fff; padding: 8px 14px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; border: none; }
.ow-add-btn:hover { background: var(--accent); }

/* ── GRIDS ── */
.ow-product-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ow-product-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ── SECTION ── */
.section { max-width: 1280px; margin: 0 auto; padding: 56px 24px; }
.ow-section-sm { max-width: 1280px; margin: 0 auto; padding: 30px 24px; }
.ow-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; gap: 16px; }
.ow-section-title { font-family: 'Sora', sans-serif; font-size: clamp(20px, 2.2vw, 27px); font-weight: 700; letter-spacing: -.2px; }
.ow-section-title span { color: var(--accent); }
.ow-section-link { font-size: 13px; color: var(--accent); font-weight: 700; display: flex; align-items: center; gap: 3px; }

/* ── WHY / SHOP-CATEGORY FILTER (moved from header to shop page) ── */
.ow-shop-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.ow-shop-filter a { padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; background: var(--card2); border: 1px solid var(--card-border); color: var(--muted); }
.ow-shop-filter a:hover, .ow-shop-filter a.ow-active { background: var(--body-text); color: #fff; border-color: var(--body-text); }

.ow-why-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); }
.ow-why-icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--accent-dim); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 14px; }
.ow-why-card h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.ow-why-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── BLOG CARD ── */
.ow-blog-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.ow-blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ow-blog-card img { height: 172px; object-fit: cover; width: 100%; }
.ow-blog-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.ow-blog-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.ow-blog-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.ow-blog-card:hover .ow-blog-title { color: var(--accent); }
.ow-blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.ow-blog-meta { font-size: 12px; color: var(--muted2); display: flex; gap: 12px; margin-top: auto; }

/* ── FOOTER ── */
.ow-site-footer { background: #12100E; color: var(--header-text); }
.ow-footer-inner { max-width: 1280px; margin: 0 auto; padding: 54px 24px 28px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.ow-footer-brand p { font-size: 13px; color: rgba(250,250,249,.42); line-height: 1.75; max-width: 250px; margin-top: 10px; }
.ow-contact-line { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(250,250,249,.42); margin-top: 9px; }
.ow-contact-line svg { color: var(--accent); flex-shrink: 0; }
.ow-pay-badge { display: inline-flex; align-items: center; font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 5px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.72); }
.ow-footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.ow-footer-col ul { list-style: none; }
.ow-footer-col ul li { margin-bottom: 10px; }
.ow-footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.42); }
.ow-footer-col ul li a:hover { color: var(--accent); }
.ow-footer-bottom { max-width: 1280px; margin: 0 auto; padding: 16px 24px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 6px; }

/* ── LEGAL / STATIC PAGES ── */
.ow-legal-page { background: var(--bg); }
.ow-legal-page-inner { max-width: 840px; margin: 0 auto; padding: 48px 24px 80px; }
.ow-legal-page h1 { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.3px; }
.ow-legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.ow-legal-page h2 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.ow-legal-page p, .ow-legal-page li { font-size: 14.5px; line-height: 1.75; color: var(--body-text); }
.ow-legal-page ul, .ow-legal-page ol { padding-left: 20px; margin: 8px 0 16px; }
.ow-legal-page a { color: var(--accent); text-decoration: underline; }
.ow-legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13.5px; }
.ow-legal-page th { background: var(--surface); text-align: left; padding: 10px 14px; font-weight: 600; border: 1px solid var(--border); }
.ow-legal-page td { padding: 10px 14px; border: 1px solid var(--border); vertical-align: top; }

/* ── FORM ── */
.ow-form-group { margin-bottom: 18px; }
.ow-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.ow-form-group input, .ow-form-group select, .ow-form-group textarea { width: 100%; background: var(--card); border: 1px solid var(--border); color: var(--text); padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; }
.ow-form-group input:focus, .ow-form-group textarea:focus { border-color: var(--accent); }
.ow-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ow-form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.ow-form-check input { margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.ow-form-check label { font-size: 13px; color: var(--muted); line-height: 1.5; }
.ow-err-msg { display: none; color: #DC2626; font-size: 12.5px; margin-top: 5px; }
.ow-honeypot { position: absolute !important; left: -9999px !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .ow-product-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .ow-nav-main { display: none; }
  .ow-product-grid-4, .ow-product-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ow-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ow-hamburger-btn { display: flex; align-items: center; }
}
@media (max-width: 640px) {
  .ow-announce-hide-sm { display: none; }
  .ow-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ow-product-grid-4, .ow-product-grid-3 { grid-template-columns: 1fr; }
  .ow-footer-inner { grid-template-columns: 1fr; }
}
