/* Luštna hiša — slogi teme. Osnova prenesena iz Next.js mockupa (app/globals.css). */

:root {
  --ink: #1e1c1b;
  --muted: #6d6864;
  --paper: #f8f5ef;
  --white: #fffdf9;
  --blush: #efd8dd;
  --peach: #e8b9a5;
  --blue: #cddde7;
  --line: rgba(30, 28, 27, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1440px;
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--blush);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 245, 239, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100%, var(--max));
  height: 88px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  width: 132px;
  height: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 120px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.text-button,
.cart-button,
.close-button,
.round-add,
.quantity button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-button {
  display: none;
}

.cart-button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.cart-count {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 11px;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #3b3734;
}

.button-light {
  background: transparent;
  color: var(--ink);
}

.button-light:hover {
  background: white;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 16px;
}

.hero {
  width: min(100%, var(--max));
  min-height: 750px;
  margin: auto;
  padding: 74px 40px 84px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(580px, 1.18fr);
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-left: 6vw;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.details-intro h2,
.faq-section h2,
.closing-cta h2,
.product-detail-copy h1,
.detail-story h2,
.not-found h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(64px, 6.5vw, 104px);
}

.hero h1 em {
  margin-left: 0.38em;
  display: block;
  color: #aa6a77;
  font-weight: 400;
}

.hero-lead {
  max-width: 440px;
  margin: 32px 0 0 5px;
  color: #4b4643;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  margin: 42px 0 0 5px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-note {
  margin: 72px 0 0 5px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
}

