:root {
  --site-header-height: 80px;
  --anchor-gap: 18px;
  --bg: #f4ecdf;
  --bg-soft: #fbf5ee;
  --surface: rgba(255, 250, 244, 0.72);
  --surface-strong: #fffaf4;
  --surface-muted: #f5ede2;
  --text: #2f241b;
  --muted: #68584b;
  --line: rgba(90, 63, 42, 0.15);
  --accent: #b8613f;
  --accent-button: #a45133;
  --accent-strong: #934224;
  --accent-soft: #efc7a1;
  --sage: #7f8760;
  --gold: #8c6022;
  --shadow-soft: 0 18px 40px rgba(89, 61, 39, 0.08);
  --shadow-strong: 0 28px 70px rgba(89, 61, 39, 0.16);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;
  --font-script: "Allura", cursive;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) + var(--anchor-gap));
}

section[id] {
  scroll-margin-top: calc(var(--site-header-height) + var(--anchor-gap));
}

/* U modernim pregledačima scroll padding već obezbeđuje ceo razmak. */
@supports (scroll-padding-top: 1px) {
  section[id] {
    scroll-margin-top: 0;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(239, 199, 161, 0.55), transparent 28%),
    radial-gradient(circle at right 20%, rgba(127, 135, 96, 0.12), transparent 25%),
    linear-gradient(180deg, #f8f1e5 0%, #f4ecdf 38%, #f8f3eb 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
  z-index: -1;
}

body::before {
  top: 6rem;
  right: -8rem;
  background: rgba(211, 170, 99, 0.12);
}

body::after {
  bottom: -6rem;
  left: -8rem;
  background: rgba(184, 97, 63, 0.08);
}

body.no-scroll {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.announcement-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.55);
  backdrop-filter: blur(10px);
}

.announcement-bar p {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.8rem 0;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 241, 229, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(90, 63, 42, 0.08);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-grid;
  gap: 0.1rem;
  text-decoration: none;
}

.brand-mark {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--font-script);
  font-size: clamp(2.45rem, 4vw, 3.1rem);
  line-height: 0.8;
  color: var(--accent-strong);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent-strong);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn,
.product-cta,
.text-link {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-cta,
.btn,
.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.nav-cta {
  padding: 0.7rem 1.2rem;
  color: var(--surface-strong);
  background: linear-gradient(135deg, var(--accent-button) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 30px rgba(184, 97, 63, 0.26);
}

.nav-cta:hover,
.btn:hover,
.product-cta:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.88);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.23rem 0;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 4.8rem 0 3.4rem;
}

.hero-copy h1,
.section-heading h2,
.story-card h2,
.video-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.hero-copy h1 {
  --hero-enter-distance: 14px;

  margin: 0.9rem 0 1rem;
  font-size: clamp(3.25rem, 6vw, 5.9rem);
  max-width: 12ch;
  opacity: 1;
  transform: none;
}

.hero-text,
.section-intro,
.story-card p,
.video-text p,
.contact-card p,
.order-step p,
.collection-card p,
.value-card p {
  color: var(--muted);
}

.hero-text {
  --hero-enter-distance: 10px;

  max-width: 38rem;
  margin: 0;
  font-size: 1.08rem;
  opacity: 1;
  transform: none;
}

.hero-actions {
  --hero-enter-distance: 8px;

  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
  opacity: 1;
  transform: none;
}

.btn {
  padding: 0.8rem 1.35rem;
}

.btn-primary {
  color: var(--surface-strong);
  background: linear-gradient(135deg, var(--accent-button) 0%, var(--accent-strong) 100%);
  box-shadow: 0 16px 30px rgba(184, 97, 63, 0.24);
}

.btn-secondary {
  color: var(--accent-strong);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(184, 97, 63, 0.18);
}

.btn-primary:hover,
.nav-cta:hover {
  box-shadow: 0 20px 38px rgba(184, 97, 63, 0.3);
}

.btn-secondary:hover,
.product-cta:hover {
  background: rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow-soft);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(147, 66, 36, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.7);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.stat-card,
