/* =========================================================================
   Eximma - Električni kamini
   styles.css

   Mobile-first, responsive stylesheet for the static product catalog.
   Visual language inspired by dimplexfires.com: clean, bright, airy, lots of
   whitespace, large imagery, image-led cards. Accent colour is a warm
   amber/copper ("ember") that ties to the fireplace theme.

   No external frameworks or web fonts (privacy-friendly). All design tokens
   live in :root, so colours and spacing can be tweaked in one place.
   ========================================================================= */

/* ----- Design tokens --------------------------------------------------- */
:root {
  --color-bg: #ffffff;
  --color-surface: #f5f6f7;       /* very light grey section background */
  --color-surface-2: #eef0f2;
  --color-text: #16181d;          /* near-black for premium feel */
  --color-muted: #5f6772;
  --color-border: #e6e8eb;

  --color-accent: #c2901c;        /* warm honey / antique gold accent */
  --color-accent-dark: #a5781a;
  --color-accent-soft: #f7eed6;   /* tinted background for accents */

  --color-dark: #14171b;          /* footer background */
  --color-dark-text: #c9ced6;

  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(20, 23, 27, 0.06);
  --shadow-md: 0 6px 20px rgba(20, 23, 27, 0.08);
  --shadow-lg: 0 18px 50px rgba(20, 23, 27, 0.16);

  --max-width: 1240px;
  --gap: 1.5rem;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, "Helvetica Neue", sans-serif;
}

/* ----- Reset / base ---------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--color-accent-dark);
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

/* Generic layout container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.section--surface {
  background: var(--color-surface);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.text-muted {
  color: var(--color-muted);
}

/* ----- Buttons --------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* On dark backgrounds (hero) */
.btn-light {
  background: #fff;
  color: var(--color-text);
}

.btn-light:hover {
  background: #f1f1f1;
  color: var(--color-text);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* ----- Header / navigation -------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding: 0.9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand:hover {
  text-decoration: none;
}

/* Company name to the right of the logo */
.brand-name {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: #000;
}

.brand-name-line1 {
  font-size: 1.4rem; /* JS scales this so its width matches line 2 */
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #000;
}

.brand-name-line2 {
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  color: #000;
  margin-top: 0.12rem;
}

.brand-logo {
  height: 78px;
  width: auto;
  display: block;
}

/* Toggle button (hamburger) shown on mobile */
.nav-toggle {
  margin-left: auto;
  background: none;
  border: 0;
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;            /* hidden by default on mobile */
  flex-direction: column;
  width: 100%;
}

.nav-links.open {
  display: flex;
  padding-bottom: 0.5rem;
}

.nav-links li {
  border-top: 1px solid var(--color-border);
}

.nav-links a {
  display: block;
  color: var(--color-text);
  padding: 0.8rem 0.25rem;
  font-weight: 600;
  font-size: 0.98rem;
}

.nav-links a:hover {
  color: var(--color-accent);
}

/* Search box inside nav */
.nav-search {
  display: flex;
  width: 100%;
  margin-top: 0.6rem;
}

.nav-search input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.95rem;
  background: var(--color-surface);
}

.nav-search input:focus {
  outline: 2px solid var(--color-accent-soft);
  border-color: var(--color-accent);
}

.nav-search button {
  border: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 0 0.95rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-search button svg {
  display: block;
  width: 22px;
  height: 22px;
}

.nav-search button:hover {
  background: var(--color-accent-dark);
}

/* Desktop navigation layout */
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    width: auto;
    margin-left: auto;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-links li {
    border-top: 0;
  }

  .nav-links a {
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover {
    background: var(--color-surface);
    color: var(--color-accent);
  }

  .nav-search {
    width: auto;
    margin: 0 0 0 0.75rem;
  }

  .nav-search input {
    width: 190px;
  }
}

/* ----- Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  background-color: #1b1f24;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 72vh;
  overflow: hidden;
}

/* Slideshow layers: each slide is a cross-fading full-cover background */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* Dark gradient so text stays readable over any photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 12, 15, 0.82) 0%,
    rgba(10, 12, 15, 0.55) 45%,
    rgba(10, 12, 15, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-logo {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.7rem);
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero p {
  max-width: 540px;
  margin: 0 0 2rem;
  color: #e7e9ec;
  font-size: 1.15rem;
}

.hero .eyebrow {
  color: #ffd9b8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ----- Category grid --------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 920px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 600px) and (max-width: 919px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Category card - image-led tile with title overlay */
.category-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background: var(--color-surface-2);
  box-shadow: var(--shadow);
  min-height: 260px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.category-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__img {
  transform: scale(1.05);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 15, 0.05) 0%,
    rgba(10, 12, 15, 0.35) 55%,
    rgba(10, 12, 15, 0.82) 100%
  );
}

.category-card__body {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
}

.category-card__body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.category-card .count {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.category-card .arrow {
  display: inline-block;
  margin-top: 0.6rem;
  color: #ffcfa8;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Extra top spacing for a second heading inside one section */
.section-head--gap {
  margin-top: 3.5rem;
}

/* ----- Flame-effect cards (homepage) ---------------------------------- */
.effect-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--color-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.effect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: var(--color-text);
  text-decoration: none;
}

.effect-card__img {
  aspect-ratio: 16 / 9;
  background: #0f1115;
  overflow: hidden;
}

.effect-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.effect-card:hover .effect-card__img img {
  transform: scale(1.04);
}

.effect-card__body {
  padding: 1.1rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.effect-card__body h3 {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.effect-card__body p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
  flex: 1;
}

.effect-card .card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent);
}

