/* Najam krovnih kutija i nosača Zagreb – design system */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-border: #E0E0E0;
  --gray-text: #666666;
  --radius: 2px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--gray-text); }
p:last-child { margin-bottom: 0; }

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

.section {
  padding: 5rem 0;
}

.section--gray { background: var(--gray-light); }
.section--black { background: var(--black); color: var(--white); }
.section--black p { color: rgba(255,255,255,0.8); }

.section-header {
  margin-bottom: 3rem;
}

.section-header p {
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: #222;
}

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

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

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

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

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

.btn--white:hover {
  background: var(--gray-light);
}

.btn--full { width: 100%; }

/* Header – floating pill (Elementor-style) */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 1.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 9999px;
  min-height: 56px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  min-width: 0;
}

.logo__text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.logo__text {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  white-space: nowrap;
}

.logo__tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-text);
  white-space: nowrap;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo__subtitle {
  display: none;
}

.nav {
  display: none;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex-wrap: nowrap;
}

.nav__link {
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav__link:hover {
  background: var(--gray-light);
}

.nav__link--active {
  background: var(--gray-light);
  font-weight: 600;
}

.header__divider {
  display: none;
  width: 1px;
  height: 24px;
  background: var(--gray-border);
  flex-shrink: 0;
}

.header__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header__utility {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 9999px;
  transition: background 0.2s;
  white-space: nowrap;
}

.header__utility:hover {
  background: var(--gray-light);
}

.header__utility svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn--pill {
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 9999px;
  border: none;
  background: var(--black);
  color: var(--white);
}

.btn--pill:hover {
  background: #222;
}

.header__cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: var(--gray-light);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger--open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 5.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  z-index: 999;
  padding: 1.25rem 1.5rem 1.5rem;
  overflow-y: auto;
  max-height: calc(100vh - 6.5rem);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.mobile-nav--open { display: block; }

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-border);
}

.mobile-nav__link:last-child {
  border-bottom: none;
}

.mobile-nav__cta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-border);
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-text);
  margin: 1.5rem 0 2rem;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.85) contrast(1.05);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-border);
}

.trust-badge {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-text);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s;
}

.card--media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--media .card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.92);
  background: var(--gray-light);
}

.card--media:hover {
  border-color: var(--black);
}

.card:hover {
  border-color: var(--black);
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Promo */
.promo-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.promo-card {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.promo-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.promo-card__price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.promo-card__note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.promo-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.promo-grid__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  filter: saturate(0.92);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-strip__item {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  filter: saturate(0.92);
}

.page-banner {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  margin-bottom: 2rem;
  filter: saturate(0.92);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}

.split-feature__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  filter: saturate(0.92);
}

.split-feature .features-grid {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .split-feature .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

th, td {
  padding: 1rem 1.25rem;
  text-align: left;
  border: 1px solid var(--black);
}

th {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr:nth-child(even) {
  background: var(--gray-light);
}

.table-note {
  font-size: 0.875rem;
  color: var(--gray-text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Why us / features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1.25rem;
}

.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: 1.25rem;
}

.feature__title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature__text {
  font-size: 0.9375rem;
  color: var(--gray-text);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 2rem;
}

.review-card__quote {
  font-size: 2rem;
  line-height: 1;
  color: var(--gray-border);
  margin-bottom: 0.75rem;
}

.review-card__text {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-card__author {
  font-size: 0.875rem;
  font-weight: 600;
}

/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: 5rem 0;
}

.cta-banner__phone {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 1.5rem 0;
  letter-spacing: 0.02em;
}

.cta-banner__phone:hover {
  opacity: 0.85;
}

.cta-banner__text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--black);
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item--open .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--gray-text);
  font-size: 0.9375rem;
}

.faq-item--open .faq-answer {
  display: block;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--gray-border);
}

.page-hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-text);
  margin-top: 1rem;
  max-width: 700px;
}

.page-content {
  padding: 4rem 0;
}

.page-content h2 {
  margin-top: 3rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.content-image {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 2rem 0;
  filter: saturate(0.85);
}

.bullet-list {
  margin: 1rem 0 1.5rem 1.25rem;
}

.bullet-list li {
  list-style: disc;
  color: var(--gray-text);
  margin-bottom: 0.5rem;
}

.internal-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-border);
  font-size: 0.9375rem;
}

.internal-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.internal-links a:hover {
  color: var(--gray-text);
}

.page-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  text-align: center;
}

.page-cta h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Product cards */
.product-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.product-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: saturate(0.85);
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__specs {
  font-size: 0.875rem;
  color: var(--gray-text);
}

/* Tabs (cjenik) */
.tabs {
  margin-bottom: 2rem;
}

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--gray-border);
}

.tabs__btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--gray-text);
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.tabs__btn--active {
  color: var(--black);
  border-bottom-color: var(--black);
  font-weight: 600;
}

.tabs__panel {
  display: none;
  padding-top: 2rem;
}

.tabs__panel--active {
  display: block;
}

.tab-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
}

.tab-placeholder h3 {
  margin-bottom: 0.75rem;
}

.footer-note {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-border);
  font-size: 0.8125rem;
  color: var(--gray-text);
}

