/*
Theme Name: Plana
Theme URI:
Author: Aljaž Kodrič
Description: Custom WordPress theme for Plana Group — hero slider + catalogue downloads, multilingual ready
Version: 1.1
Text Domain: plana
*/

/* ── SELF-HOSTED FONTS ── */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(assets/fonts/raleway-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(assets/fonts/raleway-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* WordPress admin bar — push sticky header down to sit below it */
body.admin-bar header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar header { top: 46px; } }

:root {
  --forest:      #182F2D;
  --teal-dark:   #00434B;
  --teal:        #157871;
  --teal-mid:    #52B2BE;
  --teal-light:  #9DBDB8;
  --teal-pale:   #E8F6F5;
  --text:        #182F2D;
  --text-muted:  #52706D;
  --border:      #C8DFDD;
  --white:       #FFFFFF;
  --bg:          #F3FAFA;
  --shadow:      0 4px 24px rgba(24,47,45,.10);
  --shadow-lg:   0 14px 48px rgba(24,47,45,.18);
  --radius:      16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ── */
header {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo img,
.custom-logo-link img,
.custom-logo { height: 72px; width: auto; object-fit: contain; }
.custom-logo-link { display: flex; align-items: center; }
.header-contact { display: flex; gap: 20px; font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }
.header-contact span { white-space: nowrap; }
.header-contact a { color: rgba(255,255,255,.65); text-decoration: none; }
.header-contact a:hover { color: white; }

/* ── NAV ── */
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  text-decoration: none;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav a:hover,
nav a.active,
nav .current-menu-item > a { color: var(--white); background: rgba(255,255,255,.15); }

/* ── LANG SWITCHER ── */
.lang-switcher { position: relative; flex-shrink: 0; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 7px 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.18); }
.lang-btn svg { width: 12px; height: 12px; transition: transform .2s; }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-width: 140px;
  z-index: 200;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: background .15s;
}
.lang-dropdown a:hover { background: var(--teal-pale); color: var(--teal); }
.lang-dropdown a.current { color: var(--teal); font-weight: 700; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 200; backdrop-filter: blur(4px); }
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 260px;
  background: var(--forest);
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav-panel a { text-decoration: none; color: rgba(255,255,255,.8); font-size: 16px; font-weight: 600; padding: 12px 16px; border-radius: 10px; transition: background .2s; }
.mobile-nav-panel a:hover, .mobile-nav-panel a.active { background: rgba(255,255,255,.12); color: var(--white); }
.mobile-nav-panel .lang-divider { border-top: 1px solid rgba(255,255,255,.15); margin: 8px 0; }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; color: rgba(255,255,255,.7); font-size: 24px; line-height: 1; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--forest) 100%);
  padding: 64px 24px 56px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); padding: 6px 16px; border-radius: 999px; margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.page-hero p { font-size: 1rem; opacity: .85; max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* ── MAIN ── */
main { flex: 1; }

/* ── HERO SLIDER ── */
.slider { position: relative; overflow: hidden; height: 600px; background: #001f1e; contain: layout style; }
.slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity .7s ease; pointer-events: none; will-change: opacity; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-overlay { position: absolute; inset: 0; }
.slide-1 .slide-overlay { background: linear-gradient(to right, rgba(24,47,45,.93) 0%, rgba(139,163,167,.7) 100%); }
.slide-2 .slide-overlay { background: linear-gradient(to right, rgba(0,67,75,.93) 0%, rgba(82,178,190,.65) 100%); }
.slide-3 .slide-overlay { background: linear-gradient(to right, rgba(25,39,66,.93) 0%, rgba(82,130,180,.6) 100%); }
.slide-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 48px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.slide-content { color: white; }
.slide-brand-logo { height: 54px; object-fit: contain; object-position: left; margin-bottom: 24px; filter: brightness(0) invert(1); opacity: .9; }
.slide-headline { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.5px; }
.slide-sub { font-size: .9rem; opacity: .75; margin-bottom: 32px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.slide-count { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; }
.slide-image-wrap { display: flex; align-items: center; justify-content: center; }
.slide-image-wrap img { max-height: 440px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 20px 60px rgba(0,0,0,.55)); }
.slide.active .slide-image-wrap img { animation: floatIn .9s ease forwards; }
@keyframes floatIn { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.btn-hero { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: white; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; padding: 13px 28px; border-radius: 999px; transition: background .25s, transform .2s, box-shadow .25s; box-shadow: 0 4px 14px rgba(21,120,113,.4); }
.btn-hero:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,120,113,.5); }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: white; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; backdrop-filter: blur(4px); }
.slider-arrow:hover { background: rgba(255,255,255,.25); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); border: 2px solid rgba(255,255,255,.55); cursor: pointer; transition: background .3s, transform .3s; }
.dot.active { background: white; transform: scale(1.25); }
.slider-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: rgba(255,255,255,.35); z-index: 10; width: 0%; transition: width linear; }
.scroll-hint { position: absolute; bottom: 56px; right: 36px; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.scroll-hint svg { animation: bounce 1.6s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ── CATALOGUE SECTION ── */
.cat-section { padding: 72px 24px 80px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); background: var(--teal-pale); padding: 6px 16px; border-radius: 999px; margin-bottom: 14px; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--text); letter-spacing: -0.3px; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: .95rem; }

