/* ========== TOKENS ========== */
:root {
  --black: #0a0908;
  --ink: #111010;
  --ink-2: #1c1b1a;
  --ink-3: #252322;
  --choc: #333333;
  --choc-2: #aaaaaa;
  --choc-soft: #bbbbbb;
  --milk: #dddddd;
  --cream: #ffffff;
  --paper: #0d0c0b;
  --white: #ffffff;
  --line: rgba(255, 255, 255, .1);
  --line-dark: rgba(255, 255, 255, .09);
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, .7);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, .5);
  --radius: 6px;
  --gold: #c1a77e;
  --container: 1240px;
  --serif: "Inter", "Helvetica Neue", Arial, sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  /* Base layer */
}

body {
  font-family: var(--sans);
  background: transparent;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background: url('../img/manifesto-bg.png') no-repeat center center;
  background-size: cover;
  z-index: -2;
  opacity: 0.65;
  filter: brightness(0.8) contrast(1.1) blur(1px);
  animation: materialWaves 80s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 9, 8, 0.92), rgba(10, 9, 8, 0.5));
  z-index: -1;
  pointer-events: none;
}

@keyframes materialWaves {
  0% {
    transform: scale(1) translate(0, 0);
  }

  25% {
    transform: scale(1.1) translate(2%, 1%);
  }

  50% {
    transform: scale(1.2) translate(-1%, 2%);
  }

  75% {
    transform: scale(1.1) translate(-2%, -1%);
  }

  100% {
    transform: scale(1) translate(0, 0);
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease)
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--white);
  font-variant-numeric: lining-nums
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem)
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem)
}

h3 {
  font-size: 1.4rem
}

.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--choc-soft);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px
}

section {
  padding: clamp(40px, 5vw, 80px) 0
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
}

.btn-primary {
  background: var(--white);
  color: var(--black)
}

.btn-primary:hover {
  background: var(--milk);
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: var(--white)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white)
}

.btn-light {
  background: var(--cream);
  color: var(--black)
}

.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px)
}

.btn-ghost {
  color: var(--cream);
  border: 1px solid var(--line)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .08)
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(15, 15, 15, .6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: all .35s var(--ease);
}

.header.scrolled {
  background: rgba(15, 15, 15, .95);
  padding: 14px 0
}

.header .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LEFT */
.header-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px
}

/* CENTER */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 10;
}

.logo img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height .35s var(--ease);
}

.header.scrolled .logo img {
  height: 55px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--cream);
  font-size: .78rem;
  letter-spacing: .1em;
  font-weight: 600;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 2px;
  transition: color .25s var(--ease);
  user-select: none;
  height: 34px;
}

.lang-switcher:hover {
  color: var(--milk)
}

.lang-switcher svg {
  opacity: .7
}

.lang-divider {
  width: 1px;
  height: 16px;
  background: var(--line);
  margin: 0 8px
}

.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all .25s var(--ease);
}

.social-icon:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--milk)
}

.nav-socials {
  display: none;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: .04em;
  color: var(--cream)
}

/* RIGHT: nav */
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.nav {
  display: none;
  gap: 28px
}

.nav a {
  color: var(--cream);
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--milk);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1)
}

.menu-btn {
  display: flex;
  color: var(--cream);
  font-size: 1.6rem;
  height: 34px;
  width: 34px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  transition: transform .3s var(--ease)
}

.menu-btn:hover {
  transform: scale(1.1)
}

.nav.active {
  display: flex !important;
  flex-direction: column !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: var(--black) !important;
  z-index: 9999 !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 30px !important;
}

.nav.active .nav-socials {
  display: flex !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

.nav.active a {
  font-size: 1.5rem !important;
  color: var(--white) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}


/* Lang dropdown */
.lang-dropdown {
  position: relative
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(15, 15, 15, .97);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 0;
  min-width: 70px;
  z-index: 200;
}

.lang-dropdown-menu.open {
  display: block
}

.lang-dropdown-menu a {
  display: block;
  padding: 7px 14px;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--cream);
  text-transform: uppercase;
  font-weight: 600;
  transition: background .2s;
}

.lang-dropdown-menu a:hover {
  background: rgba(255, 255, 255, .08)
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(1.05);
  will-change: transform;
  animation: heroZoom 12s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  background: var(--black);
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(10, 8, 6, 0.05) 0%, rgba(10, 8, 6, 0.25) 60%, rgba(10, 8, 6, 0.45) 100%),
    linear-gradient(to bottom, rgba(10, 8, 6, 0.3) 0%, transparent 25%, transparent 75%, rgba(10, 8, 6, 0.45) 100%);
}

/* Corner brackets */
.hero-corner {
  position: absolute;
  z-index: 3
}

.hero-corner--tl {
  top: 28px;
  left: 28px
}

.hero-corner--tr {
  top: 28px;
  right: 28px
}

.hero-corner--bl {
  bottom: 28px;
  left: 28px
}

.hero-corner--br {
  bottom: 28px;
  right: 28px
}

/* Centered hero content */
.hero-inner--center {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
  margin: 0 auto;
}

/* Logo box */

.hero-logo-box {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  height: 220px;
  width: auto;
  mix-blend-mode: screen;
  image-rendering: -webkit-optimize-contrast;
}

.hero-logo-fallback {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.hero-logo-fallback span {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--milk);
}

/* Headline */
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 44px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-headline em {
  font-style: italic;
  text-transform: none;
  font-size: .62em;
  letter-spacing: .04em;
  color: var(--milk);
  display: block;
  margin-top: 6px;
}

/* CTA button */
.hero-cta-btn {
  background: var(--white);
  color: var(--black);
  padding: 17px 44px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .35s var(--ease);
  box-shadow: 0 8px 32px rgba(74, 49, 32, .45);
}

.hero-cta-btn:hover {
  background: var(--milk);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
  color: var(--black);
}

/* ========== MANIFESTO ========== */
/* Global Animated Wavy Background Wrapper */
.bg-animated-waves {
  position: relative;
  overflow-x: hidden;
  background: transparent !important;
  z-index: 1;
}

/* Overlay removed from here and moved to body::after for total seamlessness */

/* ========== MANIFESTO ========== */
.manifesto {
  padding: clamp(60px, 8vw, 100px) 0 30px;
}

.manifesto-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.manifesto-accent-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.manifesto-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  margin-bottom: 16px;
}

.manifesto-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: center;
}

.manifesto-decor-svg {
  width: 120px;
  margin-top: 20px;
}

.manifesto-block {
  max-width: 720px;
}

.manifesto-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #fff;
  /* Full white */
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.manifesto-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--milk);
  margin-bottom: 16px;
  display: block;
}

/* Stats Row */
.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.manifesto-stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.manifesto-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  /* Full white */
}

.manifesto-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.manifesto-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  padding: 12px 0;
  border-bottom: 1px solid #fff;
  /* Full white border */
  width: fit-content;
}

.manifesto-cta-btn:hover {
  color: var(--white);
  border-bottom-color: var(--white);
  gap: 24px;
}

@media (max-width: 960px) {
  .manifesto-centered {
    padding: 0 20px;
  }

  .manifesto-title {
    font-size: 2.2rem;
  }

  .manifesto-ornament {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
  }
}