.note-line {
  width: 40px;
  height: 1px;
  margin-top: 7px;
  background: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.hero-shape {
  position: absolute;
  top: 3%;
  right: -14%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 48% 52% 50% 50%;
  background: #edd4da;
  transform: rotate(12deg);
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 9px solid var(--white);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(61, 44, 38, 0.18);
  transition: transform 350ms ease;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-back {
  top: 3%;
  right: 4%;
  width: 48%;
  aspect-ratio: 1;
  transform: rotate(8deg);
}

.hero-card-middle {
  top: 21%;
  left: 10%;
  width: 45%;
  aspect-ratio: 1;
  transform: rotate(-8deg);
}

.hero-card-front {
  right: 13%;
  bottom: 0;
  width: 51%;
  aspect-ratio: 1;
  transform: rotate(2deg);
}

.hero-visual:hover .hero-card-back {
  transform: rotate(11deg) translate(8px, -6px);
}

.hero-visual:hover .hero-card-middle {
  transform: rotate(-11deg) translate(-8px, -5px);
}

.hero-visual:hover .hero-card-front {
  transform: rotate(1deg) translateY(-6px);
}

.hero-stamp {
  position: absolute;
  right: 0;
  bottom: 6%;
  z-index: 4;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.1;
  text-align: center;
  transform: rotate(9deg);
}

.benefits {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefits > div {
  min-height: 130px;
  padding: 28px 5vw;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  border-right: 1px solid var(--line);
}

.benefits > div:last-child {
  border-right: 0;
}

.benefits span,
.detail-list article > span {
  color: #a0968e;
  font-family: var(--serif);
  font-size: 12px;
}

.benefits p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.benefits strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.products-section,
.related-products {
  width: min(100%, var(--max));
  margin: auto;
  padding: 130px 40px;
}

.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.story-copy h2,
.details-intro h2,
.faq-section h2,
.detail-story h2 {
  font-size: clamp(46px, 5vw, 76px);
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.product-card {
  min-width: 0;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: #ece6dd;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-image-wrap:hover img {
  transform: scale(1.035);
}

.product-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.9);
  font-family: var(--serif);
  font-size: 11px;
  backdrop-filter: blur(8px);
}

.product-view {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 13px 16px;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 220ms ease;
}

.product-image-wrap:hover .product-view {
  transform: translateY(0);
}

.product-card-copy {
  min-height: 260px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.product-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.product-card h3 a:hover {
  color: #9b5e6a;
}

.product-card-copy > div > p:last-child {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
}

.product-card-bottom {
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.product-card-bottom strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.round-add {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 300;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.round-add:hover {
  background: var(--ink);
  color: white;
  transform: rotate(90deg);
}

.story-section {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blush);
}

.story-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(30, 28, 27, 0.12);
}

.story-visual::before,
.story-visual::after {
  position: absolute;
  width: 340px;
  height: 1px;
  background: rgba(30, 28, 27, 0.22);
  content: "";
}

.story-visual::before {
  transform: rotate(43deg);
}

.story-visual::after {
  transform: rotate(-43deg);
}

.story-paper {
  position: relative;
  z-index: 2;
  width: min(56%, 390px);
  aspect-ratio: 0.78;
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(88, 54, 62, 0.14);
  transform: rotate(-4deg);
}

.story-paper > span {
  font-family: var(--serif);
  font-size: 54px;
  font-style: italic;
}

.story-paper p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.7;
}

.story-paper strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
}

.story-doodle {
  position: absolute;
  right: 10%;
  bottom: 10%;
  font-family: var(--serif);
  font-size: 90px;
  transform: rotate(-12deg);
}

.story-copy {
  padding: 110px 9vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-copy h2 {
  max-width: 590px;
  margin-bottom: 36px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 0 20px;
  color: #4f4747;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.72;
}

.signature {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.details-section {
  width: min(100%, var(--max));
  margin: auto;
  padding: 130px 40px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.details-intro {
  position: sticky;
  top: 150px;
  height: fit-content;
}

.detail-list {
  border-top: 1px solid var(--ink);
}

.detail-list article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 55px 1fr 1.2fr;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.detail-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.faq-section {
  padding: 130px max(40px, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 9vw;
  background: var(--white);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary,
.product-accordions summary {
  position: relative;
  padding: 26px 46px 26px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 20px;
}

.faq-list summary::-webkit-details-marker,
.product-accordions summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after,
.product-accordions summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after,
.product-accordions details[open] summary::after {
  content: "−";
}

.faq-list details p,
.product-accordions details p {
  max-width: 650px;
  margin: -6px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.closing-cta {
  position: relative;
  min-height: 570px;
  padding: 100px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.closing-cta::before,
.closing-cta::after {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.closing-cta::before {
  top: -160px;
  left: -80px;
}

.closing-cta::after {
  right: -100px;
  bottom: -180px;
}

.closing-cta h2 {
  margin-bottom: 42px;
  font-size: clamp(58px, 7vw, 105px);
}

.closing-cta h2 em {
  color: #aa6a77;
  font-weight: 400;
}

.closing-mark {
  position: absolute;
  right: 12%;
  bottom: 18%;
  font-family: var(--serif);
  font-size: 80px;
  transform: rotate(18deg);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
}

.footer-main {
  width: min(100%, var(--max));
  margin: auto;
  padding: 80px 40px 70px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr;
  gap: 60px;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 12px;
}

.footer-main a:hover {
  color: var(--blush);
}

.footer-brand img {
  width: 145px;
  height: auto;
  padding: 8px;
  background: white;
}

.footer-brand > p {
  max-width: 280px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 18px;
}

.footer-label {
  margin: 0 0 12px;
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-note > p:last-child {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.65;
}

.footer-bottom {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quantity {
  height: 34px;
  display: inline-grid;
  grid-template-columns: 34px 32px 34px;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity button {
  height: 100%;
}

.quantity span {
  display: grid;
  place-items: center;
  font-size: 12px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 28px;
  visibility: hidden;
  background: var(--blush);
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    visibility 250ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu nav {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(30, 28, 27, 0.18);
  font-family: var(--serif);
  font-size: clamp(38px, 10vw, 60px);
}

.mobile-menu nav a span {
  margin-right: 16px;
  font-family: var(--sans);
  font-size: 10px;
  vertical-align: top;
}

/* Product detail */
.breadcrumbs {
  width: min(100%, var(--max));
  margin: auto;
  padding: 24px 40px;
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.product-detail {
  width: min(100%, var(--max));
  margin: auto;
  padding: 26px 40px 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  gap: 7vw;
}

.detail-main-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eae4db;
}

.detail-main-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumbnails {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.thumbnail {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid transparent;
  background: #eee9e0;
}

.thumbnail.active {
  border-color: var(--ink);
}

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

.detail-placeholder {
  display: grid;
  place-items: center;
  color: #8a827c;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  text-align: center;
}

.accent-blush .detail-placeholder:nth-child(2) {
  background: var(--blush);
}

.accent-peach .detail-placeholder:nth-child(2) {
  background: var(--peach);
}

.accent-blue .detail-placeholder:nth-child(2) {
  background: var(--blue);
}

.product-detail-copy {
  padding-top: 36px;
}

.product-detail-copy h1 {
  max-width: 540px;
  font-size: clamp(58px, 5.5vw, 88px);
}

.product-quote {
  max-width: 510px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
}

.detail-price {
  font-family: var(--serif);
  font-size: 27px;
}

.tax-note {
  margin: 3px 0 28px;
  color: var(--muted);
  font-size: 10px;
}

.product-specs {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-specs > div {
  min-height: 72px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
}

.product-specs span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-specs strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}


.shipping-note {
  margin: 28px 0 10px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: rgba(255, 255, 255, 0.62);
}

.shipping-note > span {
  font-family: var(--serif);
  font-size: 20px;
}

.shipping-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
}

.shipping-note small {
  margin-top: 3px;
  display: block;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
}

.product-accordions {
  margin-top: 28px;
  border-top: 1px solid var(--ink);
}

.product-accordions details {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  padding: 20px 40px 20px 0;
  font-size: 16px;
}

.product-accordions details p {
  font-size: 13px;
}

.detail-story {
  padding: 130px 30px;
  background: var(--blush);
  text-align: center;
}

.detail-story h2 {
  max-width: 960px;
  margin: auto;
}

.detail-story > p:last-child {
  max-width: 590px;
  margin: 34px auto 0;
  color: #51494a;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
}

.related-products .section-heading {
  grid-template-columns: 1fr;
}

.not-found {
  min-height: 70vh;
  padding: 100px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(64px, 8vw, 110px);
}

.not-found > p:not(.eyebrow) {
  margin: 20px 0 34px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 680px;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 20px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .product-card-copy {
    padding: 24px 20px 20px;
  }

  .story-copy {
    padding: 90px 7vw;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.8fr 0.9fr;
  }

  .footer-note {
    grid-column: 2 / -1;
  }

  .product-detail {
    gap: 4vw;
  }
}

@media (max-width: 820px) {
  .announcement {
    min-height: 28px;
    font-size: 8px;
  }

  .announcement span:nth-child(2),
  .announcement span:nth-child(3) {
    display: none;
  }

  .header-inner {
    height: 70px;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 104px;
    height: 56px;
  }

  .brand img {
    width: 98px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .cart-button > span:first-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero h1 {
    order: 2;
    font-size: clamp(58px, 17vw, 86px);
  }

  .hero h1 em {
    margin-left: 0.2em;
  }

  .hero-lead {
    order: 3;
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-visual {
    min-height: 440px;
    margin: 28px -4px 0;
    order: 4;
  }

  .hero-shape {
    right: -22%;
    width: 92%;
  }

  .hero-card {
    border-width: 6px;
  }

  .hero-card-back {
    right: 2%;
    width: 50%;
  }

  .hero-card-middle {
    top: 23%;
    left: 3%;
    width: 48%;
  }

  .hero-card-front {
    right: 11%;
    width: 55%;
  }

  .hero-stamp {
    right: -4px;
    width: 76px;
    height: 76px;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 36px;
    flex-wrap: wrap;
    order: 5;
  }

  .hero-note {
    display: none;
  }

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

  .benefits > div {
    min-height: 98px;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits > div:last-child {
    border-bottom: 0;
  }

  .products-section,
  .related-products {
    padding: 90px 20px;
  }

  .section-heading {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading h2,
  .story-copy h2,
  .details-intro h2,
  .faq-section h2,
  .detail-story h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .section-heading > p {
    font-size: 16px;
  }

  .product-grid,
  .product-grid-two {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-card-copy {
    min-height: 240px;
  }

  .product-view {
    display: none;
  }

  .story-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid rgba(30, 28, 27, 0.12);
  }

  .story-paper {
    width: min(68%, 370px);
  }

  .story-copy {
    padding: 80px 24px 90px;
  }

  .details-section {
    padding: 90px 20px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .details-intro {
    position: static;
  }

  .detail-list article {
    min-height: 170px;
    padding: 24px 0;
    grid-template-columns: 40px 1fr;
    align-content: center;
  }

  .detail-list p {
    grid-column: 2;
  }

  .faq-section {
    padding: 90px 20px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .closing-cta {
    min-height: 500px;
  }

  .closing-cta h2 {
    font-size: clamp(52px, 15vw, 82px);
  }

  .closing-mark {
    display: none;
  }

  .footer-main {
    padding: 64px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 50px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-note {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
  }

  .breadcrumbs {
    padding: 18px 20px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-detail {
    padding: 10px 20px 80px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-detail-copy {
    padding-top: 0;
  }

  .product-detail-copy h1 {
    font-size: clamp(58px, 16vw, 84px);
  }

  .detail-story {
    padding: 90px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 60px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-card-copy {
    min-height: 224px;
  }

  .story-visual {
    min-height: 460px;
  }

  .story-paper {
    padding: 38px 30px;
  }

  .story-paper > span {
    font-size: 45px;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .variant-option {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    padding-right: 12px;
    padding-left: 12px;
  }

  .variant-swatch {
    width: 34px;
    height: 34px;
  }

  .selected-variant-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .selected-variant-summary > div:last-child {
    justify-items: start;
    text-align: left;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-actions .detail-quantity {
    width: 112px;
    grid-row: auto;
  }

  .product-actions .button-light {
    grid-column: auto;
  }

  .drawer-header,
  .drawer-body,
  .drawer-footer {
    padding-right: 22px;
    padding-left: 22px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   WordPress in WooCommerce
   ========================================================================== */

/* Sekcije so polne širine; WordPress med bloke privzeto doda razmik. */
.wp-site-blocks > *,
.site-main > * {
  margin-block: 0;
}

/* Lepljiva glava: sticky mora biti na ovoju dela predloge, ne na notranjem elementu. */
header.wp-block-template-part {
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 40;
}

.site-header {
  position: relative;
}

body.admin-bar .mobile-menu {
  top: var(--wp-admin--admin-bar--height, 0px);
}

.card-price,
.card-price .amount {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.card-price del {
  margin-right: 6px;
  color: var(--muted);
  font-size: 14px;
}

.card-price ins {
  text-decoration: none;
}

.empty-products {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
}

.shop-archive .section-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

/* Košarica v glavi (WooCommerce Mini-Cart) */
.header-cart .wc-block-mini-cart__button {
  padding: 6px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.header-cart .wc-block-mini-cart__badge {
  background: var(--ink);
  color: #fff;
  border-color: var(--paper);
}

.wc-block-mini-cart__drawer .wc-block-components-drawer__content,
.wc-block-mini-cart__drawer {
  background: var(--paper);
  font-family: var(--sans);
}

.wc-block-mini-cart__title,
.wc-block-components-product-name {
  font-family: var(--serif);
  font-weight: 400;
}

/* Stran izdelka */
.detail-price,
.detail-price .amount {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.thumbnail {
  padding: 0;
  cursor: pointer;
}

.detail-thumbnails {
  grid-template-columns: repeat(4, 1fr);
}

.purchase-panel form.cart {
  margin: 0;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
}

.purchase-panel .quantity {
  height: 52px;
  display: block;
  border: 0;
}

.purchase-panel .quantity input.qty {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-size: 14px;
  text-align: center;
}

.purchase-panel .single_add_to_cart_button,
.purchase-panel .single_add_to_cart_button.button.alt {
  min-height: 52px;
  width: 100%;
  padding: 0 26px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.purchase-panel .single_add_to_cart_button:hover {
  background: #3b3734;
  transform: translateY(-2px);
}

.purchase-panel form.cart > :not(.quantity):not(.single_add_to_cart_button) {
  grid-column: 1 / -1;
}

.purchase-panel .stock {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.purchase-panel .stock.out-of-stock {
  color: #9b3d3d;
}

.accordion-body {
  max-width: 650px;
  margin: -6px 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.accordion-body p {
  margin: 0 0 12px;
}

.accordion-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Obvestila WooCommerce (npr. "dodano v košarico") */
.product-page > .woocommerce-notices-wrapper,
.shop-archive > .woocommerce-notices-wrapper {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px 40px 0;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

.wc-block-components-notice-banner,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0 0 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
}

.wc-block-components-notice-banner .button,
.woocommerce-message .button {
  float: right;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: none;
  color: var(--ink);
  font-size: 11px;
}

/* Navadne strani, košarica in blagajna */
.page-shell {
  padding-block: 64px 110px;
}

.page-shell .page-title {
  margin: 0 0 40px;
  font-size: clamp(44px, 5vw, 76px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.page-shell .wp-block-post-content {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
}

.page-shell .wp-block-post-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-shell-wide .wp-block-post-content {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
}

.wc-block-components-title,
.wc-block-cart__totals-title,
.wc-block-components-checkout-step__title {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: none;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-textarea {
  border-radius: 0;
}

.wc-block-components-button:not(.is-link) {
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-dark,
.button-dark:visited {
  color: #fff;
}

@media (max-width: 820px) {
  .product-page > .woocommerce-notices-wrapper,
  .shop-archive > .woocommerce-notices-wrapper {
    padding: 14px 20px 0;
  }

  .page-shell {
    padding-block: 44px 80px;
  }
}

@media (max-width: 480px) {
  .purchase-panel form.cart {
    grid-template-columns: 96px 1fr;
  }
}

/* Naslovnica z dvema koledarjema */
.hero-visual-2 .hero-card-back {
  top: 6%;
  right: 6%;
  width: 52%;
}

.hero-visual-2 .hero-card-front {
  right: auto;
  bottom: 2%;
  left: 8%;
  width: 56%;
  transform: rotate(-4deg);
}

.hero-visual-2:hover .hero-card-front {
  transform: rotate(-5deg) translateY(-6px);
}

@media (max-width: 820px) {
  .hero-visual-2 .hero-card-back {
    right: 2%;
    width: 54%;
  }

  .hero-visual-2 .hero-card-front {
    left: 3%;
    width: 60%;
  }
}

/* Dostopnost */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.site-footer a:focus-visible {
  outline-color: #fff;
}

/* Podatki podjetja v nogi */
.footer-company {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 40px 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-style: normal;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .footer-company {
    padding: 0 24px 22px;
  }
}

/* Pasica za piškotke */
.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 150;
  margin: 0 auto;
  max-width: 1080px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(30, 28, 27, 0.18);
}

.cookie-inner {
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px 32px;
}

.cookie-title {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 20px;
}

.cookie-copy > p:not(.cookie-title) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.cookie-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  border: 0;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.cookie-option strong {
  margin-right: 6px;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button {
  min-height: 44px;
  min-width: 132px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-button:hover {
  background: #3b3734;
}

.cookie-link {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

@media (max-width: 820px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-inner {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-button {
    flex: 1 1 130px;
  }
}

/* Naslovnica z enim koledarjem */
.hero-visual-1 .hero-shape {
  right: -6%;
}

.hero-visual-1 .hero-card-front {
  top: 8%;
  right: 14%;
  bottom: auto;
  width: 66%;
  transform: rotate(-3deg);
}

.hero-visual-1:hover .hero-card-front {
  transform: rotate(-4deg) translateY(-6px);
}

.hero-visual-1 .hero-stamp {
  right: 4%;
}

@media (max-width: 820px) {
  .hero-visual-1 .hero-card-front {
    top: 4%;
    right: 12%;
    width: 72%;
  }
}

/* Oznaka osnutka (vidi samo skrbnik) */
.product-draft {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 6px 10px;
  background: #b32d2e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Košarica in blagajna: širina kot ostala stran, povzetek se lepi pod glavo */
.page-shell-wide .wp-block-woocommerce-checkout,
.page-shell-wide .wp-block-woocommerce-cart {
  width: min(100%, 1280px);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}

.wc-block-checkout__sidebar.is-sticky,
.wc-block-cart__sidebar.is-sticky,
.wc-block-components-sidebar.is-sticky {
  top: calc(var(--wp-admin--admin-bar--height, 0px) + 88px + 24px);
}

@media (max-width: 820px) {
  .page-shell-wide .wp-block-woocommerce-checkout,
  .page-shell-wide .wp-block-woocommerce-cart {
    padding-inline: 0;
  }

  .wc-block-checkout__sidebar.is-sticky,
  .wc-block-cart__sidebar.is-sticky,
  .wc-block-components-sidebar.is-sticky {
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 70px + 16px);
  }
}

/* Meni na računalniku: večja pisava, sorazmerna z logotipom */
.desktop-nav {
  gap: 48px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.header-cart .wc-block-mini-cart__button {
  font-size: 15px;
}

/* En sam izdelek: vodoravna kartica na računalniku */
.product-grid-one {
  display: block;
}

.product-grid-one .product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  background: var(--white);
}

.product-grid-one .product-card-copy {
  min-height: 0;
  padding: 64px 7%;
  justify-content: center;
  gap: 40px;
}

.product-grid-one .product-card h3 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1;
}

.product-grid-one .product-card-copy > div > p:last-child {
  max-width: 440px;
  font-size: 19px;
}

.product-grid-one .product-card-bottom {
  margin-top: 0;
  padding-top: 24px;
}

.product-grid-one .card-price,
.product-grid-one .card-price .amount {
  font-size: 26px;
}

.product-grid-one .round-add {
  width: 56px;
  height: 56px;
  font-size: 26px;
}

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

  .product-grid-one .product-card-copy {
    min-height: 240px;
    padding: 28px 22px 24px;
    gap: 0;
  }

  .product-grid-one .product-card h3 {
    margin-bottom: 13px;
    font-size: 29px;
  }

  .product-grid-one .product-card-copy > div > p:last-child {
    font-size: 15px;
  }

  .product-grid-one .product-card-bottom {
    margin-top: 28px;
    padding-top: 18px;
  }

  .product-grid-one .card-price,
  .product-grid-one .card-price .amount {
    font-size: 18px;
  }

  .product-grid-one .round-add {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}

/* ==========================================================================
   Razmiki med sekcijami: ~30 % manjši (0.5.8)
   ========================================================================== */
.hero {
  min-height: 620px;
  padding-top: 52px;
  padding-bottom: 60px;
}

.benefits > div {
  min-height: 100px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.products-section,
.related-products {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-heading {
  margin-bottom: 44px;
}

.story-section {
  min-height: 560px;
}

.story-copy {
  padding-top: 78px;
  padding-bottom: 78px;
}

.details-section,
.faq-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.closing-cta {
  min-height: 400px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.product-detail {
  padding-bottom: 78px;
}

.detail-story {
  padding-top: 90px;
  padding-bottom: 90px;
}

.footer-main {
  padding-top: 56px;
  padding-bottom: 50px;
}

.page-shell {
  padding-block: 45px 78px;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 560px;
  }

  .story-copy {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .products-section,
  .related-products,
  .details-section,
  .faq-section,
  .detail-story {
    padding-top: 63px;
    padding-bottom: 63px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .story-visual {
    min-height: 420px;
  }

  .story-copy {
    padding-top: 56px;
    padding-bottom: 63px;
  }

  .closing-cta {
    min-height: 350px;
  }

  .product-detail {
    padding-bottom: 56px;
  }

  .footer-main {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .page-shell {
    padding-block: 31px 56px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 42px;
  }

  .story-visual {
    min-height: 340px;
  }
}