/* ----- Product card ---------------------------------------------------- */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  text-decoration: none;
}

.product-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  overflow: hidden;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.04);
}

.product-card .body {
  padding: 1.1rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .manufacturer {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-weight: 700;
}

.product-card h3 {
  font-size: 1.15rem;
  margin: 0.35rem 0 0.5rem;
  color: var(--color-text);
}

.product-card p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
  flex: 1;
}

.product-card .card-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-accent);
}

/* Price block on the product detail page */
.price-block {
  margin: 0.5rem 0 1.5rem;
}

.price-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.1rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-accent-dark);
  letter-spacing: 0;
}

.badge-featured {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* AKCIJA značka na kartici (zgoraj desno, da se ne prekriva z "Izpostavljeno") */
.badge-akcija {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 1;
  background: #c0392b;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* ----- Akcijska cena na strani izdelka -------------------------------- */
.akcija-badge {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.price-old {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-muted);
  text-decoration: line-through;
}

.product-price.is-sale {
  color: #c0392b;
}

.sale-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-muted);
}

/* "Akcija" povezava v meniju in nogi – rahlo poudarjena (rdeča) */
.nav-links a.akcija-link,
.site-footer a.akcija-link {
  color: #c0392b;
  font-weight: 700;
}
.nav-links a.akcija-link:hover,
.site-footer a.akcija-link:hover {
  color: #a93226;
}

/* Aktivna (trenutna) postavka v glavnem meniju: zlata barva. */
.nav-links a.active,
.nav-links a.akcija-link.active {
  color: var(--color-accent);
  font-weight: 700;
}

/* Domov = ikona hiše (poravnava + privzeta barva kot ostali napisi). */
.nav-home {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
}
/* Besedilo ostalih postavk vizualno sedi malo nižje – ikono poravnamo z njim. */
.nav-home svg {
  transform: translateY(2px);
}

/* ----- Breadcrumb ------------------------------------------------------ */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-muted);
  padding: 1.5rem 0 0;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

/* ----- Effect filter chips (sub-category) ------------------------------ */
.effect-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.25rem 0 1.75rem;
}

.chip {
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.chip:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.chip.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Effect badge (shown next to manufacturer on the product page) */
.effect-badge {
  display: inline-block;
  margin-left: 0.5rem;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  vertical-align: middle;
}

.effect-badge:hover {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
}

.product-card .manufacturer .dot {
  opacity: 0.5;
}

/* ----- Product detail -------------------------------------------------- */
.product-detail {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding: 1.5rem 0 3rem;
}

@media (min-width: 880px) {
  .product-detail {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3.5rem;
  }
}

/* Gallery */
.gallery-main {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.gallery-thumbs button {
  width: 76px;
  height: 76px;
  padding: 0;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-surface);
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.gallery-thumbs button.active,
.gallery-thumbs button:hover {
  border-color: var(--color-accent);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info column */
.product-info h1 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 0.25rem;
}

.product-info .manufacturer {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
}

.product-info .lead {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.product-info h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

.specs-table th,
.specs-table td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.specs-table tr:nth-child(odd) th,
.specs-table tr:nth-child(odd) td {
  background: var(--color-surface);
}

.specs-table th {
  width: 45%;
  font-weight: 600;
  color: var(--color-text);
}

/* Documents list */
.docs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.docs-list li {
  margin-bottom: 0.5rem;
}

.docs-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.docs-list a::before {
  content: "📄";
}

/* ----- Lightbox -------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  color: #fff;
  font-size: 2rem;
  width: 52px;
  height: 68px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ----- Forms (contact) ------------------------------------------------- */
.form-grid {
  display: grid;
  gap: 1.1rem;
  max-width: 560px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.3rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-bg);
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid var(--color-accent-soft);
  border-color: var(--color-accent);
}

.contact-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-box dt {
  font-weight: 700;
  margin-top: 0.9rem;
  color: var(--color-accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-box dd {
  margin: 0.15rem 0 0;
}

/* ----- Search results / states ---------------------------------------- */
.empty-state {
  text-align: center;
  color: var(--color-muted);
  padding: 3.5rem 1rem;
  font-size: 1.05rem;
}

/* ----- Footer ---------------------------------------------------------- */
.site-footer {
  background: var(--color-dark);
  color: var(--color-dark-text);
  padding: 3.5rem 1.5rem 1.75rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1.6fr;
  }
}

/* Contact column (styled like the original eximma.si block) */
.footer-contact p {
  margin-bottom: 0.7rem;
}

.footer-contact strong {
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-hours {
  white-space: pre-line;
  margin-bottom: 0.4rem;
}

.footer-note {
  font-size: 0.82rem;
  color: #8b929c;
  line-height: 1.5;
  white-space: pre-line;
}

/* Working hours render multi-line everywhere */
[data-site="hours"] {
  white-space: pre-line;
}

/* Notice box (e.g. holiday closure) on the contact page */
.site-notice {
  background: var(--color-accent-soft);
  border-left: 4px solid var(--color-accent);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-weight: 600;
  margin-top: 1.25rem;
  white-space: pre-line;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.site-footer .brand-footer {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.site-footer a {
  color: var(--color-dark-text);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: #8b929c;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

/* Opozorilo, da so slike simbolične (v nogi vsake strani) */
.footer-disclaimer {
  font-size: 0.78rem;
  font-style: italic;
  color: #7a818b;
  margin: 0 0 0.5rem;
}

/* Enaka opomba tik pod galerijo na strani izdelka */
.gallery-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--color-text-muted, #6b7280);
}

/* ----- Utilities ------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.center { text-align: center; }
.lead-text {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 760px;
  margin: 0 auto;
}