/* ========== INTRO ========== */
.intro {
  background: transparent
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.intro-img {
  aspect-ratio: 4/5;
  background: var(--ink-3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

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

.intro-text p {
  margin-bottom: 1.2rem;
  color: var(--milk);
  opacity: .75
}

/* ========== FEATURES ========== */
.features {
  background: transparent;
  padding: 100px 0 10px
}

@media (max-width: 768px) {
  .features h2 {
    margin-top: -80px;
  }
}

.feat-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 90px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.feat-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 20px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  transition: background .3s var(--ease);
  cursor: default;
}

.feat-icon-item:nth-child(6n) {
  border-right: none
}

.feat-icon-item:nth-child(n+7) {
  border-bottom: none
}

.feat-icon-item:hover {
  background: rgba(255, 255, 255, .04)
}

.feat-icon-box {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--milk);
  margin-bottom: 20px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}

.feat-icon-item:hover .feat-icon-box {
  border-color: rgba(243, 232, 211, .5);
  color: var(--white)
}

.feat-icon-label {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--choc-soft);
  line-height: 1.4;
  transition: color .3s var(--ease);
}

.feat-icon-item:hover .feat-icon-label {
  color: var(--milk)
}

/* ========== CATEGORIES ========== */
.categories {
  background: transparent;
  color: var(--milk)
}

.categories h2 {
  color: var(--white)
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px
}

.cat-card {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s var(--ease);
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, .08), transparent 60%);
  opacity: .6;
  transition: opacity .4s var(--ease);
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--milk)
}

.cat-card:hover::before {
  opacity: 1
}

.cat-card .num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--milk);
  opacity: .7
}

.cat-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  position: relative
}

.cat-card .count {
  font-size: .8rem;
  color: var(--milk);
  opacity: .75;
  margin-top: 6px;
  position: relative
}

/* ========== PRODUCTS PAGE ========== */
/* ========== PRODUCTS PAGE HERO ========== */
.page-head {
  padding: 180px 0 100px;
  background: url('../img/realizacje/galeria_pillar.png') no-repeat center center;
  background-size: cover;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.85) 0%, rgba(10, 9, 8, 0.4) 50%, rgba(10, 9, 8, 0.85) 100%);
  z-index: 1;
}

/* Noise removed for total seamlessness */
.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  display: inline-block;
  padding: 40px 60px;
  animation: fadeUpHero 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  text-align: center;
}

.hero-content::before,
.hero-content::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-color: rgba(255, 255, 255, 0.25);
  border-style: solid;
  pointer-events: none;
  transition: border-color 0.4s var(--ease);
}

.hero-content:hover::before,
.hero-content:hover::after {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-content::before {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.hero-content::after {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

@keyframes fadeUpHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow-wrap {
  margin-bottom: 24px;
}

.hero-eyebrow-wrap .eyebrow {
  color: rgba(255, 255, 255, .4);
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin: 0;
}

.hero-title {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0 auto;
  max-width: 900px;
}

/* --- Catalog layout: sidebar + grid --- */
.catalog-layout {
  background: transparent;
  padding: 0 0 40px;
  position: relative;
}

/* Noise removed for total seamlessness */
.catalog-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Sidebar — book table of contents */
.catalog-sidebar {
  width: 100%;
  max-width: 1200px;
  position: relative;
  top: 0;
  height: auto;
  border-right: none;
  padding: 40px 0 20px;
  overflow: visible;
}

/* Search inside sidebar */
.catalog-search-wrap {
  padding: 0 0 32px;
  max-width: 600px;
  margin: 0 auto;
}

.catalog-search-wrap input {
  width: 100%;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  /* Pill shape */
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--sans);
  outline: none;
  text-align: center;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}

.catalog-search-wrap input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(193, 167, 126, 0.1);
}

/* Filter toggle button - always visible */
.filter-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 20px;
  padding: 16px 24px;
  background: var(--white);
  color: var(--black);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filter-toggle-btn:hover {
  background: var(--milk);
  transform: translateY(-2px);
}

/* Mobile adjustments for catalog layout */
@media (max-width: 768px) {
  .catalog-sidebar {
    padding-top: 20px;
    /* reduce top padding to move up */
  }

  .catalog-search-wrap {
    margin-bottom: 24px;
    /* increase spacing after search input */
  }
}

.filter-toggle-btn svg {
  transition: transform 0.3s var(--ease);
}

.filter-toggle-btn.active svg {
  transform: rotate(180deg);
}

/* Category index — hidden by default */
.catalog-index {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto 30px;
  animation: fadeIn 0.4s var(--ease);
}

.catalog-index.active {
  display: grid;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cat-index-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 56px;
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  line-height: 1.3;
}

.cat-index-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.cat-index-btn.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.cat-index-btn .cat-count {
  font-size: 0.65rem;
  margin-left: 8px;
  opacity: 0.7;
}

.cat-index-btn.active .cat-count {
  color: inherit;
  opacity: 0.8;
}

/* Main catalog area */
.catalog-main {
  width: 100%;
  max-width: 1200px;
  min-height: 200px;
  padding: 0 0 20px 0;
  /* Reduced padding */
}

/* ====== PRODUCT GRID — CATALOG STYLE ====== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-left: 1px solid rgba(255, 255, 255, .06);
}

/* PRODUCT CARD — no box, floating on dark bg */
.product-card {
  position: relative;
  padding: 32px 28px 28px;
  border-right: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: background .4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, .03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

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

.product-card:hover {
  background: rgba(255, 255, 255, .018)
}

/* Product code — large serif, catalog title style */
.card-code {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* Image wrap — transparent background, product floats */
.card-img-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
  margin: 0 -8px;
}

.card-img-wrap img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  transition: transform .6s var(--ease), filter .4s;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, .55));
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.06) translateY(-5px);
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, .72)) brightness(1.06);
}

.card-img-wrap.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .15;
}

/* Hover overlay with action buttons */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 11, .84);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: 2;
  backdrop-filter: blur(3px);
}

.product-card:hover .card-overlay {
  opacity: 1
}

.card-overlay .btn {
  padding: 8px 20px;
  font-size: 0.7rem;
  width: 120px;
  justify-content: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Card meta below image */
.card-meta {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.card-cat {
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .22);
  margin-bottom: 4px;
  font-family: var(--sans);
}

.card-name {
  font-family: var(--serif);
  font-size: .92rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.3;
  font-style: normal;
}

.card-dims {
  margin-top: 7px;
  font-family: "Courier New", Courier, monospace;
  font-size: .66rem;
  color: rgba(255, 255, 255, .18);
  letter-spacing: .06em;
  line-height: 1.6;
}

/* ========== MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 15, 15, .75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fade .3s var(--ease);
}

.modal.open {
  display: flex
}

@keyframes fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal-box {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: slide .4s var(--ease);
}

@keyframes slide {
  from {
    transform: translateY(20px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.modal-img {
  aspect-ratio: 1;
  background: var(--ink-3);
  position: relative;
  overflow: hidden
}

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

.modal-content {
  padding: 40px;
  position: relative
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--milk);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--white);
  color: var(--black)
}

.modal h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--white)
}

.modal-cat {
  color: var(--choc-soft);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.spec-list {
  list-style: none;
  margin: 24px 0;
  border-top: 1px solid var(--line)
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}

.spec-list .label {
  color: var(--choc-soft)
}

.spec-list .value {
  font-weight: 600;
  font-family: monospace;
  color: var(--white)
}

/* ========== CONTACT ========== */
.contact {
  background: transparent
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--choc-soft)
}