.value-card,
.collection-card,
.story-card,
.order-step,
.contact-card,
.video-wrapper,
.story-photo {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 1.1rem 1rem;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent-strong);
  font-size: 1.25rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 8% 8%;
  border-radius: 38px;
  background:
    linear-gradient(140deg, rgba(239, 199, 161, 0.75), rgba(255, 250, 244, 0.28)),
    linear-gradient(320deg, rgba(127, 135, 96, 0.14), transparent 55%);
  transform: rotate(-7deg);
  box-shadow: var(--shadow-strong);
}

.hero-photo-frame {
  position: relative;
  width: min(100%, 29rem);
  border-radius: 2.25rem;
  overflow: hidden;
  opacity: 1;
  transform: none;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.94), rgba(238, 222, 190, 0.82)),
    var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 34px 74px rgba(80, 54, 34, 0.22);
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: 1;
  transform: none;
}

html.js.is-hero-image-pending .hero-photo {
  opacity: 0;
}

.hero-note {
  position: absolute;
  z-index: 1;
  opacity: 1;
  transform: none;
  max-width: 16rem;
  padding: 1.05rem 1.1rem;
  border-radius: 1.4rem;
  background: var(--surface-strong);
  border: 1px solid rgba(147, 66, 36, 0.14);
  box-shadow: var(--shadow-soft);
}

.hero-note-top {
  --hero-enter-distance: 4px;

  top: 2rem;
  right: -0.25rem;
}

.hero-note-bottom {
  bottom: 1.5rem;
  left: -0.75rem;
}

.note-label,
.product-kicker,
.contact-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note p,
.value-card p,
.collection-card p,
.contact-card p {
  margin: 0;
}

