/* Sable Kopas — sdílené styly webu */

:root {
  --navy: #1F2B47;
  --navy-light: #2E3E63;
  --navy-lighter: #26314F;
  --cream: #F7F2E8;
  --card: #FBF8F1;
  --beige: #EFE6D4;
  --beige-border: #E3D4B8;
  --tan: #D9C7A6;
  --tan-border: #C9B78F;
  --muted: #5B6272;
  --text: #23283A;
  --gold: #8A6F47;
  --grey: #8A8A8A;
  --footer-muted: #C9BBA0;
  --footer-border: #2E3E63;
  --footer-muted2: #9AA1B5;
  --green: #1F6B3E;
  --old-price: #A39A87;

  --font-serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: var(--font-sans); }
h1, h2, h3 { font-family: var(--font-serif); color: var(--navy); margin: 0; }
ul, ol { margin: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 10px 18px;
  z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--beige-border);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-logo {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.main-nav { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
}
.main-nav a:hover { color: var(--gold); text-decoration: underline; }
.main-nav a[aria-current="page"] { color: var(--gold); }

.cart-link {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cart-link:hover { color: var(--cream); text-decoration: none; opacity: 0.9; }
.cart-badge {
  background: var(--tan);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  padding: 1px 7px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border: none;
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--tan); color: var(--navy); }
.btn-primary:hover { background: #cdb98f; color: var(--navy); text-decoration: none; }
.btn-dark { background: var(--navy); color: var(--cream); }
.btn-dark:hover { background: #172038; color: var(--cream); text-decoration: none; }
.btn-outline-light { background: transparent; color: var(--cream); border: 1px solid var(--tan); font-weight: 500; }
.btn-outline-light:hover { background: rgba(255,255,255,0.06); color: var(--cream); text-decoration: none; }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-dark:hover { background: rgba(31,43,71,0.06); color: var(--navy); text-decoration: none; }
.btn-block { width: 100%; display: block; }
.btn-small { padding: 10px; font-size: 13px; border-radius: 2px; }
.btn-link {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--navy); font-size: 14px; text-decoration: underline;
}

/* ---------- Layout helpers ---------- */
main { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.container-article { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.section { padding: 70px 40px; }
.section-tight { padding: 60px 40px; }
.section-alt { background: var(--beige); }
.text-center { text-align: center; }

.page-heading { font-size: 36px; margin: 0 0 10px; }
.page-lead { color: var(--muted); font-size: 15px; margin: 0 0 32px; }
.section-heading { font-size: 30px; text-align: center; margin: 0 0 40px; }

.breadcrumb { font-size: 13px; color: var(--grey); margin-bottom: 26px; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  padding: 90px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-copy { max-width: 540px; }
.hero-kicker { color: var(--tan); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 18px; }
.hero-title { font-family: var(--font-serif); font-size: 52px; line-height: 1.15; color: var(--cream); margin: 0 0 22px; }
.hero-text { color: var(--tan); font-size: 17px; margin: 0 0 32px; max-width: 460px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media {
  width: 380px;
  max-width: 100%;
  height: 320px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--beige);
  padding: 34px 40px;
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  text-align: center;
}
.trust-item-title { font-family: var(--font-serif); font-weight: 600; font-size: 16px; color: var(--navy); }
.trust-item-sub { font-size: 13px; color: var(--muted); }

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-categories { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.grid-products { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid-products-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.grid-articles { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-articles-blog { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.grid-about-features { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

.category-tile {
  background: var(--beige);
  border: none;
  border-radius: 2px;
  padding: 30px 16px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  display: block;
}
.category-tile:hover { background: var(--tan); text-decoration: none; }

/* ---------- Product card ---------- */
.product-card {
  background: var(--card);
  border: 1px solid var(--beige-border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card-media { display: block; width: 100%; height: 190px; overflow: hidden; background: var(--beige); }
.product-card-media-sm { height: 150px; }
.product-card-title-sm { font-size: 14px; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-card-title {
  font-family: var(--font-serif); font-size: 15px; color: var(--navy);
  font-weight: 600; margin: 0 0 6px; display: block;
}
.product-card-title:hover { color: var(--gold); }
.product-badge {
  position: absolute; top: 10px; left: 10px; background: var(--navy); color: var(--cream);
  font-size: 11px; padding: 4px 10px; border-radius: 2px; z-index: 2;
}
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.price { font-size: 15px; color: var(--navy); font-weight: 600; }
.price-old { font-size: 13px; color: var(--old-price); text-decoration: line-through; }

/* ---------- Article card ---------- */
.article-card { background: var(--card); border: 1px solid var(--beige-border); border-radius: 2px; overflow: hidden; }
.article-card-media { display: block; width: 100%; height: 150px; overflow: hidden; background: var(--beige); }
.article-card-media img { width: 100%; height: 100%; object-fit: cover; }
.article-card-media-lg { height: 170px; }
.article-card-body { padding: 18px; }
.article-card-body-lg { padding: 20px; }
.article-eyebrow { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.article-card-title {
  font-family: var(--font-serif); font-size: 17px; color: var(--navy); font-weight: 600;
  display: block; margin-bottom: 8px;
}
.article-card-title-lg { font-size: 18px; margin-bottom: 10px; }
.article-card-title:hover { color: var(--gold); }
.article-excerpt { font-size: 14px; color: var(--muted); margin: 0 0 10px; }
.article-meta { font-size: 12px; color: var(--grey); }

/* ---------- Quote / testimonial ---------- */
.testimonial { background: var(--navy); padding: 70px 40px; text-align: center; }
.testimonial-quote { font-family: var(--font-serif); font-style: italic; font-size: 25px; color: var(--cream); max-width: 640px; margin: 0 auto 18px; }
.testimonial-author { color: var(--tan); font-size: 14px; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--beige); padding: 60px 40px; text-align: center; }
.newsletter h2 { font-size: 26px; margin: 0 0 12px; }
.newsletter p.lead { color: var(--muted); font-size: 15px; margin: 0 0 24px; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 420px; margin: 0 auto; }
.newsletter-form input[type="email"] { flex: 1; min-width: 200px; }
.form-success { color: var(--navy); font-weight: 600; }

/* ---------- Forms ---------- */
.field {
  padding: 13px 16px;
  border: 1px solid var(--tan-border);
  border-radius: 2px;
  font-size: 14px;
  background: var(--cream);
  width: 100%;
}
.field-card { background: var(--card); }
textarea.field { resize: vertical; }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.form-row > * { flex: 1; min-width: 140px; }
.form-label { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; display: block; }
.radio-option { display: block; font-size: 14px; margin-bottom: 6px; }
.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Product detail ---------- */
.product-detail { display: flex; gap: 50px; flex-wrap: wrap; }
.product-detail-media { flex: 1; min-width: 300px; height: 400px; border-radius: 2px; overflow: hidden; background: var(--beige); }
.product-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { flex: 1; min-width: 300px; }
.product-detail-info h1 { font-size: 30px; margin: 0 0 10px; }
.product-detail-price { font-size: 22px; color: var(--navy); font-weight: 600; margin-bottom: 18px; }
.product-detail-desc { color: var(--muted); font-size: 15px; margin: 0 0 20px; }
.product-detail-features { margin: 0 0 24px; padding-left: 20px; color: var(--text); font-size: 14px; }
.product-detail-features li { margin-bottom: 6px; }
.product-detail-note { font-size: 13px; color: var(--muted); }

/* ---------- About page ---------- */
.about-feature { background: var(--beige); padding: 26px; border-radius: 2px; }
.about-feature-title { font-family: var(--font-serif); font-weight: 600; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.about-feature-text { font-size: 14px; color: var(--muted); }
.about-photo { width: 100%; height: 260px; border-radius: 2px; overflow: hidden; margin-bottom: 40px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.company-box { background: var(--card); border: 1px solid var(--beige-border); padding: 24px; border-radius: 2px; font-size: 13px; color: var(--muted); }
.company-box strong { color: var(--navy); }

/* ---------- Contact page ---------- */
.contact-wrap { display: flex; gap: 60px; flex-wrap: wrap; }
.contact-col { flex: 1; min-width: 280px; }
.contact-details { font-size: 15px; color: var(--text); margin-bottom: 24px; }
.contact-details div { margin-bottom: 8px; }
.contact-map { width: 100%; height: 200px; border-radius: 2px; overflow: hidden; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Catalog filters ---------- */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-pill {
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  background: transparent;
  color: var(--navy);
  border-color: var(--tan-border);
}
.filter-pill[aria-pressed="true"] { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* ---------- Cart ---------- */
.cart-row {
  display: flex; align-items: center; gap: 18px; background: var(--card);
  border: 1px solid var(--beige-border); border-radius: 2px; padding: 16px; flex-wrap: wrap;
}
.cart-row-media { width: 70px; height: 70px; flex-shrink: 0; border-radius: 2px; overflow: hidden; background: var(--beige); }
.cart-row-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-info { flex: 1; min-width: 160px; }
.cart-row-name { font-family: var(--font-serif); font-weight: 600; font-size: 15px; color: var(--navy); }
.cart-row-unit { font-size: 13px; color: var(--grey); }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--tan-border); background: var(--cream); cursor: pointer; border-radius: 2px; }
.cart-row-total { min-width: 80px; text-align: right; font-weight: 600; color: var(--navy); }
.cart-row-remove { background: none; border: none; color: var(--gold); cursor: pointer; font-size: 13px; text-decoration: underline; }
.cart-summary { background: var(--beige); padding: 24px; border-radius: 2px; }
.cart-summary-line { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 8px; }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.free-ship-note-ok { font-size: 13px; color: var(--green); margin-bottom: 14px; }
.free-ship-note { font-size: 13px; color: var(--muted); margin-bottom: 14px; }

/* ---------- Checkout ---------- */
.checkout-wrap { display: flex; gap: 50px; flex-wrap: wrap; }
.checkout-form { flex: 2; min-width: 300px; display: flex; flex-direction: column; gap: 16px; }
.checkout-summary { flex: 1; min-width: 260px; background: var(--beige); border-radius: 2px; padding: 24px; align-self: flex-start; }
.checkout-summary-title { font-family: var(--font-serif); font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 16px; }
.checkout-summary-line { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; color: var(--text); }
.checkout-summary-total { border-top: 1px solid var(--tan-border); margin-top: 12px; padding-top: 12px; display: flex; justify-content: space-between; font-weight: 700; color: var(--navy); }
.legal-note { font-size: 12px; color: var(--grey); }
.legal-note a { color: var(--grey); }

/* ---------- Order success ---------- */
.order-success { padding: 80px 40px; max-width: 640px; margin: 0 auto; text-align: center; }
.order-success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 24px;
}
.order-box { background: var(--card); border: 1px solid var(--beige-border); border-radius: 2px; padding: 20px; text-align: left; margin-bottom: 30px; }
.order-box-line { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.order-box-total { border-top: 1px solid var(--beige-border); margin-top: 10px; padding-top: 10px; display: flex; justify-content: space-between; font-weight: 700; color: var(--navy); }
.order-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Static content pages ---------- */
.prose h2 { font-size: 20px; margin: 24px 0 14px; }
.prose h2:first-of-type { margin-top: 0; }
.prose p { font-size: 15px; color: var(--text); margin: 0 0 16px; }
.prose ol, .prose ul { padding-left: 20px; margin: 0 0 24px; }
.prose li { font-size: 15px; color: var(--text); margin-bottom: 8px; }
.legal-meta { font-size: 14px; color: var(--grey); margin: 0 0 24px; }
.shipping-option {
  display: flex; justify-content: space-between; background: var(--card); border: 1px solid var(--beige-border);
  padding: 14px 18px; border-radius: 2px; font-size: 14px;
}
.shipping-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 18px; }
.faq-q { font-family: var(--font-serif); font-weight: 600; color: var(--navy); font-size: 16px; margin-bottom: 6px; }
.faq-a { font-size: 15px; color: var(--muted); }
.cookie-types { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.cookie-type { background: var(--card); border: 1px solid var(--beige-border); padding: 16px 18px; border-radius: 2px; }
.cookie-type-title { font-weight: 600; color: var(--navy); font-size: 14px; margin-bottom: 4px; }
.cookie-type-text { font-size: 13px; color: var(--muted); }

/* ---------- Article page ---------- */
.article-hero { width: 100%; height: 280px; border-radius: 2px; overflow: hidden; margin-bottom: 32px; background: var(--beige); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body p { font-size: 16px; color: var(--text); margin: 0 0 18px; }
.article-related { margin-top: 50px; border-top: 1px solid var(--beige-border); padding-top: 32px; }
.article-related h2 { font-size: 20px; margin: 0 0 18px; }
.related-article-link {
  text-align: left; background: var(--card); border: 1px solid var(--beige-border); border-radius: 2px;
  padding: 16px; display: block; font-family: var(--font-serif); font-size: 15px; color: var(--navy); font-weight: 600;
}
.related-article-link:hover { color: var(--gold); }

/* ---------- Related items ---------- */
.related-section { margin-top: 60px; }
.related-heading { font-size: 22px; margin: 0 0 20px; }

/* ---------- Empty state ---------- */
.empty-state { color: var(--muted); font-size: 15px; margin-bottom: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--cream); padding: 60px 40px 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-brand { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.footer-brand-text { font-size: 13px; color: var(--footer-muted); max-width: 240px; }
.footer-col-title { font-weight: 600; font-size: 14px; margin-bottom: 14px; color: var(--tan); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--cream); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--tan); text-decoration: underline; }
.footer-address { font-size: 13px; color: var(--footer-muted); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--footer-border); max-width: 1200px; margin: 0 auto; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--footer-muted2);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); color: var(--cream);
  padding: 20px 40px; display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap;
  z-index: 100; box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner p { font-size: 13px; max-width: 560px; margin: 0; color: var(--tan); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner[hidden] { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .site-header, .hero, .section, .section-tight, .trust-bar, .testimonial, .newsletter, .site-footer { padding-left: 20px; padding-right: 20px; }
  .container, .container-narrow, .container-article { padding: 0 20px; }
  .hero-title { font-size: 36px; }
  .page-heading { font-size: 28px; }
}