.contact-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--line)
}

.contact-block:last-child {
  border-bottom: 0
}

.contact-block .label {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--choc-soft);
  margin-bottom: 6px
}

.contact-block .value {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--white)
}

.contact-block .value a {
  color: var(--milk)
}

.contact-block .value a:hover {
  color: var(--white)
}

form {
  display: grid;
  gap: 18px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 24px 36px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-top: -6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--choc-soft);
  margin-bottom: 6px;
  display: block
}

.contact-section {
  padding: 20px 0 60px;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--ink-3);
  color: var(--milk);
  transition: border-color .25s var(--ease);
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: rgba(255, 255, 255, .35)
}

textarea {
  resize: none;
  min-height: 130px
}

/* ========== FOOTER ========== */
.footer {
  background: transparent;
  color: var(--milk);
  padding: 40px 0 40px;
  text-align: center;
}

.footer-heading {
  display: none !important;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 36px;
}

.footer-contact-block {
  display: none !important;
  flex-direction: column;
  gap: 10px;
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 48px;
}

.footer-contact-block a {
  color: rgba(255, 255, 255, .6);
  transition: color .25s var(--ease)
}

.footer-contact-block a:hover {
  color: var(--white)
}

.footer-divider {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 48px;
  height: 1px;
  background: var(--line);
}

.footer-logo-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.footer-logo-big img {
  height: 180px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1
}

.footer-logo-big-text {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  font-weight: 600;
  margin-top: 10px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-nav a {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  transition: color .25s var(--ease);
}

.footer-nav a:hover {
  color: var(--white)
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  transition: all .25s var(--ease);
}

.footer-social-btn:hover {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white)
}

.footer-logo-mini {
  display: flex;
  justify-content: center;
  margin-bottom: 32px
}

.footer-logo-mini img {
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
  opacity: .5
}

.footer-bottom {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .06em;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  background: transparent;
  padding: 20px 0 0
}

.gallery-head {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 48px
}

.gallery-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.gallery-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--white);
  font-size: .95rem;
  line-height: 1.7;
}

.gallery-row {
  display: flex;
  gap: 3px;
  height: clamp(300px, 42vw, 560px);
  overflow: hidden;
}

.gallery-ph {
  flex: 1;
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: flex .5s var(--ease);
}

.gallery-ph--wide {
  flex: 1.9
}

.gallery-ph:hover {
  flex: 1.6
}

.gallery-ph--wide:hover {
  flex: 2.4
}

.gallery-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-ph:hover img {
  transform: scale(1.04)
}

.gallery-dots-mobile {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.gallery-dots-mobile .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--ease);
}

.gallery-dots-mobile .dot.active {
  background: var(--white);
  transform: scale(1.5);
}

.gallery-nav-arrows,
.gallery-dots-mobile {
  display: none;
}

.gallery-cta {
  background: transparent;
  padding: 30px 0 clamp(40px, 5vw, 80px);
  text-align: center;
}

.btn-gallery-open {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.btn-gallery-open:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--white);
}

/* ========== LOCATION SECTION ========== */
/* Location Section Grid */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-areas:
    "content map"
    "cta map";
  gap: 40px 80px;
  align-items: center;
  padding: 60px 0;
}

.loc-content {
  grid-area: content;
  max-width: 500px;
}

.loc-map {
  grid-area: map;
  position: relative;
  padding: 15px;
  background: transparent;
}

.loc-map img {
  border-radius: 2px !important;
  display: block;
  filter: grayscale(0.2) brightness(0.9) contrast(1.1);
  transition: all 0.5s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.loc-map::before,
.loc-map::after,
.loc-map-corner-bl,
.loc-map-corner-br {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(243, 232, 211, 0.4);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.loc-map::before {
  top: 0;
  left: 0;
  border-width: 1.5px 0 0 1.5px;
}

/* TL */
.loc-map::after {
  top: 0;
  right: 0;
  border-width: 1.5px 1.5px 0 0;
}

/* TR */
.loc-map-corner-bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1.5px 1.5px;
}

/* BL */
.loc-map-corner-br {
  bottom: 0;
  right: 0;
  border-width: 0 1.5px 1.5px 0;
}

/* BR */

.loc-cta {
  grid-area: cta;
}

.loc-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin: 20px 0 30px;
  line-height: 1.1;
}

.loc-p1,
.loc-p2 {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 20px;
}

.loc-map iframe {
  display: block;
  filter: grayscale(0.2) contrast(1.1);
}

.loc-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center
}

.loc-text p {
  line-height: 1.75;
  color: var(--choc-soft)
}

.loc-btn {
  gap: 10px
}

.loc-map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden
}

.loc-svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.loc-map-btn {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow);
}

.loc-map-btn:hover {
  background: var(--milk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg)
}

@media(max-width:960px) {
  .loc-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

/* ========== UTIL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 0 40px;
}

.pag-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.pag-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--milk);
  background: transparent;
  transition: all .2s var(--ease);
  cursor: pointer;
}

.pag-arrow:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .06)
}

.pag-arrow:disabled {
  opacity: .3;
  cursor: not-allowed
}

.pag-nums {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap
}

.pag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--choc-soft);
  background: transparent;
  transition: all .2s var(--ease);
  cursor: pointer;
}

.pag-num:hover {
  border-color: var(--line);
  color: var(--milk)
}

.pag-num.active {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-weight: 600;
}

.pag-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  color: var(--choc-2);
  font-size: .88rem;
}

.pag-info {
  font-size: .78rem;
  color: var(--choc-2);
  letter-spacing: .04em
}

/* ========== PRODUCT DETAIL OVERLAY ========== */
.detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.detail-overlay.open {
  opacity: 1;
  pointer-events: all
}

.detail-box {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow: hidden;
  overflow-y: auto;
  transform: translateY(24px);
  transition: transform .35s var(--ease);
  position: relative;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.detail-box::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.detail-overlay.open .detail-box {
  transform: none
}

.detail-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 480px;
}

.detail-img-wrap {
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 340px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  /* For zoom effect */
  cursor: zoom-in;
}

.detail-img-wrap img {
  max-width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.2s var(--ease);
  pointer-events: none;
  /* Let container handle mouse events */
}

.detail-no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: .4;
}

.detail-content {
  padding: 48px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Controlled by inner spacing */
}

.detail-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  z-index: 100;
  transition: all .3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.detail-close:hover {
  color: var(--white);
  transform: rotate(90deg)
}

.detail-header {
  margin-bottom: 30px
}

.detail-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px
}

.detail-cat-badge {
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
  font-family: var(--sans);
}

.detail-code-label {
  font-family: var(--sans);
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .05em;
}

.detail-code-label strong {
  color: var(--white);
  font-weight: 500;
  margin-left: 4px
}

.detail-name {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}

.detail-price-box {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-bottom: 20px;
}

.detail-price {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.price-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3)
}

.price-value {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--white)
}