.catalogue-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.cat-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; scroll-margin-top: 100px; }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat-card.blumax  { border-top: 3px solid #8BA3A7; }
.cat-card.petmax  { border-top: 3px solid var(--teal-mid); }
.cat-card.practic { border-top: 3px solid #6E8EC4; }
.cat-photo { position: relative; height: 200px; overflow: hidden; background: var(--forest); }
.cat-photo img.ambient { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; will-change: transform; transform: translateZ(0); }
.cat-card:hover .cat-photo img.ambient { transform: scale(1.05) translateZ(0); }
.cat-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(24,47,45,.08) 0%, rgba(24,47,45,.62) 100%); }
.cat-badge { position: absolute; top: 14px; right: 14px; background: white; color: var(--forest); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.cat-logo-strip { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 18px; }
.cat-logo-strip img { height: 30px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); }
.cat-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.cat-category { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); }
.cat-title { font-size: 1.5rem; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.cat-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.cat-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cat-note { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.btn-dl { display: inline-flex; align-items: center; gap: 7px; background: var(--teal); color: white; font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; padding: 10px 18px; border-radius: 999px; transition: background .25s, transform .2s, box-shadow .25s; box-shadow: 0 4px 12px rgba(21,120,113,.3); white-space: nowrap; }
.btn-dl:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(21,120,113,.4); }

/* ── ABOUT PAGE ── */
.page-content { padding: 64px 24px 80px; }
.container { max-width: 1100px; margin: 0 auto; }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.intro-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text); letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.2; }
.intro-text h2 span { color: var(--teal); }
.intro-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.intro-image { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-image-badge { position: absolute; bottom: 20px; left: 20px; background: white; border-radius: 12px; padding: 12px 18px; box-shadow: 0 4px 16px rgba(0,0,0,.12); font-size: 13px; font-weight: 700; color: var(--teal-dark); }
.intro-image-badge span { display: block; font-size: 22px; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 2px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 80px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--teal); letter-spacing: -1px; margin-bottom: 6px; }
.stat-label { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: .5px; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.section-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--text); letter-spacing: -0.3px; margin-bottom: 40px; }
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 80px; }
.brand-card { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3/4; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; }
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.brand-card img.bg { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; will-change: transform; transform: translateZ(0); }
.brand-card:hover img.bg { transform: scale(1.04) translateZ(0); }
.brand-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,30,28,.85) 0%, rgba(0,30,28,.2) 60%, transparent 100%); }
.brand-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; color: white; }
.brand-card-logo { height: 32px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); margin-bottom: 8px; display: block; }
.brand-card-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; opacity: .75; margin-bottom: 10px; }
.brand-card-cta { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: white; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; padding: 8px 16px; border-radius: 999px; backdrop-filter: blur(4px); transition: background .2s; }
.brand-card-cta:hover { background: rgba(255,255,255,.28); }
.cta-banner { background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-dark) 100%); border-radius: var(--radius); padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; color: white; }
.cta-banner h3 { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 8px; }
.cta-banner p { opacity: .85; font-size: .95rem; max-width: 440px; line-height: 1.6; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; padding: 13px 26px; border-radius: 999px; background: transparent; color: white; border: 2px solid rgba(255,255,255,.55); transition: background .25s, border-color .25s; white-space: nowrap; }
.btn-outline:hover { background: rgba(255,255,255,.14); border-color: white; }