@keyframes hero-enter-up {
  from {
    opacity: 0;
    transform: translateY(var(--hero-enter-distance));
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-enter-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-decor-drift {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }

  37% {
    transform: translate(2px, -1px) rotate(-7deg);
  }

  72% {
    transform: translate(-1px, 2px) rotate(-7deg);
  }

  100% {
    transform: translate(1px, 0) rotate(-7deg);
  }
}

@keyframes hero-decor-drift-mobile {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }

  37% {
    transform: translate(1px, -1px) rotate(-7deg);
  }

  72% {
    transform: translate(-1px, 1px) rotate(-7deg);
  }

  100% {
    transform: translate(1px, 0) rotate(-7deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visual::before {
    animation: hero-decor-drift 15s cubic-bezier(0.45, 0, 0.55, 1) 1.6s infinite alternate both;
  }
}

html.is-hero-entering .hero-copy h1 {
  animation: hero-enter-up 650ms cubic-bezier(0.22, 1, 0.36, 1) 0ms 1 backwards;
}

html.is-hero-entering .hero-text {
  animation: hero-enter-up 650ms cubic-bezier(0.22, 1, 0.36, 1) 100ms 1 backwards;
}

html.is-hero-entering .hero-actions {
  animation: hero-enter-up 620ms cubic-bezier(0.22, 1, 0.36, 1) 180ms 1 backwards;
}

.hero-photo.is-image-entering {
  animation: hero-enter-fade 700ms cubic-bezier(0.22, 1, 0.36, 1) 0ms 1 backwards;
}

html.is-hero-entering .hero-note-top {
  animation: hero-enter-up 600ms cubic-bezier(0.22, 1, 0.36, 1) 350ms 1 backwards;
}

html.is-hero-entering .hero-note-bottom {
  animation: hero-enter-fade 600ms cubic-bezier(0.22, 1, 0.36, 1) 450ms 1 backwards;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding-bottom: 1rem;
}

.value-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.value-index {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.value-card h2,
.collection-card h3,
.product-info h3,
.process-list h3,
.order-step h3,
.contact-card h3 {
  margin: 0 0 0.45rem;
}

.value-card h2,
.section-heading h2,
.story-card h2,
.video-text h2,
.product-info h3,
.process-list h3,
.order-step h3,
.contact-card h3 {
  font-family: var(--font-display);
}

.value-card h2 {
  font-size: 2rem;
  line-height: 0.95;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-heading h2 {
  margin: 0.75rem 0 0.8rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  max-width: 11ch;
}

.section-intro {
  max-width: 42rem;
  margin: 0;
}

.section-badge {
  max-width: 20rem;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(147, 66, 36, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 250, 244, 0.68);
  color: var(--muted);
  font-size: 0.95rem;
}

.products {
  padding-top: 4rem;
}

.collection-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.collection-card {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-md);
}

.collection-card h3 {
  font-size: 1.45rem;
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.85rem;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 48%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(184, 97, 63, 0.18);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card--premium {
  border: 1px solid rgba(181, 139, 73, 0.35);
  background: linear-gradient(
    145deg,
    rgba(255, 250, 244, 0.9),
    rgba(238, 222, 190, 0.48)
  );
  box-shadow: 0 20px 44px rgba(112, 79, 38, 0.12);
}

.product-card--premium:hover {
  border-color: rgba(181, 139, 73, 0.52);
  box-shadow: 0 28px 64px rgba(112, 79, 38, 0.18);
}

.product-premium-badge {
  position: absolute;
  top: 1.65rem;
  right: 1.65rem;
  z-index: 2;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(128, 88, 36, 0.24);
  border-radius: 999px;
  background: rgba(248, 237, 216, 0.94);
  box-shadow: 0 8px 20px rgba(90, 63, 42, 0.12);
  color: #6f4d22;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.product-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.78), rgba(244, 236, 223, 0.92)),
    linear-gradient(135deg, rgba(239, 199, 161, 0.28), transparent);
  aspect-ratio: 4 / 4.35;
  cursor: zoom-in;
}

.product-image::after {
  content: "Klik za galeriju";
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 36, 27, 0.66);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 220ms ease, transform 500ms ease;
}

.product-card:hover .product-image img,
.product-image:focus-visible img {
  transform: scale(1.06);
}

.product-image:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible,
.nav-cta:focus-visible,
.product-cta:focus-visible,
.product-gallery-trigger:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.product-info {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-size: 2rem;
  line-height: 0.95;
}

.product-info p {
  margin: 0;
  color: var(--muted);
}

.product-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1rem;
}

.price {
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 800;
}

.product-cta {
  padding: 0.72rem 1.05rem;
  color: var(--accent-strong);
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(147, 66, 36, 0.14);
}

.product-card--custom-order {
  display: grid;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  max-width: 60rem;
  margin-top: 0.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.68);
  box-shadow: 0 14px 34px rgba(89, 61, 39, 0.07);
}

.product-card--custom-order::before {
  inset: 1.25rem auto 1.25rem 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: var(--accent-soft);
  opacity: 1;
}

.product-card--custom-order:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.custom-order-card__visual {
  position: relative;
  align-self: center;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(147, 66, 36, 0.12);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.custom-order-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card--custom-order .custom-order-card__visual::after {
  content: none;
}

.product-card--custom-order:hover .custom-order-card__visual img,
.custom-order-card__visual:focus-visible img {
  transform: none;
}

.custom-order-card__content {
  justify-content: center;
  min-width: 0;
  padding: clamp(0.35rem, 1.5vw, 1rem) clamp(0.25rem, 1vw, 0.75rem);
}

.custom-order-card__content .product-kicker {
  margin-bottom: 0.55rem;
}

.custom-order-card__content h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
}

.custom-order-card__content > p:not(.product-kicker) {
  max-width: 36rem;
  font-size: 1.02rem;
}

.custom-order-card__bottom {
  align-items: center;
  margin-top: 1.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(147, 66, 36, 0.14);
}

.custom-order-card__bottom .price {
  font-size: 1.08rem;
}

.custom-order-card__bottom .product-cta {
  min-height: 3rem;
  padding-inline: 1.3rem;
  border-color: transparent;
  background: var(--accent-strong);
  color: var(--surface-strong);
  box-shadow: 0 10px 24px rgba(184, 97, 63, 0.18);
}

.custom-order-card__bottom .product-cta:hover {
  background: var(--accent-strong);
  box-shadow: 0 14px 28px rgba(184, 97, 63, 0.22);
}

.gift-arrangements {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.5), rgba(245, 226, 216, 0.58)),
    var(--bg-soft);
}

.gift-arrangements::before,
.gift-arrangements::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.gift-arrangements::before {
  top: -12rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 97, 63, 0.15), transparent 68%);
}