.price-value small {
  font-size: .5em;
  color: rgba(255, 255, 255, .3);
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.detail-scroll-area {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.detail-scroll-area::-webkit-scrollbar {
  display: none;
}

.detail-desc {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 40px;
  font-weight: 300;
}

.detail-specs {
  margin-top: 20px
}

.specs-title {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
  font-family: var(--sans);
}

.specs-list {
  display: flex;
  flex-direction: column
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.spec-item:last-child {
  border-bottom: none
}

.spec-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 400
}

.spec-value {
  font-size: .85rem;
  color: var(--white);
  font-weight: 500;
  text-align: right;
  max-width: 60%
}

.detail-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  align-items: center;
  justify-content: center;
}

.detail-cta {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  border: none;
  transition: all .3s var(--ease);
}

.detail-cta:hover {
  background: var(--milk);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .3)
}

.btn-link-studio {
  font-size: .7rem;
  text-align: center;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .3s;
  padding: 10px;
}

.btn-link-studio:hover {
  color: var(--white)
}

.detail-img-wrap {
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 340px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.zoom-ui {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 5;
}

.zoom-ui span {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.detail-img-wrap:hover .zoom-ui {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.detail-img-wrap.zoom-active {
  cursor: crosshair;
}

.detail-img-wrap.zoom-active .zoom-ui {
  opacity: 0;
  transform: translate(-50%, -10px);
}

.detail-img-wrap .zoom-ui {
  display: none !important;
}

.detail-img-wrap img {
  max-width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.25s var(--ease-out);
  pointer-events: none;
}

@media(max-width:700px) {
  .detail-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .detail-img-wrap {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 200px;
    padding: 20px;
  }

  .detail-content {
    padding: 24px 20px
  }

  .detail-name {
    font-size: 1.5rem
  }

  .detail-cta {
    width: 100%
  }

  .detail-box {
    width: 95%;
    max-height: 92vh;
  }
}

/* ========== RESPONSIVE ========== */
@media(max-width:1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .intro-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .modal-box {
    grid-template-columns: 1fr
  }

  .modal-img {
    aspect-ratio: 16/10
  }
}

@media(max-width:900px) {
  .catalog-inner {
    grid-template-columns: 1fr
  }

  .catalog-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 20px 0;
  }

  .catalog-index {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 20px 0;
  }

  .catalog-index-label {
    display: none
  }

  .cat-index-btn {
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: .78rem;
    border-left: none;
    font-style: normal;
  }

  .cat-index-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white)
  }

  .catalog-main {
    padding: 24px 0 0
  }

  .catalog-search-wrap {
    padding: 0 20px 16px
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:720px) {
  .nav {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 15, 15, .98);
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex
  }

  .menu-btn {
    display: block
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  form {
    padding: 24px
  }

  .modal-content {
    padding: 24px
  }

  .footer-brand {
    flex-direction: column;
    gap: 14px;
    text-align: center
  }

  .products-grid {
    grid-template-columns: 1fr
  }

  .card-code {
    font-size: 1.2rem
  }

  .catalog-main {
    padding: 16px 0 0
  }

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

/* ========== ABOUT US CATALOG STYLES ========== */
.about-hero {
  padding: 100px 0 20px;
  text-align: center;
  position: relative;
}

.about-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 12px auto 0;
  max-width: 900px;
}

.about-hero-title span {
  font-family: var(--sans);
  font-weight: 700;
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

.about-story {
  padding: 20px 0 40px;
}

.about-story-frame-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 0;
}

.about-story-img-frame {
  position: relative;
  padding: 24px;
}

.img-frame-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  border-color: rgba(255, 255, 255, 0.15);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
  transition: all 0.6s var(--ease);
}

.img-frame-corner.tl {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.img-frame-corner.br {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.about-story-frame-wrap:hover .img-frame-corner.tl {
  transform: translate(-10px, -10px);
  border-color: rgba(255, 255, 255, 0.3);
}

.about-story-frame-wrap:hover .img-frame-corner.br {
  transform: translate(10px, 10px);
  border-color: rgba(255, 255, 255, 0.3);
}

.about-story-img {
  position: relative;
  width: 100%;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-story-img img {
  width: 100%;
  display: block;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 1.2s var(--ease);
}

.about-story-frame-wrap:hover img {
  transform: scale(1.03);
}

.about-story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-story-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 10px 0 20px;
  color: var(--white);
  line-height: 1.2;
}

.about-story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.about-values {
  padding: 80px 0;
}

.about-values-head {
  text-align: center;
  margin-bottom: 50px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.value-card {
  text-align: center;
  padding: 40px 20px;
}

.value-icon {
  margin-bottom: 30px;
  color: var(--milk);
  opacity: 0.8;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.value-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-cta {
  padding: 100px 0;
  text-align: center;
}

.about-cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 20px 0 30px;
  color: var(--white);
}

.about-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========== CONTACT CATALOG STYLES ========== */
.contact-hero {
  padding: clamp(100px, 15vw, 180px) 0 40px;
  text-align: center;
}

.contact-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  text-transform: uppercase;
  margin: 10px 0 10px;
}

.contact-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-details {
  padding: 60px 0;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 80px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

.detail-value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.5;
}

.detail-value a:hover {
  color: var(--milk);
}

.contact-form-section {
  padding: 80px 0;
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.form-head {
  text-align: center;
  margin-bottom: 60px;
}

.form-head h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.form-head p {
  color: rgba(255, 255, 255, 0.5);
}

.studio-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.studio-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.studio-form input,
.studio-form select,
.studio-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color 0.3s var(--ease);
  outline: none;
  border-radius: 0;
}

.studio-form input:focus,
.studio-form select:focus,
.studio-form textarea:focus {
  border-bottom-color: var(--white);
}

.studio-form select option {
  background: var(--black);
  color: var(--white);
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 48px;
  background: var(--white);
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  border: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--milk);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .contact-details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .studio-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========== GALLERY MOSAIC STYLES ========== */
.gallery-hero {
  padding: clamp(100px, 15vw, 180px) 0 60px;
  text-align: center;
}

.gallery-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  text-transform: uppercase;
  margin: 16px 0 24px;
}

.gallery-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gallery-mosaic-section {
  padding: 40px 0 80px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 350px;
  grid-auto-flow: dense;
  gap: 24px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: var(--ink-2);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
  filter: brightness(0.9);
}

.mosaic-item.tall {
  grid-row: span 2;
}

.mosaic-item.wide {
  grid-column: span 2;
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.mosaic-overlay span {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease);
}

.mosaic-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-item:hover .mosaic-overlay span {
  transform: translateY(0);
}

.gallery-cta {
  padding: 40px 0;
  text-align: center;
}

.gallery-cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.gallery-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 20px 0 30px;
}

.gallery-cta p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.98);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--milk);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .gallery-mosaic {
    grid-auto-rows: 280px;
  }

  .mosaic-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .mosaic-item.tall {
    grid-row: span 1;
  }

  .mosaic-item img {
    aspect-ratio: 4/5;
  }
}

/* ============ COOKIE BANNER ============ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--milk);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-banner.show {
  transform: translateY(0);
}

#cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.8;
  max-width: 800px;
}

#cookie-btn {
  background: var(--milk);
  color: var(--black);
  border: none;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
  white-space: nowrap;
  margin-left: 20px;
}

#cookie-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }

  #cookie-btn {
    margin-left: 0;
    width: 100%;
  }
}

/* ============ LIGHTBOX NAVIGATION ============ */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  opacity: 0.7;
  transition: opacity 0.3s;
  z-index: 1001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-close {
  z-index: 1001;
  font-size: 3rem;
  top: 20px;
  right: 30px;
}

