/* =========================================================
   ATOM EXPO — /nova static rebuild stylesheet
   Design tokens taken from the live Elementor global kit.
   ========================================================= */

/* 1. Design tokens ---------------------------------------- */
:root {
  --color-primary: #ED6A08;
  --color-primary-light: #FF9251;
  --color-rust: #B8460C;
  --color-blue: #1B4B66;
  --color-blue-light: #E8F1F4;
  --color-secondary: #FFFFFF;
  --color-accent: #DD7D63;
  --color-text: #1a1a1a;
  --color-text-muted: #5c5c5c;
  --color-alert: #FF273B;
  --color-bg-light: var(--color-blue-light);
  --color-bg: #FFFFFF;
  --color-border: #e6e0e0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Trebuchet MS', 'Roboto', Arial, sans-serif;
  --max-width: 1200px;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* 2. Reset / base ------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6em;
  color: var(--color-text);
}
h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 64px 0; }
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Bled oranžen vodni žig (atomska ikona) v ozadju izbranih razdelkov */
.section-watermark { position: relative; overflow: hidden; }
.section-watermark::before {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 440px;
  height: 440px;
  background: url('/assets/img/uploads/2022/08/Untitled-1-02.png') no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.section-watermark > .section-inner { position: relative; z-index: 1; }
@media (max-width: 760px) {
  .section-watermark::before { width: 260px; height: 260px; right: -60px; bottom: -60px; }
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-primary);
  text-decoration: none;
}

