:root {
  --bg: #0f1114;
  --gray-900: #17191d;
  --gray-800: #1f2328;
  --gray-700: #2a2f36;
  --gray-600: #3a4049;
  --gray-500: #515866;
  --gray-400: #6b7280;
  --gray-300: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --text: #0e0f11;
  --muted: #5f6673;
  --accent: #f0b400;
  --accent-ink: #1a1a1a;
  --shadow: 0 10px 30px rgba(0, 0, 0, .1), 0 2px 8px rgba(0, 0, 0, .05);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #f1f1f1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 8px 0;
  background: #f1f1f1;
  border-bottom: 1px solid var(--gray-200);
}

.container.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #2b3138;
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #9aa1aa, #d6d9de);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6), inset 0 -1px 0 rgba(0, 0, 0, .06);
}

.logo svg {
  width: 22px;
  height: 22px;
}

.nav-desktop .menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-desktop .menu li {
  position: relative;
}

.nav-desktop .menu a {
  color: #2b3138;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  display: block;
}

.nav-desktop .menu a:hover {
  background: var(--gray-100);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.has-dropdown:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: var(--radius-sm);
  color: #222;
}

.dropdown a:hover {
  background: var(--gray-100);
}

.thumb {
  flex: 0 0 64px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #cfd3d9, #a8afb9);
  position: relative;
  overflow: hidden;
}

.thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, .45) 0 2px, rgba(255, 255, 255, 0) 2px 8px);
}

.burger-toggle {
  display: none;
}

.alp-burger {
  display: none;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
  z-index: 1201;
}

.alp-burger .line {
  display: block;
  width: 22px;
  height: 2px;
  background: #2b3138;
  margin: 4px 0;
  transition: transform .25s ease, opacity .2s ease;
}

.burger-toggle:checked~.header-actions .alp-burger .l1 {
  transform: translateY(6px) rotate(45deg);
}

.burger-toggle:checked~.header-actions .alp-burger .l2 {
  opacity: 0;
  transform: scaleX(0);
}

.burger-toggle:checked~.header-actions .alp-burger .l3 {
  transform: translateY(-6px) rotate(-45deg);
}

.alp-mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: auto;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height .4s ease, opacity .3s ease, visibility .3s;
  z-index: 1199;
}

.burger-toggle:checked~.alp-mobile-menu {
  max-height: 80vh;
  opacity: 1;
  visibility: visible;
}