/* About page */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.info-block h3 {
  margin-bottom: 0.5rem;
}

.hours-list li {
  color: var(--gray-text);
  margin-bottom: 0.25rem;
}

.map-embed {
  width: 100%;
  height: 400px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-top: 2rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info__phone {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

.contact-info__phone:hover {
  opacity: 0.85;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.25rem;
}

.contact-detail__value {
  font-size: 1rem;
}

.contact-note {
  padding: 1.25rem;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  margin-top: 2rem;
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-label span {
  color: var(--gray-text);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--black);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-text);
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--gray-text);
}

.form-note a {
  font-weight: 600;
  text-decoration: underline;
}

.form-success {
  display: none;
  padding: 2rem;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  text-align: center;
}

.form-success--visible {
  display: block;
}

/* Footer – Elementor-style multi-column */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 2.5rem;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer__logo {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer__logo:hover {
  opacity: 0.85;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.footer__social-link:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__about {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 360px;
}

.footer__newsletter-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__newsletter-form {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  max-width: 360px;
  margin-bottom: 0.75rem;
}

.footer__newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 1rem;
  border: none;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--black);
  background: transparent;
}

.footer__newsletter-input::placeholder {
  color: #999;
}

.footer__newsletter-input:focus {
  outline: none;
}

.footer__newsletter-btn {
  flex-shrink: 0;
  padding: 0.875rem 1.25rem;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.footer__newsletter-btn:hover {
  background: #222;
}

.footer__newsletter-note {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
  max-width: 360px;
  margin-bottom: 2rem;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 360px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

.footer__col {
  min-width: 0;
}

.footer__heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  line-height: 1.4;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__subheading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

.footer__col .footer__subheading:first-child {
  margin-top: 0;
}

.footer__newsletter-success {
  display: none;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

.footer__newsletter-success--visible {
  display: block;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .product-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .footer__main {
    grid-template-columns: minmax(280px, 1fr) 2fr;
    gap: 4rem;
  }

  .footer__nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

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

  .promo-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-feature {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .header__divider {
    display: block;
  }

  .header__actions {
    display: flex;
  }

  .hamburger {
    display: none;
  }

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

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

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

  .feature {
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .header__pill {
    padding: 0.5rem 0.625rem 0.5rem 1rem;
    gap: 1.25rem;
  }

  .nav__link {
    padding: 0.5rem 0.75rem;
  }

  .logo__text {
    font-size: 0.875rem;
  }

  .logo__tagline {
    font-size: 0.75rem;
  }
}

/* Mega menu – Thule style */
.mega-menu-trigger {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--black);
  padding: 0.5rem 0.625rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}

.mega-menu-trigger:hover,
.mega-menu-trigger--open {
  background: var(--gray-light);
}

.mega-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  pointer-events: none;
}

.mega-menu--open {
  display: block;
  pointer-events: auto;
}

.mega-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.mega-menu__panel {
  position: absolute;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 960px;
  max-height: calc(100vh - 7rem);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mega-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-border);
  flex-shrink: 0;
}

.mega-menu__back {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-right: 1rem;
}

.mega-menu__back[hidden] {
  display: none;
}

.mega-menu__title {
  font-size: 0.9375rem;
  font-weight: 600;
  flex: 1;
}

.mega-menu__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.mega-menu__body {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 280px;
  overflow: hidden;
}

.mega-menu__col-left {
  overflow-y: auto;
  border-right: none;
}

.mega-menu__col-right {
  display: none;
  background: #E8E4DC;
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
}

.mega-menu__col-right--visible {
  display: block;
}

.mega-menu__list,
.mega-menu__sublist {
  list-style: none;
}

.mega-menu__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--gray-border);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: var(--black);
  transition: background 0.15s;
}

.mega-menu__item:hover,
.mega-menu__item--active {
  background: #E8E4DC;
}

.mega-menu__item--active {
  box-shadow: inset 0 0 0 1px var(--black);
}

.mega-menu__arrow {
  color: var(--gray-text);
  font-size: 0.875rem;
}

.mega-menu__show-all {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
}

.mega-menu__show-all:hover {
  text-decoration: underline;
}

.mega-menu__sublist a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mega-menu__sublist a:hover {
  text-decoration: underline;
}

.mega-menu__sublist li:last-child a {
  border-bottom: none;
}

/* Mobile mega in hamburger */
.mobile-mega {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.mobile-mega__btn,
.mobile-mega__back {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.875rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--gray-border);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--black);
}

.mobile-mega__back {
  font-weight: 600;
  color: var(--gray-text);
}

.mobile-mega__show-all {
  display: block;
  font-weight: 700;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--gray-border);
}

.mobile-mega__link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-border);
}

.mobile-mega__link:hover {
  color: var(--black);
}

.category-index {
  padding: 4rem 0;
}

.category-index__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.category-block {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.category-block h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.category-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-block a {
  font-size: 0.9375rem;
  color: var(--gray-text);
}

.category-block a:hover {
  color: var(--black);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .mega-menu__body {
    grid-template-columns: 1fr 1fr;
  }

  .mega-menu__col-left {
    border-right: 1px solid var(--gray-border);
  }

  .category-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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