/* 3. Header + nav -------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img { height: 76px; width: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 12px 16px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a[aria-current="page"] {
  color: var(--color-primary);
  background: var(--color-bg-light);
}
.main-nav > ul > li > a.nav-highlight {
  color: #fff;
  background: var(--color-primary);
}
.main-nav > ul > li > a.nav-highlight:hover,
.main-nav > ul > li > a.nav-highlight[aria-current="page"] {
  color: #fff;
  background: var(--color-primary-light);
}
.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
}
.main-nav .has-dropdown:hover > .dropdown,
.main-nav .has-dropdown:focus-within > .dropdown,
.main-nav .has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav .dropdown li a:hover { color: var(--color-primary); background: var(--color-bg-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

/* 4. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-content { max-width: 640px; }
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  margin-bottom: 0.4em;
}
.hero p {
  color: #fff;
  font-size: 1.15rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  margin-bottom: 1.6em;
}

/* Hero — skica (levo, barvna ploskev) + resnična gradnja (desno, fotografija) */
.hero-combo { padding: 0; align-items: stretch; }
.hero-combo-grid { display: grid; grid-template-columns: 5fr 7fr; width: 100%; min-height: 420px; }
.hero-combo-panel {
  position: relative; overflow: hidden; background: var(--color-rust);
  display: flex; align-items: center; padding: 40px 44px;
}
.hero-combo-sketch { position: absolute; right: -12%; bottom: -10%; width: 78%; opacity: 0.4; }
.hero-combo-sketch path {
  stroke-dasharray: 900; stroke-dashoffset: 900;
  animation: hero-sketch-draw 1.6s ease-out forwards;
}
.hero-combo-sketch path:nth-child(2) { animation-delay: 0.12s; }
.hero-combo-sketch path:nth-child(3) { animation-delay: 0.24s; }
.hero-combo-sketch path:nth-child(4) { animation-delay: 0.36s; }
.hero-combo-sketch path:nth-child(5) { animation-delay: 0.48s; }
.hero-combo-sketch path:nth-child(6) { animation-delay: 0.6s; }
@keyframes hero-sketch-draw { to { stroke-dashoffset: 0; } }
.hero-combo-text { position: relative; z-index: 2; max-width: 460px; }
.hero-combo-text h1 { color: #fff; font-size: 2.3rem; text-shadow: none; margin-bottom: 0.4em; }
.hero-combo-text p { color: #FFE7D3; text-shadow: none; font-size: 1.05rem; margin-bottom: 1.6em; }
.btn-white { background: #fff; color: var(--color-rust); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.hero-combo-photo { position: relative; overflow: hidden; }
.hero-combo-photo img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 40%; filter: saturate(1.1); }
.hero-combo-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(184,70,12,0.5) 0%, rgba(184,70,12,0) 20%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-combo-sketch path { animation: none; stroke-dashoffset: 0; }
}

/* trust bar */
.trust-bar {
  background: var(--color-bg-light);
  padding: 28px 0;
  text-align: center;
}
.trust-bar p { margin: 0.2em 0; }
.trust-bar p:first-child { font-weight: 600; }

/* 5. Feature / checklist / process blocks ----------------------- */
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-heading h2 { margin-bottom: 0.4em; }
.section-heading p { color: var(--color-text-muted); font-size: 1.1rem; }

.services-accordion { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.service-item {
  width: 94%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
}
.service-item:nth-child(odd) { justify-self: start; }
.service-item:nth-child(even) { justify-self: end; }
@media (max-width: 700px) {
  .service-item { width: 100%; justify-self: stretch; }
}
.service-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--color-bg-light);
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background 0.15s ease;
}
.service-trigger:hover { background: #ede4e4; }
.service-icon { flex: none; width: 30px; height: 30px; color: var(--color-primary); }
.service-icon svg { width: 100%; height: 100%; }
.service-title { flex: 1; }
.service-chevron {
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.service-trigger[aria-expanded="true"] .service-chevron { transform: rotate(-135deg); }
.service-panel { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
@media (prefers-reduced-motion: reduce) {
  .service-panel, .service-chevron { transition: none; }
}
.service-panel-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
}
.service-panel-inner--text-only { grid-template-columns: 1fr; }
.service-panel-inner img { width: 100%; border-radius: var(--radius); display: block; }
.service-panel-inner p { margin: 0; color: var(--color-text-muted); line-height: 1.6; }
.service-link { display: inline-block; margin-top: 10px; color: var(--color-primary); font-weight: 600; text-decoration: none; }
.service-link:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .service-panel-inner { grid-template-columns: 1fr; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.service-card {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}
.service-card h3 { color: var(--color-primary); font-size: 1.15rem; }
.service-card p { color: var(--color-text-muted); margin: 0; font-size: 0.98rem; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 32px 24px 24px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
}
.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.1rem; }
.process-step p { color: var(--color-text-muted); font-size: 0.95rem; margin: 0; }

.trust-block {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--radius);
  max-width: var(--max-width);
  margin: 0 auto;
}
.trust-block h2, .trust-block p { color: #fff; }
.trust-block .section-heading p { color: rgba(255,255,255,0.9); }

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-teaser img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Before/after comparison pairs (static image pairs, confirmed no interactive slider on live site) */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.compare-pair {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-pair .compare-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-pair img { height: 220px; width: 100%; object-fit: cover; }
.compare-pair .compare-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: center;
}
.compare-pair .compare-labels span { padding: 8px; background: var(--color-bg-light); }
.compare-pair .compare-labels span:first-child { border-right: 1px solid #fff; }

/* Inline gallery strip (mixed real/3D photos used on Home) — organska mozaična
   postavitev namesto toge enotne mreže: prva (najnovejša) fotografija je
   poudarjena in večja, nekaj drugih je izmenično širših/višjih. */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 14px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.photo-strip a { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 100%; }
.photo-strip img { height: 100%; width: 100%; object-fit: cover; display: block; transition: transform 0.25s ease; }
.photo-strip a:hover img { transform: scale(1.05); }
.photo-strip a:first-child { grid-column: span 2; grid-row: span 2; }
.photo-strip a:nth-child(6) { grid-row: span 2; }
.photo-strip a:nth-child(9) { grid-column: span 2; }
@media (max-width: 640px) {
  .photo-strip a:first-child,
  .photo-strip a:nth-child(6),
  .photo-strip a:nth-child(9) { grid-column: span 1; grid-row: span 1; }
  .photo-strip { grid-auto-rows: 160px; }
}

.bg-light { background: var(--color-bg-light); }

/* 6. CTA block (shared partial: advice + inquiry form) ----------- */
.cta-block { background: var(--color-bg-light); }
.cta-block-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.cta-lead { color: var(--color-text-muted); }
.cta-address { margin: 20px 0; }
.cta-address li { padding: 3px 0; }
.cta-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 16px;
}
.cta-form form { background: #fff; padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-status { margin-top: 12px; font-size: 0.9rem; font-weight: 600; }
.form-status:empty { display: none; }
.form-status-loading { color: var(--color-text-muted); }
.form-status-ok { color: #1c7a3f; }
.form-status-error { color: #a32323; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--color-text-muted); }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* 7. Footer -------------------------------------------------------- */
.site-footer { background: var(--color-rust); color: #FBE4D3; padding-top: 56px; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-logo-col img { height: 90px; width: auto; }
.footer-col h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { padding: 4px 0; font-size: 0.92rem; }
.footer-col a { color: #FBE4D3; }
.footer-col a:hover { color: #fff; }
.social-links { display: flex; gap: 12px; margin-top: 16px; padding: 0; }
.social-links li { padding: 0; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff;
  transition: background .15s, color .15s;
}
.social-links a:hover { background: #fff; color: var(--color-rust); }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #F6D9C4;
}
.footer-bottom a { color: #FBE4D3; }

/* 8. Product grid / card (katalog) ---------------------------------- */
.katalog-intro { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}
.category-filter button {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.category-filter button:hover,
.category-filter button.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.product-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card a { text-decoration: none; color: inherit; display: block; }
.product-card .product-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--color-bg-light);
}
.product-card .product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-card .product-info { padding: 14px 16px; }
.product-card .product-category { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-primary); }
.product-card .product-title { font-size: 0.95rem; font-weight: 600; margin-top: 4px; color: var(--color-text); }
.product-count { text-align: center; color: var(--color-text-muted); margin-bottom: 24px; font-size: 0.9rem; }

/* 9. Single product page --------------------------------------------- */
.product-breadcrumb { max-width: var(--max-width); margin: 0 auto 24px; padding: 0 24px; font-size: 0.85rem; color: var(--color-text-muted); }
.product-breadcrumb a { color: var(--color-text-muted); }
.product-single {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.product-single .product-gallery img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.product-single .product-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-primary);
  background: var(--color-bg-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.product-single h1 { font-size: 2rem; }
.product-features { margin: 24px 0; }
.product-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
.product-features li::before { content: "\2713 "; color: var(--color-primary); font-weight: 700; }
.product-note { color: var(--color-text-muted); font-size: 0.92rem; margin-top: 24px; }
.product-not-found { max-width: var(--max-width); margin: 0 auto; padding: 80px 24px; text-align: center; }

/* 10. Gallery + lightbox ------------------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-grid a { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: zoom-in; }
.gallery-grid img { height: 190px; width: 100%; object-fit: cover; transition: transform 0.25s ease; }
.gallery-grid a:hover img { transform: scale(1.05); }

.galerija-albumi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.galerija-album-card { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: var(--color-text); }
.galerija-album-thumb { aspect-ratio: 4 / 3; background: var(--color-bg-light); overflow: hidden; }
.galerija-album-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.galerija-album-card:hover .galerija-album-thumb img { transform: scale(1.05); }
.galerija-album-info { padding: 14px 16px; }
.galerija-album-info h3 { margin: 0 0 4px; font-size: 1.05rem; }
.galerija-album-info span { font-size: 0.85rem; color: var(--color-text-muted); }

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
#lightbox.visible { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
#lightbox .lightbox-close,
#lightbox .lightbox-prev,
#lightbox .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
#lightbox .lightbox-close { top: 20px; right: 20px; }
#lightbox .lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
#lightbox .lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
#lightbox .lightbox-close:hover,
#lightbox .lightbox-prev:hover,
#lightbox .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* 11. Responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .cta-block-inner,
  .about-teaser,
  .product-single { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    padding: 80px 24px 24px;
    transition: right 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 16px;
  }
  .main-nav .has-dropdown.open .dropdown { display: block; }
  .hero h1 { font-size: 2.1rem; }
  .hero { min-height: 420px; }
  .hero-combo-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-combo-panel { padding: 36px 24px; order: 2; }
  .hero-combo-photo { height: 240px; order: 1; }
  .hero-combo-text h1 { font-size: 1.7rem; }
  section { padding: 44px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card .product-info { padding: 10px 12px; }
  .product-card .product-title { font-size: 0.85rem; }
  .product-card .product-category { font-size: 0.65rem; }
}

/* 12. Blog ------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.blog-card {
  display: block;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-thumb { aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: var(--color-bg-light); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 16px 18px; }
.blog-date { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-primary); }
.blog-card-title { font-size: 1.1rem; margin: 6px 0 8px; color: var(--color-text); }
.blog-excerpt { font-size: 0.92rem; color: var(--color-text-muted); margin: 0; }

.blog-post-inner { max-width: 760px; }
.blog-post h1 { font-size: 2rem; margin-top: 6px; }
.blog-post-cover { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin: 20px 0; }
.blog-post-content { font-size: 1.05rem; line-height: 1.7; }
.blog-post-content p { margin: 0 0 1.2em; }
.blog-post-content img { width: 100%; border-radius: var(--radius); margin: 1.2em 0; }
.blog-post-content h2 { font-size: 1.4rem; margin: 1.4em 0 0.6em; }
.blog-post-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin: 24px 0; }
.blog-post-gallery a { display: block; border-radius: var(--radius); overflow: hidden; }
.blog-post-gallery img { width: 100%; height: 150px; object-fit: cover; display: block; transition: opacity .15s; }
.blog-post-gallery img:hover { opacity: .85; }
.blog-share { display: flex; align-items: center; gap: 12px; margin: 32px 0; font-size: 0.9rem; color: var(--color-text-muted); }
.blog-share a { border: 1px solid var(--color-border); border-radius: 20px; padding: 6px 16px; color: var(--color-text); }
.blog-share a:hover { border-color: var(--color-primary); color: var(--color-primary); }

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