/* ── PROSE (Privacy Policy, legal pages) ── */
.prose { max-width: 740px; margin: 0 auto; padding-bottom: 32px; }
.prose-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.prose h2 { font-size: 1.15rem; font-weight: 800; color: var(--forest); letter-spacing: -0.2px; margin: 48px 0 14px; padding-top: 24px; border-top: 1px solid var(--teal-pale); }
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.prose p { font-size: .975rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; }
.prose ul li { font-size: .975rem; color: var(--text-muted); line-height: 1.75; padding: 6px 0 6px 22px; position: relative; border-bottom: 1px solid var(--teal-pale); }
.prose ul li:last-child { border-bottom: none; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.prose ul li strong { color: var(--text); font-weight: 700; }
.prose address { font-style: normal; font-size: .975rem; color: var(--text-muted); line-height: 1.9; background: var(--teal-pale); border-left: 3px solid var(--teal); padding: 18px 20px; border-radius: 0 8px 8px 0; margin: 16px 0 24px; }
.prose address a { color: var(--teal-dark); text-decoration: none; font-weight: 600; }
.prose address a:hover { text-decoration: underline; }
.prose a { color: var(--teal-dark); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); padding: 40px; }
.form-card h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.form-card .form-sub { font-size: .9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 700; color: var(--text); }
.field label .req { color: var(--teal); margin-left: 2px; }
.field input, .field textarea,
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
  resize: none;
}
.field input:focus, .field textarea:focus,
.wpcf7 input[type="text"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(21,120,113,.12);
  background: var(--white);
}
.field-consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 24px; }
.field-consent input[type="checkbox"],
.wpcf7 input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--teal); cursor: pointer; }
.field-consent label { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.btn-submit,
.wpcf7 input[type="submit"] {
  width: 100%;
  background: var(--teal);
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background .25s, transform .2s;
  box-shadow: 0 4px 12px rgba(21,120,113,.3);
}
.btn-submit:hover,
.wpcf7 input[type="submit"]:hover { background: var(--teal-dark); transform: translateY(-2px); }
.wpcf7 label { font-size: 13px; font-weight: 700; color: var(--text); display: block; margin-bottom: 6px; }
.wpcf7 p { margin-bottom: 18px; }
.wpcf7-response-output { border-radius: 10px; border: 1.5px solid var(--border) !important; padding: 12px 16px !important; margin-top: 16px !important; font-size: 13px; }

.info-panel { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); padding: 28px; }
.info-card h3 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.info-card p, .info-card address { font-size: 14px; line-height: 1.8; font-style: normal; color: var(--text-muted); }
.info-card strong { color: var(--text); }
.info-card a { color: var(--teal); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
.map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; background: var(--teal-pale); color: var(--teal-dark); font-size: 13px; font-weight: 700; padding: 9px 16px; border-radius: 8px; text-decoration: none; transition: background .2s; }
.map-link:hover { background: var(--teal-light); color: var(--white); }