@media (max-width: 768px) {

  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 10px;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }
}

/* ============ UNIVERSAL PANZER-MOBILE OVERRIDE ============ */
/* Targets all pages: index, o-nas, produkty, realizacje, kontakt */

@media (max-width: 900px) {

  /* 1. Global Resets */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  section {
    padding: 40px 0 !important;
  }

  /* 2. Navigation */
  .nav {
    display: none !important;
  }

  .menu-btn {
    display: block !important;
  }

  .header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
  }

  .header-left {
    flex: 1 !important;
    display: flex !important;
    justify-content: flex-start !important;
  }

  .header-right {
    flex: 1 !important;
    display: flex !important;
    justify-content: flex-end !important;
  }

  .logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.mobile-view .logo img {
    height: 50px !important;
  }

  /* 3. Typography (Aggressive Downscaling) */
  h1,
  .hero-headline,
  .about-hero-title {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    word-break: break-word !important;
    width: 100% !important;
    margin: 0 auto 15px !important;
  }

  h2,
  .manifesto-title,
  .gallery-hero-title,
  .about-story-title,
  .about-cta-title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    word-break: break-word !important;
    margin: 0 auto 15px !important;
    width: 100% !important;
  }

  h3,
  .value-card h3,
  .cat-card h3 {
    font-size: 1.2rem !important;
    text-align: center !important;
  }

  p,
  .manifesto-body,
  .intro-text p,
  .about-story-text p,
  .about-cta-desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    width: 100% !important;
  }

  .eyebrow {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 10px !important;
  }

  /* 4. Universal Grid Destroyer (Forces everything into a single column) */
  .intro-grid,
  .feat-icon-grid,
  .cat-grid,
  .products-grid,
  .gallery-mosaic,
  .manifesto-stats,
  .about-values-grid,
  .contact-details-grid,
  .form-row,
  .about-story,
  .footer-contact-block,
  .product-detail-modal .detail-body,
  .loc-inner,
  .loc-grid,
  .catalog-inner,
  .about-story .container,
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 32px !important;
  }

  .loc-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .loc-content,
  .loc-map,
  .loc-cta {
    width: 100% !important;
    max-width: 100% !important;
    order: unset !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .loc-content * {
    text-align: center !important;
    width: 100% !important;
  }

  .loc-map img {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  .loc-cta {
    margin-top: 10px !important;
  }

  .catalog-sidebar,
  .catalog-main {
    width: 100% !important;
  }

  /* 5. Specific Component Fixes */
  /* Navigation & Hamburger */
  .nav {
    display: none !important;
  }

  .nav.active {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: var(--black) !important;
    z-index: 9999 !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
  }

  .nav.active .nav-socials {
    display: flex !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
  }

  .nav.active a {
    font-size: 1.5rem !important;
  }

  .menu-btn {
    display: block !important;
    font-size: 2rem !important;
    background: none !important;
    border: none !important;
    color: var(--white) !important;
    cursor: pointer !important;
    z-index: 10000 !important;
  }

  /* Hero & Section Spacing */
  .manifesto {
    padding-bottom: 10px !important;
  }

  .features {
    padding-top: 0 !important;
    margin-top: -10px !important;
  }

  .hero-inner--center,
  .about-hero .container,
  .gallery-hero .container,
  .contact-hero .container {
    padding: 100px 15px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-logo-img {
    height: 60px !important;
    margin-bottom: 20px !important;
  }

  .hero-cta-btn,
  .btn,
  .manifesto-cta-btn,
  .btn-gallery-open,
  .btn-outline,
  .btn-primary {
    width: auto !important;
    min-width: 220px !important;
    max-width: 90% !important;
    margin: 10px auto !important;
    padding: 12px 25px !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--white) !important;
    color: var(--black) !important;
    border: none !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
  }

  /* Catalog Buttons - Smaller */
  .cat-card-btn {
    width: 80% !important;
    margin: 5px auto !important;
    padding: 8px 12px !important;
    font-size: 0.75rem !important;
    border-radius: 4px !important;
  }

  /* Forms - No scrollbar */
  textarea {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  textarea::-webkit-scrollbar {
    display: none !important;
  }

  /* Cards & Items */
  .feat-icon-item,
  .cat-card,
  .value-card,
  .contact-detail-item {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border: 1px solid var(--line) !important;
    padding: 25px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Images & Maps */
  .intro-img,
  .about-story-img-frame,
  .contact-map iframe,
  .loc-map-wrap {
    display: block !important;
    width: 100% !important;
    height: 300px !important;
    margin: 20px auto !important;
    order: 2 !important;
    border-radius: 8px !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .loc-svg {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }

  .intro-text,
  .about-story-content,
  .contact-form-section .form-wrapper,
  .loc-text {
    order: 1 !important;
    width: 100% !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .loc-text * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Gallery Mosaic & Text Centering */
  .mosaic-item,
  .mosaic-item.wide,
  .mosaic-item.tall {
    width: 100% !important;
    height: 300px !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .mosaic-overlay {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 20px !important;
  }

  .mosaic-overlay span {
    text-align: center !important;
    width: 100% !important;
  }

  /* Catalog Filters Toggle */
  .catalog-index {
    display: none !important;
  }

  .catalog-index.active {
    display: flex !important;
  }

  #mobile-filter-btn {
    display: flex !important;
    width: 100% !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    background: var(--white);
    color: var(--black);
    border-radius: 8px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .catalog-search-wrap {
    width: 100% !important;
    margin-bottom: 15px !important;
  }

  .filter-btn {
    margin: 0 !important;
    font-size: 0.8rem !important;
    padding: 8px 16px !important;
  }

  /* Footer */
  .footer-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
  }

  .footer-logo-big img {
    height: 40px !important;
  }
}



body.mobile-view .header {
  width: 100% !important;
  max-width: 480px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

body.mobile-view .nav {
  display: none !important;
}

body.mobile-view .menu-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.mobile-view .header .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0 15px !important;
  position: relative !important;
}

body.mobile-view .logo {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.mobile-view .logo img {
  height: 50px !important;
}

body.mobile-view .lang-switcher {
  height: 34px !important;
  padding: 0 8px !important;
  display: flex !important;
  align-items: center !important;
}

body.mobile-view .social-icon {
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 4px !important;
}

body.mobile-view .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 15px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

body.mobile-view section {
  padding: 40px 0 !important;
}

body.mobile-view h1,
body.mobile-view .hero-headline,
body.mobile-view .about-hero-title {
  font-size: 1.6rem !important;
  line-height: 1.2 !important;
  text-align: center !important;
  word-break: break-word !important;
  width: 100% !important;
  margin: 0 auto 15px !important;
}

body.mobile-view h2,
body.mobile-view .manifesto-title,
body.mobile-view .gallery-hero-title,
body.mobile-view .about-story-title,
body.mobile-view .about-cta-title {
  font-size: 1.4rem !important;
  line-height: 1.3 !important;
  text-align: center !important;
  word-break: break-word !important;
  margin: 0 auto 15px !important;
  width: 100% !important;
}

body.mobile-view h3,
body.mobile-view .value-card h3,
body.mobile-view .cat-card h3 {
  font-size: 1.2rem !important;
  text-align: center !important;
}

body.mobile-view p,
body.mobile-view .manifesto-body,
body.mobile-view .intro-text p,
body.mobile-view .about-story-text p,
body.mobile-view .about-cta-desc {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  text-align: center !important;
  margin-bottom: 15px !important;
  width: 100% !important;
}

body.mobile-view .eyebrow {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 10px !important;
}

body.mobile-view .intro-grid,
body.mobile-view .feat-icon-grid,
body.mobile-view .cat-grid,
body.mobile-view .products-grid,
body.mobile-view .gallery-mosaic,
body.mobile-view .manifesto-stats,
body.mobile-view .about-values-grid,
body.mobile-view .contact-details-grid,
body.mobile-view .about-story,
body.mobile-view .footer-contact-block,
body.mobile-view .product-detail-modal .detail-body,
body.mobile-view .loc-inner,
body.mobile-view .loc-grid,
body.mobile-view .catalog-inner,
body.mobile-view .about-story .container,
body.mobile-view .contact-grid,
body.mobile-view .manifesto-centered,
body.mobile-view .manifesto-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 20px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 48px !important;
  text-align: center !important;
}

body.mobile-view .page-head {
  padding: 90px 20px 20px !important;
}

body.mobile-view .hero-content {
  padding: 20px !important;
}

body.mobile-view .manifesto-stats {
  gap: 40px !important;
  padding: 40px 20px !important;
}

body.mobile-view .manifesto-stat-divider {
  display: none !important;
}

body.mobile-view .manifesto-stat {
  gap: 4px !important;
}

body.mobile-view .nav {
  display: none !important;
}

body.mobile-view .nav.active {
  display: flex !important;
  flex-direction: column !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: var(--black) !important;
  z-index: 9999 !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 30px !important;
}

body.mobile-view .nav.active .nav-socials {
  display: flex !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

body.mobile-view .nav.active a {
  font-size: 1.5rem !important;
  color: var(--white) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

body.mobile-view .menu-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2.2rem !important;
  background: none !important;
  border: none !important;
  color: var(--white) !important;
  cursor: pointer !important;
  z-index: 10000 !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin-top: -2px !important;
  /* Visual nudge for optical alignment */
}

body.mobile-view .hero {
  min-height: 80vh !important;
  height: 80vh !important;
}

body.mobile-view .hero-bg img {
  object-position: center 35% !important;
}

body.mobile-view .hero-inner--center,
body.mobile-view .about-hero .container,
body.mobile-view .gallery-hero .container,
body.mobile-view .contact-hero .container {
  padding: 110px 15px 15px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

body.mobile-view .contact-hero {
  min-height: auto !important;
  padding: 100px 0 0 !important;
}

body.mobile-view .contact-section {
  padding: 20px 0 !important;
}

body.mobile-view .gallery-hero {
  padding-bottom: 20px !important;
}

body.mobile-view .gallery-mosaic-section {
  padding-top: 20px !important;
}

body.mobile-view .contact-form-section {
  padding: 20px 0 !important;
  margin: 0 !important;
  width: 100% !important;
  order: 1 !important;
}

body.mobile-view .contact-info {
  order: 2 !important;
  width: 100% !important;
  padding-top: 20px !important;
}

body.mobile-view .contact-item {
  margin-bottom: 20px !important;
}

body.mobile-view form {
  padding: 24px !important;
  gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.mobile-view .form-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  padding: 0 !important;
  width: 100% !important;
}

body.mobile-view .hero-logo-img {
  height: 60px !important;
  margin-bottom: 20px !important;
}

body.mobile-view .hero-headline {
  font-size: 2.2rem !important;
  letter-spacing: 0.12em !important;
  line-height: 1.2 !important;
  margin-bottom: 30px !important;
  font-weight: 700 !important;
}

body.mobile-view .hero-headline em {
  font-size: 1.1rem !important;
  letter-spacing: 0.15em !important;
  margin-top: 18px !important;
  opacity: 1 !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

body.mobile-view .hero-cta-btn,
body.mobile-view .btn,
body.mobile-view .btn-outline,
body.mobile-view .btn-primary {
  width: auto !important;
  min-width: 0 !important;
  max-width: 95% !important;
  margin: 15px auto !important;
  padding: 14px 30px !important;
  font-size: 0.78rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  border-radius: 4px !important;
  white-space: nowrap !important;
}

body.mobile-view .btn-gallery-open {
  width: auto !important;
  min-width: 0 !important;
  max-width: 95% !important;
  margin: 15px auto !important;
  padding: 15px 34px !important;
  font-size: 0.78rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  border-radius: 2px !important;
  white-space: nowrap !important;
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

body.mobile-view .manifesto-cta-btn {
  background: transparent !important;
  color: var(--white) !important;
  border: none !important;
  border-bottom: 1px solid var(--white) !important;
  padding: 10px 0 !important;
  width: fit-content !important;
  min-width: 0 !important;
  margin: 20px auto !important;
  border-radius: 0 !important;
  text-transform: none !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  display: inline-flex !important;
}

body.mobile-view .cat-card-btn {
  width: 70% !important;
  margin: 4px auto !important;
  padding: 6px 10px !important;
  font-size: 0.7rem !important;
  height: 36px !important;
  border-radius: 4px !important;
}


body.mobile-view textarea {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overflow: hidden !important;
  min-height: 120px !important;
}

body.mobile-view textarea::-webkit-scrollbar {
  display: none !important;
}

body.mobile-view .feat-icon-grid {
  display: grid !important;
  flex-direction: unset !important;
  align-items: unset !important;
  justify-content: unset !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 8px !important;
  padding: 0 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.mobile-view .feat-icon-item {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 175px !important;
  height: 175px !important;
  border: 1px solid var(--line) !important;
  padding: 16px 8px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

body.mobile-view .cat-card,
body.mobile-view .value-card,
body.mobile-view .contact-detail-item {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border: 1px solid var(--line) !important;
  padding: 35px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border-radius: 4px !important;
}

body.mobile-view .intro-img,
body.mobile-view .about-story-img-frame,
body.mobile-view .contact-map iframe,
body.mobile-view .loc-map-wrap,
body.mobile-view .loc-map {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 20px auto !important;
  border-radius: 8px !important;
}

body.mobile-view .loc-map img {
  width: 100% !important;
  max-width: 400px !important;
  height: auto !important;
  border-radius: 8px !important;
  display: block !important;
  margin: 0 auto !important;
}

body.mobile-view .intro-text,
body.mobile-view .about-story-content,
body.mobile-view .contact-form-section .form-wrapper,
body.mobile-view .loc-text,
body.mobile-view .loc-content {
  width: 100% !important;
  padding: 0 !important;
  text-align: center !important;
}

body.mobile-view .loc-content * {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.mobile-view .loc-cta {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: 10px !important;
}

body.mobile-view .mosaic-item,
body.mobile-view .mosaic-item.wide,
body.mobile-view .mosaic-item.tall {
  width: 100% !important;
  height: 300px !important;
  grid-column: auto !important;
  grid-row: auto !important;
}

body.mobile-view .mosaic-overlay {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 20px !important;
}

body.mobile-view .mosaic-overlay span {
  text-align: center !important;
  width: 100% !important;
}

body.mobile-view .catalog-index {
  display: none !important;
}

body.mobile-view .catalog-index.active {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  width: 100% !important;
}

body.mobile-view .cat-index-btn {
  width: 100% !important;
  justify-content: center !important;
  margin: 0 !important;
}

body.mobile-view .catalog-search-wrap {
  width: 100% !important;
  margin-bottom: 15px !important;
}

body.mobile-view .filter-btn {
  width: 100% !important;
  margin: 0 !important;
  font-size: 0.8rem !important;
  padding: 12px !important;
  justify-content: center !important;
}

body.mobile-view .footer {
  padding: 40px 0 20px !important;
}

body.mobile-view .footer-heading,
body.mobile-view .footer-contact-block {
  display: none !important;
}

body.mobile-view .footer-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  align-items: center !important;
}

/* Global helper for menu lock */
body.nav-open {
  overflow: hidden !important;
}

body.mobile-view .footer-logo-big img {
  height: 80px !important;
}

body.mobile-view .detail-overlay {
  padding: 20px !important;
  max-width: 440px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.mobile-view .detail-box {
  width: 100% !important;
  height: auto !important;
  max-height: 85vh !important;
  border-radius: 12px !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  overflow-y: auto !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
}

body.mobile-view .detail-body {
  display: block !important;
  width: 100% !important;
}

body.mobile-view .detail-img-wrap {
  width: 100% !important;
  min-height: 180px !important;
  padding: 30px 20px !important;
  background: #111 !important;
}

body.mobile-view .detail-content {
  width: 100% !important;
  padding: 25px 20px 70px !important;
  text-align: left !important;
}

body.mobile-view .detail-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(4px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  z-index: 2000 !important;
  opacity: 1 !important;
  color: var(--white) !important;
}

body.mobile-view .detail-header {
  text-align: left !important;
}

body.mobile-view .detail-name {
  font-size: 1.6rem !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

body.mobile-view .detail-desc {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  text-align: left !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

body.mobile-view .detail-specs {
  width: 100% !important;
  margin-top: 25px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding-top: 15px !important;
}

body.mobile-view .spec-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.85rem !important;
}

body.mobile-view .spec-label {
  color: rgba(255, 255, 255, 0.4) !important;
}

body.mobile-view .spec-value {
  color: var(--white) !important;
  font-weight: 500 !important;
  text-align: right !important;
}

body.mobile-view .detail-footer {
  position: sticky !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--ink-2) !important;
  padding: 15px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  z-index: 100 !important;
  display: flex !important;
  justify-content: center !important;
}

body.mobile-view .detail-cta {
  width: 100% !important;
  margin: 0 !important;
}

/* Mobile Gallery Slider */
body.mobile-view .gallery-slider-mobile {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.mobile-view .gallery-slider-mobile::-webkit-scrollbar {
  display: none !important;
}

body.mobile-view .gallery-slider-mobile .gallery-ph {
  min-width: 85% !important;
  scroll-snap-align: center !important;
  padding: 10px !important;
  flex: 0 0 85% !important;
}

body.mobile-view .gallery-slider-mobile .gallery-ph img {
  border-radius: 12px !important;
  height: 280px !important;
  aspect-ratio: unset !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: block !important;
}

body.mobile-view .gallery-slider-mobile {
  padding: 0 20px 20px !important;
  gap: 0 !important;
}

body.mobile-view .gallery-dots-mobile {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 16px !important;
  margin-bottom: 4px !important;
}

body.mobile-view .gallery-dots-mobile .dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.25) !important;
  transition: all 0.3s ease !important;
  transform: scale(1) !important;
}

body.mobile-view .gallery-dots-mobile .dot.active {
  background: var(--white) !important;
  transform: scale(1.4) !important;
}

body.mobile-view .gallery-nav-arrows {
  display: flex !important;
  justify-content: center !important;
  gap: 24px !important;
  margin-top: 16px !important;
  margin-bottom: 8px !important;
}

body.mobile-view .gallery-arrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  color: var(--white) !important;
  transition: all 0.3s ease !important;
}

body.mobile-view .gallery-arrow:active {
  background: var(--white) !important;
  color: var(--black) !important;
  transform: scale(0.9) !important;
}

/* Feat icon labels & boxes — fixed size regardless of language */
body.mobile-view .feat-icon-box {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  flex-shrink: 0 !important;
}

body.mobile-view .feat-icon-label {
  font-size: 0.68rem !important;
  line-height: 1.3 !important;
  letter-spacing: 0.06em !important;
  margin-top: 10px !important;
  overflow: hidden !important;
  word-break: break-word !important;
  hyphens: auto !important;
}

/* Mobile Lightbox Overrides */
body.mobile-view .lightbox {
  padding: 15px !important;
  background: rgba(10, 9, 8, 0.95) !important;
  align-items: center !important;
  justify-content: center !important;
}

body.mobile-view .lightbox-card {
  display: flex !important;
  flex-direction: column !important;
  background: var(--ink-2) !important;
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  padding: 15px !important;
  width: fit-content !important;
  min-width: 260px !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 85vh !important;
  position: relative !important;
  align-items: center !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
}

body.mobile-view .lightbox img {
  max-width: 100% !important;
  max-height: 60vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  margin: 0 auto !important;
}

body.mobile-view .lightbox-caption {
  position: relative !important;
  bottom: auto !important;
  margin-top: 15px !important;
  text-align: center !important;
  width: 100% !important;
  font-size: 0.9rem !important;
  color: var(--white) !important;
}

body.mobile-view .lightbox-close {
  top: -10px !important;
  right: -8px !important;
  background: var(--ink-1) !important;
  border: 1px solid var(--line) !important;
  border-radius: 50% !important;
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  padding: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
}

body.mobile-view .lightbox-prev,
body.mobile-view .lightbox-next {
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: var(--ink-1) !important;
  border: 1px solid var(--line) !important;
  border-radius: 50% !important;
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  padding: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
}

body.mobile-view .lightbox-prev {
  left: -8px !important;
}

body.mobile-view .lightbox-next {
  right: -8px !important;
}

/* Mobile Products Grid Framed Layout */
body.mobile-view .products-grid {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  padding: 0 !important;
  gap: 0 !important;
  margin: 0 24px 40px !important;
  width: calc(100% - 48px) !important;
  overflow: hidden !important;
}

body.mobile-view .product-card {
  padding: 40px 20px !important;
  border: none !important;
  border-radius: 0 !important;
  position: relative !important;
}

body.mobile-view .product-card:not(:last-child)::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 40px !important;
  right: 40px !important;
  height: 1px !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Pagination and Footer spacing fixes */
body.mobile-view .pagination {
  padding: 24px 0 0px !important;
}

body.mobile-view .catalog-layout {
  padding-bottom: 20px !important;
}

/* Enlarge about story image slightly on mobile */
body.mobile-view .about-story .container {
  padding: 0 20px !important;
}

body.mobile-view .about-hero {
  padding-bottom: 0 !important;
}

body.mobile-view .about-story {
  align-items: stretch !important;
  padding-top: 0 !important;
  margin-top: -67px !important;
}

body.mobile-view .about-story > .container {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  align-self: stretch !important;
  align-items: stretch !important;
  padding: 0 !important;
}

body.mobile-view .about-story-img-frame {
  padding: 16px !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.mobile-view .about-story-frame-wrap {
  margin-top: 10px !important;
  margin-left: -32px !important;
  margin-right: -32px !important;
  padding: 0 !important;
  width: calc(100% + 64px) !important;
  max-width: calc(100% + 64px) !important;
  box-sizing: border-box !important;
}

body.mobile-view .about-story-img {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 2px !important;
  display: block !important;
}

body.mobile-view .about-story-img img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4/3 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 2px !important;
}

body.mobile-view .img-frame-corner {
  width: 48px !important;
  height: 48px !important;
}

body.mobile-view .img-frame-corner.tl {
  top: 0 !important;
  left: 0 !important;
}

body.mobile-view .img-frame-corner.br {
  bottom: 0 !important;
  right: 0 !important;
}

/* About CTA specific mobile fixes */
body.mobile-view .about-cta-desc {
  max-width: 85% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.5 !important;
  margin-bottom: 25px !important;
}

body.mobile-view .about-cta a.btn.btn-outline,
body.mobile-view .gallery-cta a.btn.btn-outline,
body.mobile-view a.btn-gallery-open {
  min-width: 0 !important;
  width: auto !important;
  display: inline-block !important;
  padding: 10px 18px !important;
  font-size: 0.8rem !important;
  border-radius: 4px !important;
}

/* Homepage manifesto spacing fixes */
body.mobile-view .manifesto-centered {
  padding: 0 20px !important;
}

body.mobile-view .manifesto-block {
  padding: 0 !important;
}

/* Tighten spacing between sections */
body.mobile-view .gallery-cta {
  padding-bottom: 40px !important;
  padding-top: 20px !important;
}

body.mobile-view .location-section {
  padding-top: 20px !important;
}
@media (max-width: 900px) {
  .gallery-row.gallery-slider-mobile {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 0 !important;
    padding: 0 20px 20px !important;
  }
  .gallery-row.gallery-slider-mobile .gallery-ph {
    min-width: 85% !important;
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
    height: 320px !important;
  }
}

/* ===== MOBILE PRODUCTS PAGE ===== */
body.mobile-view .catalog-layout {
  padding: 0 0 40px !important;
}

body.mobile-view .catalog-inner {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  align-items: stretch !important;
}

body.mobile-view .catalog-sidebar {
  width: 100% !important;
  padding: 20px 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

body.mobile-view .catalog-search-wrap {
  width: calc(100% - 32px) !important;
  margin: 0 16px 20px !important;
  padding: 0 !important;
  max-width: none !important;
}

body.mobile-view .catalog-search-wrap input {
  width: 100% !important;
  padding: 12px 18px !important;
  font-size: 0.85rem !important;
  border-radius: 30px !important;
}

body.mobile-view .filter-toggle-btn {
  display: table !important;
  width: auto !important;
  margin: 0 16px 12px !important;
  padding: 9px 20px !important;
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

body.mobile-view .filter-toggle-btn span,
body.mobile-view .filter-toggle-btn svg {
  display: inline !important;
  vertical-align: middle !important;
}

body.mobile-view .filter-toggle-btn svg {
  margin-left: 8px !important;
}

body.mobile-view .catalog-index {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.mobile-view .catalog-index.active {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  padding: 0 16px 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

body.mobile-view .cat-index-btn {
  width: 100% !important;
  min-height: 52px !important;
  padding: 10px 10px !important;
  font-size: 0.67rem !important;
  letter-spacing: 0.04em !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 6px !important;
  line-height: 1.3 !important;
  word-break: break-word !important;
  hyphens: auto !important;
  gap: 2px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

body.mobile-view .cat-index-btn:first-child,
body.mobile-view .cat-index-btn:last-child {
  grid-column: 1 / -1 !important;
  min-height: 42px !important;
  font-size: 0.75rem !important;
  flex-direction: row !important;
}

body.mobile-view .cat-index-btn .cat-count {
  font-size: 0.6rem !important;
  opacity: 0.5 !important;
  margin-left: 0 !important;
  display: block !important;
}

body.mobile-view .catalog-main {
  width: 100% !important;
  padding: 0 !important;
}

/* 2-column product grid */
body.mobile-view .products-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1px !important;
  background: rgba(255,255,255,0.08) !important;
  border: none !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  border-left: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  border-radius: 0 !important;
  flex-direction: unset !important;
  align-items: unset !important;
  justify-content: unset !important;
}

body.mobile-view .product-card {
  padding: 16px 12px 14px !important;
  border: none !important;
  border-radius: 0 !important;
  background: var(--black) !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

body.mobile-view .product-card:not(:last-child)::after {
  display: none !important;
}

body.mobile-view .card-code {
  font-size: 0.72rem !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

body.mobile-view .card-img-wrap {
  aspect-ratio: 1 !important;
  margin: 0 !important;
  flex: 1 !important;
}

body.mobile-view .card-img-wrap img {
  width: 85% !important;
  height: 85% !important;
}

body.mobile-view .card-name {
  font-size: 0.65rem !important;
  letter-spacing: 0.03em !important;
  line-height: 1.3 !important;
  margin-top: 8px !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

body.mobile-view .card-price {
  font-size: 0.7rem !important;
  margin-top: 6px !important;
}

body.mobile-view .card-cat {
  display: none !important;
}

body.mobile-view .pagination {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 20px 16px 10px !important;
  margin: 0 !important;
  width: 100% !important;
}

body.mobile-view .page-btn {
  min-width: 36px !important;
  height: 36px !important;
  font-size: 0.8rem !important;
  padding: 0 8px !important;
}

/* ===== MOBILE CONTACT PAGE ===== */
body.mobile-view .contact-hero {
  min-height: auto !important;
  padding: 80px 0 0 !important;
}

body.mobile-view .contact-hero .container {
  padding: 80px 20px 20px !important;
}

body.mobile-view .contact-hero .about-hero-title {
  font-size: 2rem !important;
  line-height: 1.15 !important;
}

body.mobile-view .contact-section {
  padding: 0 !important;
}

body.mobile-view .contact-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  align-items: stretch !important;
}

/* Form first on mobile */
body.mobile-view .contact-form-section {
  order: 1 !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 0 32px !important;
}

body.mobile-view .contact-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 24px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.mobile-view .contact-form input,
body.mobile-view .contact-form textarea {
  width: 100% !important;
  padding: 13px 16px !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: var(--white) !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
}

body.mobile-view .contact-form input:focus,
body.mobile-view .contact-form textarea:focus {
  border-color: var(--gold) !important;
}

body.mobile-view .contact-form textarea {
  min-height: 110px !important;
  resize: none !important;
}

body.mobile-view .contact-form .btn-primary {
  width: 100% !important;
  padding: 14px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.12em !important;
  border-radius: 8px !important;
  margin-top: 4px !important;
}

/* Contact info below form */
body.mobile-view .contact-info {
  order: 2 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  align-items: center !important;
}

body.mobile-view .contact-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 22px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  margin: 0 !important;
  width: 100% !important;
}

body.mobile-view .contact-item .eyebrow {
  font-size: 0.62rem !important;
  letter-spacing: 0.18em !important;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 6px !important;
  text-align: center !important;
}

body.mobile-view .contact-item p {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-align: center !important;
}

body.mobile-view .contact-item a {
  color: var(--white) !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
}

body.mobile-view .contact-item:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}