.gift-arrangements::after {
  bottom: -13rem;
  left: -9rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(127, 135, 96, 0.14);
  border-radius: 46% 54% 58% 42%;
  transform: rotate(24deg);
}

.gift-arrangements__inner {
  max-width: 1120px;
}

.gift-arrangements__heading {
  max-width: 52rem;
  margin-bottom: 2.4rem;
}

.gift-arrangements__heading h2 {
  margin: 0.7rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.97;
}

.gift-arrangements__heading h2 span {
  white-space: nowrap;
}

.gift-arrangements__heading > p:last-child {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.gift-arrangement {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.82fr);
  align-items: center;
  gap: clamp(2.25rem, 5vw, 4.6rem);
  padding: clamp(1.15rem, 2.4vw, 2rem);
  border-radius: clamp(1.8rem, 3vw, 2.6rem);
  overflow: hidden;
}

.gift-arrangement::before {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.5), transparent 44%),
    linear-gradient(315deg, rgba(239, 199, 161, 0.16), transparent 48%);
  opacity: 1;
}

.gift-arrangement:hover {
  transform: translateY(-3px);
}

.gift-arrangement__visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: 0.45rem;
}

.gift-arrangement__visual::before {
  content: "";
  position: absolute;
  inset: 1.25rem -0.4rem -0.4rem 1.1rem;
  z-index: -1;
  border: 1px solid rgba(147, 66, 36, 0.14);
  border-radius: 2rem;
  background: rgba(239, 199, 161, 0.24);
  transform: rotate(2deg);
}

.gift-arrangement__visual::after {
  content: "";
  position: absolute;
  top: -0.15rem;
  left: -0.15rem;
  width: 5.5rem;
  height: 5.5rem;
  border-top: 1px solid rgba(127, 135, 96, 0.42);
  border-left: 1px solid rgba(127, 135, 96, 0.42);
  border-radius: 1.8rem 0 0;
  pointer-events: none;
}

.gift-arrangement__image {
  z-index: 1;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 1.9rem;
  box-shadow: 0 28px 58px rgba(80, 54, 34, 0.2);
}

.gift-arrangement__image::after {
  content: "Pogledaj galeriju";
}

.gift-arrangement:hover .gift-arrangement__image img,
.gift-arrangement__image:focus-visible img {
  transform: scale(1.025);
}

.gift-arrangement__content {
  min-width: 0;
  padding: 1rem 1rem 1rem 0;
}

.gift-arrangement .product-premium-badge {
  position: static;
  align-self: flex-start;
  margin-bottom: 1.35rem;
}

.gift-arrangement .product-kicker {
  margin: 0 0 0.55rem;
}

.gift-arrangement .product-info h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(3.1rem, 5vw, 4.7rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.gift-arrangement .product-info > p:not(.product-kicker) {
  max-width: 34rem;
  font-size: 1.02rem;
}

.gift-arrangement .price {
  display: block;
  width: 100%;
  margin-top: 1.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(147, 66, 36, 0.14);
  font-size: 1.3rem;
}

.gift-arrangement__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.gift-arrangement__actions .btn,
.gift-arrangement__actions .product-cta {
  min-height: 3rem;
  padding-inline: 1.3rem;
}

.product-gallery-trigger {
  border: 0;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-grid > .product-card:last-child:nth-child(4n + 1) {
    grid-column: 2 / span 2;
    justify-self: center;
    width: calc(50% - 0.75rem);
  }
}

@media (min-width: 861px) and (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid > .product-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

@media (min-width: 701px) and (max-width: 860px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid > .product-card:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 0.75rem);
  }
}

.product-grid > .product-card.product-card--custom-order:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 60rem);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.story-card {
  padding: 1.9rem;
  border-radius: var(--radius-lg);
}

.story-card h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  max-width: 12ch;
}

.story-card p {
  margin: 0.75rem 0 0;
}

.signature {
  margin-top: 1.35rem;
  color: var(--accent);
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 0.9;
}

.story-side {
  display: grid;
  gap: 1.5rem;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.process-list h3 {
  font-size: 1.6rem;
  line-height: 1;
}

.process-list p {
  margin: 0.2rem 0 0;
}

.process-number {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(255, 250, 244, 0.94));
  color: var(--accent-strong);
  font-weight: 800;
}