/* ── FOOTER ── */
footer { background: #0C1A19; color: #9ca3af; padding: 56px 24px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 48px; margin-bottom: 48px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 16px; }
.footer-col p, .footer-col address { font-size: 14px; line-height: 1.8; font-style: normal; color: #d1d5db; }
.footer-col a { color: #d1d5db; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--teal-mid); }
.footer-brands { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.brand-pill { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #d1d5db; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.footer-divider { border: none; border-top: 1px solid #1f3330; margin-bottom: 24px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-legal-link { color: #9ca3af; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-legal-link:hover { color: #f3f4f6; }

/* ── RESPONSIVE ── */

/* Tablet landscape — 1024px */
@media (max-width: 1024px) {
  .header-inner { padding: 0 20px; gap: 12px; }
  .slide-inner { padding: 0 32px; gap: 24px; }
  .catalogue-grid { gap: 20px; }
  .brands-grid { gap: 20px; }
  .cta-banner { padding: 48px 36px; }
  .contact-grid { grid-template-columns: 1fr 360px; gap: 36px; }
}

/* Tablet portrait — 900px */
@media (max-width: 900px) {
  .header-contact { display: none; }
  .catalogue-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro { grid-template-columns: 1fr; gap: 36px; }
  .intro-image { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .brands-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .brand-card { aspect-ratio: 4/5; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .page-content { padding: 48px 24px 64px; }
  .footer-grid { gap: 32px; }
}

/* Large phone / small tablet — 768px */
@media (max-width: 768px) {
  /* Header */
  nav, .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 64px; padding: 0 16px; }
  .logo img, .custom-logo-link img, .custom-logo { height: 52px; }

  /* Slider */
  .slider { height: auto; min-height: 520px; }
  .slide-inner { grid-template-columns: 1fr; padding: 20px 20px 56px; text-align: center; gap: 0; }
  .slide-image-wrap { order: -1; padding: 16px 0 12px; }
  .slide-image-wrap img { max-height: 180px; }
  .slide-brand-logo { height: 32px; object-position: center; margin: 0 auto 12px; display: block; }
  .slide-count { margin-bottom: 10px; font-size: 10px; }
  .slide-headline { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 8px; }
  .slide-sub { font-size: .78rem; margin-bottom: 20px; }
  .slider-arrow, .scroll-hint { display: none; }
  .slider-dots { bottom: 18px; }
  .btn-hero { padding: 12px 24px; font-size: 12px; }

  /* Catalogue */
  .cat-section { padding: 48px 16px 56px; }
  .section-header { margin-bottom: 36px; }
  .catalogue-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cat-photo { height: 220px; }
  .cat-footer { flex-direction: row; align-items: center; }
  .btn-dl { padding: 10px 16px; font-size: 11px; }

  /* About */
  .page-hero { padding: 40px 16px 36px; }
  .page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .page-content { padding: 40px 16px 56px; }
  .intro { gap: 28px; margin-bottom: 48px; }
  .brands-grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 48px; }
  .brand-card { aspect-ratio: 3/4; }
  .section-title { margin-bottom: 24px; }
  .cta-banner { padding: 32px 20px; text-align: center; justify-content: center; flex-direction: column; gap: 20px; }
  .cta-banner h3 { font-size: 1.3rem; }
  .btn-outline { width: 100%; justify-content: center; }

  /* Contact */
  .form-card { padding: 28px 20px; }
  .info-card { padding: 22px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
  footer { padding: 40px 16px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 12px; }
}

/* Phone — 600px */
@media (max-width: 600px) {
  /* About */
  .brands-grid { grid-template-columns: 1fr; gap: 14px; }
  .brand-card { aspect-ratio: 16/10; }
  .brand-card-body { padding: 18px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 2rem; }
  .intro-image { max-width: 100%; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 24px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Catalogue */
  .catalogue-grid { max-width: 100%; }
}

/* Small phone — 480px */
@media (max-width: 480px) {
  /* Header */
  .header-inner { height: 60px; }
  .logo img, .custom-logo-link img, .custom-logo { height: 44px; }

  /* Slider */
  .slider { min-height: 480px; }
  .slide-inner { padding: 16px 16px 52px; }
  .slide-image-wrap img { max-height: 150px; }
  .slide-brand-logo { height: 28px; }
  .slide-count { font-size: 10px; padding: 4px 10px; }
  .btn-hero { width: 100%; justify-content: center; }

  /* Catalogue */
  .cat-section { padding: 40px 12px 48px; }
  .cat-body { padding: 18px 16px 20px; }
  .cat-footer { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-dl { justify-content: center; }

  /* About */
  .page-content { padding: 32px 12px 48px; }
  .page-hero { padding: 32px 12px 28px; }
  .cta-banner { padding: 28px 16px; border-radius: 12px; }
  .stats { grid-template-columns: 1fr; }

  /* Contact */
  .form-card { padding: 20px 14px; border-radius: 12px; }
  .info-card { padding: 18px 14px; }

  /* Footer */
  footer { padding: 32px 12px 20px; }
  .footer-brands { gap: 6px; }

  /* Touch targets — all tappable elements min 44px */
  .btn-hero, .btn-dl, .btn-submit, .btn-outline,
  .wpcf7 input[type="submit"] { min-height: 44px; }
  nav a, .mobile-nav-panel a { min-height: 44px; display: flex; align-items: center; }
  .hamburger { padding: 10px; }
  .dot { width: 12px; height: 12px; }
}