.mobile-list {
  list-style: none;
  margin: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-list a,
.mobile-list p {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  padding: 10px 6px;
  width: 100%;
  display: block;
}

.mobile-toggle {
  font-size: 16px;
  cursor: pointer;
}

.mobile-submenu-css {
  display: none;
  padding-left: 10px;
  margin-top: 6px;
  flex-direction: column;
  gap: 6px;
}

.mobile-list li:hover>.mobile-submenu-css {
  display: flex;
}

.mobile-submenu-css a {
  font-weight: 500;
  padding: 6px;
  color: #444;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 15px;
  text-decoration: none;
}

.header-phone svg {
  flex-shrink: 0;
}

.cta {
  background: var(--accent) !important;
  color: var(--accent-ink);
  font-weight: 800;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(240, 180, 0, .25);
  transition: .15s;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  background: linear-gradient(120deg, #1f2328 0%, #2a2f36 50%, #3a4049 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: url('https://images.unsplash.com/photo-1523419409543-9cbbeacb6f29?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  filter: grayscale(100%) contrast(1.1) brightness(.72);
  opacity: .35;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
  padding: 64px 20px;
}

.eyebrow {
  color: #d1d5db;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.05;
  margin: 8px 0 16px;
}

.lead {
  font-size: clamp(16px, 2.4vw, 18px);
  color: #e5e7eb;
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.ghost {
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.ghost:hover {
  background: rgba(255, 255, 255, .08);
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  color: var(--text);
}

.hero-card h3 {
  margin: 0 0 6px;
}

.field {
  display: grid;
  gap: 6px;
  margin: 8px 0;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font: inherit;
}

.field input:focus {
  outline: 2px solid #cfd3d9;
  border-color: #cfd3d9;
}

.hero-card .cta {
  width: 100%;
  padding: 12px 16px;
  margin-top: 6px;
}

.section {
  padding: 20px 0;
}

.section-title {
  font-size: clamp(22px, 4.6vw, 36px);
  margin: 0 0 22px 0;
}

.mt-40 {
  margin-top: 40px;
}

.sec-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.sec-head h2 {
  font-size: clamp(22px, 4.6vw, 36px);
  margin: 0;
}

.sub {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px;
  transition: .2s;
}

.item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.item-figure {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-sm);
  background-color: #aab2bd;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.item-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.item h3 {
  margin: 2px 0 6px;
}

.item p {
  margin: 0;
  color: #5b6370;
  font-size: 15px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img,
.benefit-icon svg {
  width: 40px;
  height: auto;
  object-fit: contain;
  display: block;
}

.benefit-icon.flag {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon.flag img {
  width: 40px;
  height: auto;
}

.benefit-icon.icon-fix img {
  transform: translateY(-10%);
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.benefit-sub {
  font-size: 14px;
  color: #6b7280;
  margin-top: 2px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: center;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--gray-200);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
}

.comparison-table .row-title {
  text-align: left;
  font-weight: 600;
  background: #f9fafb;
}

.comparison-table .col-al {
  background: #fef2f2;
}

.check-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23e11d48" stroke-width="2" viewBox="0 0 24 24"><path d="M5 13l4 4L19 7"/></svg>') no-repeat center;
  background-size: contain;
}

.badge {
  display: inline-block;
  background: #f0b400;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
}

.ph {
  background: linear-gradient(135deg, #cfd3d9, #adb4be);
  height: 220px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.ph:before {
  content: "Photo projects";
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-weight: 700;
  color: rgba(0, 0, 0, .6);
}

footer {
  background: var(--gray-900);
  color: #d1d5db;
}

footer .container.foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding: 36px 20px;
}

.foot h4 {
  margin-top: 0;
}

.logo-min {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #9aa1aa, #d6d9de);
}

.foot a {
  color: #e5e7eb;
  opacity: .9;
}

.foot a:hover {
  opacity: 1;
}

.copy {
  background: #0e0f11;
  color: #a6adb7;
  font-size: 14px;
}

.copy .container {
  padding: 12px 20px;
}

@media (min-width: 769px) {
  .alp-mobile-menu,
  .burger-toggle,
  .alp-burger {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .item {
    grid-template-columns: 92px 1fr;
  }

  .item-figure {
    width: 92px;
    height: 72px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .ph {
    height: 200px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

  footer .container.foot {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .alp-burger {
    display: block;
  }

  .site-header {
    background: rgba(241, 241, 241, 0.95);
    backdrop-filter: blur(8px);
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    padding: 10px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-details h2,
.service-areas h2 {
  font-size: 28px;
  margin-top: 0;
}

.contact-info-block {
  margin: 24px 0;
  display: grid;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
}

.contact-info-item a {
  text-decoration: none;
  color: var(--text);
}

.contact-info-item a:hover {
  color: #000;
}

.contact-info-item svg {
  color: var(--accent);
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.location-pill {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.article-hero-header {
  padding: 48px 0;
  background-color: #fff;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}

.article-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-hero-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.post-meta {
  font-weight: 600;
  color: var(--muted);
  font-size: 15px;
}

.article-body-wrapper {
  padding-top: 40px;
}

.post-featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.related-products {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 56px 0;
}

.related-products .grid {
  grid-template-columns: repeat(3, 1fr);
}

.related-products .item h3 {
  font-size: 16px;
}

.related-products .item p {
  font-size: 14px;
}

@media (max-width: 960px) {
  .related-products .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .related-products .grid {
    grid-template-columns: 1fr;
  }
}

.article-container {
  max-width: 1100px;
}

.post-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.post-main-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-top: 0;
}

.post-meta {
  font-weight: 600;
  color: var(--muted);
  font-size: 14px;
  margin-top: -16px;
}

.post-sidebar-image {
  position: sticky;
  top: 120px;
}

.post-featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pagination-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.pagination-link,
.pagination-current {
  font-weight: 700;
}

.pagination-link {
  text-decoration: none;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--text);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.pagination-link:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.pagination-link.disabled {
  color: var(--gray-400);
  background: var(--gray-100);
  cursor: not-allowed;
  opacity: 0.7;
}

.pagination-current {
  color: var(--muted);
}

@media (max-width: 960px) {
  .post-layout-grid {
    grid-template-columns: 1fr;
  }

  .post-sidebar-image {
    position: relative;
    top: auto;
    order: -1;
    margin-bottom: 24px;
  }

  .post-main-content h1 {
    margin-top: 0;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-card-image {
  height: 220px;
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--gray-200);
}

.blog-card-content {
  padding: 24px;
}

.blog-card-content h3 {
  margin-top: 0;
  font-size: 20px;
  color: var(--text);
}

.blog-card-content p {
  color: var(--muted);
  font-size: 15px;
}

.read-more {
  font-weight: 700;
  color: var(--accent);
}

.article-container-grid {
  max-width: 1100px;
}

.post-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.post-sidebar-image {
  position: sticky;
  top: 100px;
}

.post-featured-image-sidebar {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-featured-image {
  display: none;
  margin-bottom: 24px;
}

.post-featured-image-inline {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .post-layout-grid {
    grid-template-columns: 1fr;
  }

  .post-sidebar-image {
    display: none;
  }

  .mobile-featured-image {
    display: block;
    order: -1;
  }
}

.single-post-content {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  padding-top: 24px;
}

.single-post-content p {
  margin-bottom: 1.5em;
}

.single-post-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 1em;
}

.single-post-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 1.8em;
  margin-bottom: 0.8em;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 1.5em;
  padding-left: 24px;
}

.single-post-content li {
  margin-bottom: 0.5em;
}

.single-post-content blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid var(--accent);
  background: #fff;
  font-style: italic;
  font-size: 1.1em;
  color: #111;
}

.single-post-content a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.single-post-content strong {
  color: #000;
}

.product-slider-section {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 10px 0;
}

.product-slider-container {
  position: relative;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}

.product-slider {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
  overflow: hidden;
}

.product-slide:hover {
  box-shadow: var(--shadow);
}

.slide-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.slide-content {
  padding: 20px;
}

.slide-content h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: var(--text);
}

.slide-content p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.slide-link {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.slide-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .product-slide {
    flex-basis: 280px;
  }
}

.pagination-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.pagination-link,
.pagination-current {
  font-weight: 700;
}

.pagination-link {
  text-decoration: none;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--text);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.pagination-link:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.pagination-link.disabled {
  color: var(--gray-400);
  background: var(--gray-100);
  cursor: not-allowed;
  opacity: 0.7;
}

.pagination-current {
  color: var(--muted);
}

@media (max-width: 960px) {
  .post-layout-grid {
    grid-template-columns: 1fr;
  }

  .post-sidebar-image {
    position: relative;
    top: auto;
    order: -1;
    margin-bottom: 24px;
  }

  .related-products .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .related-products .grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

@media (max-width: 768px) {
  .article-card {
    padding: 24px;
  }
}

.product-slider-container {
  position: relative;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

@media (max-width: 768px) {
  .slider-btn {
    display: none;
  }
}

.article-container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 32px;
}

.article-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.post-meta {
  font-weight: 600;
  color: var(--muted);
  font-size: 15px;
}

.post-featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.related-products {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 48px 0;
}

.related-products .container {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.related-products .grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .related-products .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .related-products .grid {
    grid-template-columns: 1fr;
  }
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.nav-link {
  display: block;
  width: 48%;
  text-decoration: none;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-link span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.nav-link strong {
  font-size: 17px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
}

.nav-link:hover strong {
  color: var(--accent);
}

.nav-link.next {
  text-align: right;
}

@media (max-width: 768px) {
  .post-navigation {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
  }

  .nav-link.next {
    text-align: left;
  }
}

.article-header {
  text-align: center;
  margin-bottom: 2rem;
}

.article-header h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.article-header .post-meta {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.25rem;
}

.notice {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  border-width: 1px;
  border-style: solid;
}

.notice.success {
  background-color: #dcfce7;
  color: #16a34a;
  border-color: #86efac;
}

.notice.error {
  background-color: #fee2e2;
  color: #ef4444;
  border-color: #fca5a5;
}

.site-footer {
  background-color: #212529;
  color: #f8f9fa;
  padding-top: 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #f8f9fa;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a,
.footer-section p a,
.footer-section .brand strong,
.footer-section .company-desc {
  color: #aeb4be;
  text-decoration: none;
  line-height: 1.5;
}

.footer-section ul li a:hover,
.footer-section p a:hover {
  color: #fff;
}

.footer-about .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.footer-about .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #aeb4be;
    border: 1px solid #aeb4be;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.social-links .social-icon svg {
    width: 20px;
    height: 20px;
}

.social-links .social-icon:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #171a1d;
}

.social-links .social-icon svg {
  width: 20px;
  height: 20px;
}

.locations-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.location-card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #1f2937;
}

.location-card p {
  color: #6b7280;
  line-height: 1.5;
}

.location-card .cta-button {
  margin-top: auto;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #ffc107;
  color: #212529;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.modal-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  max-width: 500px;
  width: 90%;
  box-sizing: border-box;
}

.form-field {
  margin-bottom: 20px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.quote-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #4a4a4a;
}

.cta-submit-button {
  width: 100%;
  padding: 12px;
  background-color: #f59e0b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
}

.modal-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #444;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-message {
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.form-message.success {
  background-color: #e6f1ea;
  color: #27663d;
}

.form-message.error {
  background-color: #f1e6e6;
  color: #662727;
}

.form-message::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.form-message.success::before {
  content: '✅';
}

.form-message.error::before {
  content: '❌';
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-main-content h1 {
  margin-top: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
}

.gallery-section {
  margin-top: 40px;
}

.gallery-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 10px;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.product-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-featured-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.sidebar-options-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}

.options-group h4 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}

.options-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.options-group li {
  font-size: 14px;
  background: var(--gray-100);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
}

.options-group:not(:last-child) {
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
    top: auto;
    margin-top: 40px;
  }
}

.sidebar-options-card .options-group ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.sidebar-options-card .options-group li {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.sidebar-options-card .options-group li:hover {
  background-color: #fff;
  border-color: var(--gray-300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.sidebar-options-card .color-swatch {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin-right: 8px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.breadcrumb-item {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item:hover {
  color: var(--accent);
}

.breadcrumb-item.is-active {
  color: var(--text);
  font-weight: 700;
  pointer-events: none;
}

.breadcrumb-divider {
  color: var(--gray-300);
  font-weight: 400;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 17, 20, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.lightbox-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: opacity 0.2s ease;
  cursor: default;
}

.lightbox-btn {
  position: absolute;
  color: #fff;
  border: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
}

.lightbox-close {
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  display: none;
}

.process-section {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
    padding: 15px 0 30px 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--accent) !important;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 0 40px 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 3px solid var(--accent) !important;
    top: 12px;
    border-radius: 50%;
    z-index: 1;
}
.wrap {
  padding-bottom: 1.5em;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    position: relative;
}

.timeline-icon {
    margin-bottom: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent) !important;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}

.timeline-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .timeline-container::after {
        left: 24px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .timeline-item::after {
        left: 14px;
    }
}
    .sticky-wrapper {
        position: sticky;
        top: 0;
        z-index: 100;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    .site-header {
        background-color: #fff;
        padding-top: 0;
        padding-bottom: 0;
    }
    .container.nav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    }
    .product-nav {
        background-color: #f0f0f0;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    .product-menu {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 2rem;
        position: relative;
    }
    .product-menu-item {
        position: relative;
    }
    .product-menu-link {
        display: block;
        padding: 0.75rem 1rem;
        color: #2b3138;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    .product-menu-link:hover {
        color: #cd7f32;
    }
    .product-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
        min-width: 200px;
        list-style: none;
        padding: 0.5rem 0;
        margin: 0;
        border-radius: 4px;
        z-index: 10;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border: 1px solid #e0e0e0;
    }
    .product-menu-item:hover > .product-dropdown {
        display: block;
    }
    .product-dropdown li a {
        color: #2b3138;
        padding: 0.75rem 1rem;
        text-decoration: none;
        display: block;
        transition: background-color 0.3s ease;
    }
    .product-dropdown li a:hover {
        background-color: #f5f5f5;
    }
    /* Адаптація для другої навігаційної панелі */
@media (max-width: 768px) {
  .product-nav .container {
    overflow-x: auto; /* Вмикає горизонтальну прокрутку, якщо вміст не влазить */
    -ms-overflow-style: none;  /* Приховує скролбар в IE та Edge */
    scrollbar-width: none;  /* Приховує скролбар в Firefox */
  }

  /* Повністю приховує смугу прокрутки в Chrome, Safari та Opera */
  .product-nav .container::-webkit-scrollbar {
    display: none;
  }

  .product-menu {
    /* Вирівнюємо елементи по лівому краю, щоб прокрутка починалася зліва */
    justify-content: flex-start; 
    
    /* Гарантуємо, що всі елементи залишаться в один рядок */
    white-space: nowrap; 
    
    /* Можна додати невеликий відступ справа, щоб останній елемент не "прилипав" до краю */
    padding-right: 15px;
  }
}