.story-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 21rem;
  object-fit: cover;
  opacity: 1;
  transition: opacity 220ms ease;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
}

.video-text h2 {
  margin: 0.75rem 0 0.9rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
  max-width: 10ch;
}

.video-text p {
  margin: 0;
}

.video-wrapper {
  padding: 1rem;
  border-radius: 2rem;
  position: relative;
}

.video-wrapper::before {
  content: "";
  position: absolute;
  inset: auto auto -1.2rem -1.2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(239, 199, 161, 0.42), rgba(211, 170, 99, 0.12));
  z-index: -1;
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  overflow: hidden;
}

.contact .section-heading h2 {
  max-width: 11ch;
}

.order-steps,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.order-steps {
  margin-bottom: 1.5rem;
}

.order-step,
.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.order-step span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.order-step h3 {
  font-size: 1.75rem;
  line-height: 0.95;
}

.contact-card h3 {
  font-size: 1.8rem;
  line-height: 0.95;
}

.phone-number,
.text-link {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
  font-weight: 800;
}

.phone-number {
  margin-top: 0.5rem;
  color: var(--accent-strong);
  font-size: 1.1rem;
}

.text-link {
  margin-top: 0.7rem;
  color: var(--accent-strong);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.55);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(27, 18, 11, 0.82);
  backdrop-filter: blur(12px);
  z-index: 2000;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  position: relative;
  margin: 0;
  max-width: min(92vw, 960px);
  touch-action: pan-y pinch-zoom;
}

.lightbox img {
  display: block;
  max-width: min(92vw, 960px);
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 1.6rem;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.34);
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  color: #f8ede0;
  font-size: 0.96rem;
}

.lightbox-meta p {
  margin: 0;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.lightbox-nav.prev {
  left: 1.2rem;
}

.lightbox-nav.next {
  right: 1.2rem;
}

.lightbox .icon {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.lightbox .icon-arrow {
  width: 1.35rem;
  height: 1.35rem;
}

.lightbox-nav[aria-disabled="true"] {
  opacity: 0.58;
  cursor: wait;
}

.lightbox-status {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: calc(100% - 2rem);
  margin: 0;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(147, 66, 36, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 10px 24px rgba(47, 36, 27, 0.14);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -0.3rem);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.lightbox-status::before {
  content: "";
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(184, 97, 63, 0.14);
}

.lightbox-figure.has-image-error .lightbox-status {
  opacity: 1;
  transform: translate(-50%, 0);
}

.lightbox-figure.has-image-error .lightbox-status::before {
  background: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(211, 170, 99, 0.16);
}

.lightbox-figure.is-image-empty {
  width: min(92vw, 42rem);
  min-height: min(68vh, 30rem);
  border-radius: 1.6rem;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.94), rgba(238, 222, 190, 0.82)),
    var(--bg-soft);
}

.lightbox-figure.is-image-empty #lightboxImg {
  width: 100%;
  height: min(68vh, 30rem);
  opacity: 0;
  transform: none;
}

.hero-photo-frame.has-image-error .hero-photo,
.product-image.has-image-error img,
.story-photo.has-image-error img,
html.js .product-image.is-image-pending img,
html.js .story-photo.is-image-pending img {
  opacity: 0;
  transform: none;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-enabled [data-reveal="left"] {
  transform: translate3d(2rem, 0, 0);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1024px), (hover: none), (pointer: coarse) {
  .reveal-enabled [data-reveal="left"] {
    transform: translate3d(0, 2rem, 0);
  }
}

@media (max-width: 1024px) {
  .hero,
  .story-grid,
  .video-layout,
  .order-steps,
  .contact-grid,
  .value-strip,
  .collection-highlights {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2,
  .story-card h2,
  .video-text h2 {
    max-width: none;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-heading-row {
    flex-direction: column;
    align-items: start;
  }

  .section-badge {
    max-width: 32rem;
  }

  .gift-arrangement {
    gap: 2rem;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: rgba(255, 250, 244, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: start;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-visual {
    min-height: 28rem;
  }

  .hero-note-top {
    right: 0.5rem;
  }

  .hero-note-bottom {
    left: 0.5rem;
  }

  .gift-arrangement {
    grid-template-columns: 1fr;
    max-width: 48rem;
    margin-inline: auto;
  }

  .gift-arrangements__heading h2 {
    max-width: 16ch;
  }

  .gift-arrangement__visual {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .gift-arrangement__content {
    padding: 1rem;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 1.25rem, 1160px);
  }

  .section {
    padding: 4rem 0;
  }

  .announcement-bar {
    overflow: hidden;
  }

  .site-header.is-announcement-collapsed .announcement-bar {
    display: none;
  }

  .announcement-bar p {
    padding: 0.7rem 0;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero-copy h1 {
    --hero-enter-distance: 10px;

    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .hero-text {
    --hero-enter-distance: 7px;

    font-size: 1rem;
  }

  .hero-actions {
    --hero-enter-distance: 6px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-note {
    position: relative;
    max-width: none;
    margin-top: 1rem;
    inset: auto;
  }

  .hero-note-top {
    --hero-enter-distance: 3px;
  }

  .hero-visual {
    min-height: auto;
    display: block;
  }

  .hero-visual::before {
    inset: 5% 8% 16%;
  }

  .section-heading h2,
  .story-card h2,
  .video-text h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .gift-arrangements {
    padding-block: 3.75rem;
  }

  .gift-arrangements__heading {
    margin-bottom: 1.65rem;
  }

  .gift-arrangements__heading h2 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .gift-arrangements__heading > p:last-child {
    font-size: 0.98rem;
  }

  .gift-arrangement {
    gap: 1.4rem;
    padding: 0.8rem;
    border-radius: 1.8rem;
  }

  .gift-arrangement__visual {
    padding: 0.3rem;
  }

  .gift-arrangement__visual::before {
    inset: 0.9rem -0.2rem -0.25rem 0.7rem;
    border-radius: 1.55rem;
  }

  .gift-arrangement__visual::after {
    width: 4rem;
    height: 4rem;
  }

  .gift-arrangement__image {
    border-radius: 1.5rem;
  }

  .gift-arrangement__content {
    padding: 0.85rem 0.75rem 1rem;
  }

  .gift-arrangement .product-premium-badge {
    margin-bottom: 1.1rem;
  }

  .gift-arrangement .product-info h3 {
    font-size: clamp(2.75rem, 13vw, 3.65rem);
  }

  .gift-arrangement__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gift-arrangement__actions .btn,
  .gift-arrangement__actions .product-cta {
    width: 100%;
  }

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

  .product-card--custom-order {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 0.25rem;
    padding: 0.75rem;
  }

  .product-card--custom-order::before {
    inset: 0 auto auto 1.25rem;
    width: 3.5rem;
    height: 3px;
    border-radius: 0 0 999px 999px;
  }

  .custom-order-card__content {
    padding: 0.5rem 0.5rem 0.65rem;
  }

  .custom-order-card__content h3 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .custom-order-card__bottom {
    align-items: stretch;
    margin-top: 1.2rem;
  }

  .product-info h3,
  .value-card h2,
  .collection-card h3,
  .order-step h3,
  .contact-card h3,
  .process-list h3 {
    font-size: 1.65rem;
  }

  .story-card,
  .order-step,
  .contact-card,
  .value-card,
  .collection-card {
    padding: 1.35rem;
  }

  .product-bottom {
    flex-direction: column;
    align-items: start;
  }

  .product-cta {
    width: 100%;
  }

  .footer-inner,
  .lightbox-meta {
    flex-direction: column;
    align-items: start;
  }

  .lightbox {
    padding: 0.9rem;
  }

  .lightbox-close {
    top: 0.8rem;
    right: 0.8rem;
  }

  .lightbox-nav {
    width: 2.8rem;
    height: 2.8rem;
    bottom: 1rem;
    top: auto;
    transform: none;
  }

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

  .lightbox-nav.prev {
    left: 0.9rem;
  }

  .lightbox-nav.next {
    right: 0.9rem;
  }
}

@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
  .hero-visual::before {
    animation-name: hero-decor-drift-mobile;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-enabled [data-reveal],
  .reveal-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}
