﻿/* -------------------------------------------------------------------------- */
/* Fonts                                                                      */
/* -------------------------------------------------------------------------- */

@font-face {
  font-family: Kalameh;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/kalameh/KalamehWeb-Regular.woff2') format('woff2');
}

@font-face {
  font-family: Kalameh;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/kalameh/KalamehWeb-Medium.woff2') format('woff2');
}

@font-face {
  font-family: Kalameh;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/kalameh/KalamehWeb-Bold.woff2') format('woff2');
}

@font-face {
  font-family: Kalameh;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/kalameh/KalamehWeb-Black.woff2') format('woff2');
}

/* -------------------------------------------------------------------------- */
/* Variables & base                                                           */
/* -------------------------------------------------------------------------- */

:root {
  --mk-red: #e2001a;
  --mk-red-dark: #b60017;
  --mk-black: #111218;
  --mk-text: #25262c;
  --mk-muted: #747783;
  --mk-bg: #f4f5f7;
  --mk-border: #e6e7ec;
  --mk-shadow: 0 18px 55px rgba(10, 11, 18, .10);
  --mk-shadow-soft: 0 12px 30px rgba(10, 11, 18, .08);
  --mk-radius-lg: 28px;
  --mk-radius-md: 18px;
  --mk-container: 1180px;
  --mk-font: "Kalameh", sans-serif;
  --mk-readmore-height: 500px;
  --mk-header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  direction: rtl;
  background: var(--mk-bg);
  color: var(--mk-text);
  font-family: var(--mk-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .product-sticky-bar {
  z-index: 800;
}

h1,
h2,
h3,
strong {
  font-family: var(--mk-font);
  font-weight: 900;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--mk-red);
}

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

button,
input {
  font: inherit;
}

ul,
ol {
  padding-right: 20px;
}

.mk-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: -0.125em;
  fill: currentColor;
}

.icon-left {
  margin-left: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--mk-black);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.btn:hover {
  background: var(--mk-red);
  color: #fff;
}

.btn .mk-icon,
.read-more .mk-icon,
.faq-cta-btn .mk-icon {
  margin: 0;
}

.support-btn.btn {
  padding: 0 17px;
  background: var(--mk-red);
  box-shadow: 0 9px 20px rgba(226, 0, 26, .22);
}

.support-btn.btn:hover {
  background: var(--mk-red-dark);
}

.mobile-menu-btn.btn {
  padding: 0 17px;
  background: var(--mk-black);
}

.hero-search .btn {
  min-height: 50px;
  padding: 0 30px;
  border-radius: 16px;
  background: var(--mk-red);
  font-size: 15px;
}

.hero-search .btn:hover {
  background: var(--mk-red-dark);
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9999;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--mk-black);
  color: #fff;
}

.container {
  width: min(var(--mk-container), calc(100% - 32px));
  margin-inline: auto;
}

.narrow-container {
  width: min(900px, calc(100% - 32px));
  margin-inline: auto;
}

/* -------------------------------------------------------------------------- */
/* Header & navigation                                                        */
/* -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--mk-header-height);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 231, 236, .86);
  transition: box-shadow .25s ease;
}

@media (max-width: 1120px) {
  .site-header {
    backdrop-filter: none;
    background: rgba(255, 255, 255, .98);
  }
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(10, 11, 18, .07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: var(--mk-header-height);
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  width: 135px;
  height: auto;
  aspect-ratio: 135 / 48;
}

.site-nav {
  flex: 1 1 auto;
}

.site-nav__mobile-head {
  display: none;
}

.menu-list,
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav > .menu-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-item {
  position: relative;
}

.site-nav .menu-item > a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: #2a2b31;
  white-space: nowrap;
}

.site-nav .menu-item > a:hover,
.site-nav .menu-item:hover > a {
  background: #f2f3f5;
  color: var(--mk-red);
}

.submenu-icon {
  margin-right: 6px;
  opacity: .72;
}

.site-nav .submenu-toggle,
.site-nav .is-parent-link {
  display: none;
}

.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-md);
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}

.site-nav .sub-menu .sub-menu {
  top: 0;
  right: calc(100% + 8px);
}

.site-nav .menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .sub-menu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav .sub-menu a:hover {
  background: #f7f7f9;
  color: var(--mk-red);
}

.header-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.support-btn,
.mobile-menu-btn {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu-btn {
  display: none;
  color: #fff;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(10, 11, 18, .52);
}

/* -------------------------------------------------------------------------- */
/* Hero & finder                                                              */
/* -------------------------------------------------------------------------- */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(226, 0, 26, .28), transparent 27%),
    linear-gradient(135deg, #111218 0%, #1b1c22 42%, #050608 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 55%;
  background: linear-gradient(to top, var(--mk-bg), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 96px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-content p {
  margin: 10px 0 28px;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 500;
  color: #e8e9ef;
}

.hero-search {
  display: flex;
  align-items: center;
  max-width: 720px;
  padding: 8px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  padding: 15px 16px;
  border: 0;
  outline: none;
  color: var(--mk-text);
}

.hero-search button {
  cursor: pointer;
}

.finder-shell {
  position: relative;
  z-index: 2;
  margin-top: -92px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  background: #fff;
  box-shadow: var(--mk-shadow);
}

/* -------------------------------------------------------------------------- */
/* Catalog showcase (products + categories)                                   */
/* -------------------------------------------------------------------------- */

.catalog-showcase {
  position: relative;
  overflow: hidden;
  padding-bottom: 52px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(226, 0, 26, .2), transparent 44%),
    radial-gradient(ellipse at 88% 100%, rgba(226, 0, 26, .12), transparent 40%),
    linear-gradient(180deg, #0f1015 0%, #171920 48%, #101118 100%);
}

.catalog-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
  pointer-events: none;
}

.catalog-showcase .products-section,
.catalog-showcase .category-cards-section {
  position: relative;
  z-index: 1;
  background: transparent;
}

.catalog-showcase .products-section {
  padding-bottom: 24px;
}

.catalog-showcase .category-cards-section {
  padding-top: 0;
}

.catalog-showcase .category-cards-section::before {
  content: "";
  display: block;
  width: min(220px, 42%);
  height: 1px;
  margin: 0 auto 30px;
  background: linear-gradient(to left, transparent, rgba(226, 0, 26, .55), transparent);
}

.catalog-showcase .section-head h2 {
  color: #fff;
}

.catalog-showcase .section-head h2 .mk-icon {
  color: var(--mk-red);
}

.catalog-showcase .product-card {
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .32);
}

.catalog-showcase .product-card:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, .42);
}

.catalog-showcase .category-card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .24);
}

.catalog-showcase .category-card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(226, 0, 26, .38);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.catalog-showcase .category-card-title {
  color: #eef0f4;
}

/* -------------------------------------------------------------------------- */
/* Sections                                                                   */
/* -------------------------------------------------------------------------- */

.section {
  padding: 52px 0;
}

.latest-posts-section {
  padding-top: 28px;
}

.more-posts-section,
.faq-section {
  background: #fff;
}

.promo-banners-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.section-head.is-center {
  display: block;
  text-align: center;
  margin-bottom: 28px;
}

.section-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(23px, 3vw, 32px);
  color: var(--mk-black);
}

.section-more-link {
  margin-top: 26px;
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Cards & grids                                                              */
/* -------------------------------------------------------------------------- */

.latest-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.archive-product-grid,
.product-related .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.more-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.post-card,
.product-card,
.category-card,
.archive-card,
.single-content-card,
.not-found-card {
  overflow: hidden;
  border: 1px solid var(--mk-border);
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.post-card,
.category-card,
.archive-card,
.single-content-card,
.not-found-card {
  border-radius: var(--mk-radius-md);
}

.product-card {
  border-radius: 25px;
}

.post-card {
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

.post-card:hover,
.product-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mk-shadow);
}

.post-card.is-large {
  grid-row: span 2;
}

.post-card-image,
.archive-card-image {
  display: block;
  overflow: hidden;
  background: #e9eaee;
}

.post-card-image {
  aspect-ratio: 16 / 10;
}

.post-card-image img,
.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.post-card:hover img,
.archive-card:hover img {
  transform: scale(1.04);
}

.post-card.is-large .post-card-image {
  height: 100%;
  min-height: 460px;
}

.post-card.is-large .post-card-body {
  position: absolute;
  inset: auto 16px 16px;
  padding: 18px;
  border-radius: var(--mk-radius-md);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.post-card-body {
  padding: 16px;
}

.post-card h3,
.product-card h3,
.archive-card h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mk-black);
}

.post-card.is-large h3 {
  font-size: 20px;
}

.image-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #f0f1f4, #dde0e7);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--mk-red);
  font-weight: 700;
}

.post-meta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  color: var(--mk-muted);
  font-size: 12px;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
}

.product-card-media {
  position: relative;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 124, 17, .37);
  color: #007c11;
  font-size: 14px;
}

.product-card-action {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mk-red);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(226, 0, 26, .25);
  transition: background .2s ease;
}

.product-card-action:hover {
  background: var(--mk-red-dark);
  color: #fff;
}

.product-card-image {
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  padding: 18px;
  background: #fff;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-card-body {
  padding: 14px;
}

.product-price {
  margin-top: 10px;
  color: var(--mk-red);
  font-size: 13px;
  font-weight: 700;
}

.product-price span {
  display: block;
  color: var(--mk-muted);
  font-weight: 700;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 190px;
  padding: 18px 14px;
  text-align: center;
}

.category-card img {
  width: auto;
  max-width: 118px;
  max-height: 118px;
  height: auto;
  object-fit: contain;
}

.category-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--mk-black);
}

.promo-banners {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.promo-banners-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.promo-banner {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(32, 34, 38, .08);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}

.promo-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--mk-shadow);
}

.promo-banners-col .promo-banner {
  aspect-ratio: 680 / 246;
}

.promo-banner--tall {
  aspect-ratio: 680 / 512;
}

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

/* -------------------------------------------------------------------------- */
/* FAQ & SEO content                                                          */
/* -------------------------------------------------------------------------- */

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 18px;
  border: 1px solid var(--mk-border);
  border-radius: 16px;
  background: #fbfbfc;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  font-weight: 700;
  color: var(--mk-black);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--mk-muted);
  border-bottom: 2px solid var(--mk-muted);
  transform: rotate(45deg);
  transition: transform .2s ease, border-color .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  border-color: var(--mk-red);
}

.faq-item p,
.faq-answer ul {
  margin: 0 0 14px;
  color: var(--mk-muted);
}

.faq-answer a,
.seo-content a {
  color: var(--mk-red);
  font-weight: 700;
}

.faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 940px;
  margin: 28px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(226, 0, 26, .14);
  border-radius: var(--mk-radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(226, 0, 26, .12), transparent 42%),
    linear-gradient(135deg, #111218 0%, #1b1c22 100%);
  box-shadow: var(--mk-shadow-soft);
  color: #fff;
}

.faq-cta-body {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 280px;
}

.faq-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(226, 0, 26, .18);
  color: #fff;
}

.faq-cta-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  color: #fff;
}

.faq-cta-text p {
  margin: 0;
  color: #c8cbd2;
  font-size: 14px;
  line-height: 1.8;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.faq-cta-btn--call {
  background: var(--mk-red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(226, 0, 26, .28);
}

.faq-cta-btn--call:hover {
  background: var(--mk-red-dark);
  color: #fff;
  transform: translateY(-2px);
}

.faq-cta-btn--contact {
  background: #fff;
  color: var(--mk-black);
}

.faq-cta-btn--contact:hover {
  background: #f2f3f5;
  color: var(--mk-black);
  transform: translateY(-2px);
}

.seo-content {
  position: relative;
  padding: clamp(22px, 4vw, 44px);
  padding-bottom: 70px;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
  overflow: hidden;
  transition: max-height .5s ease;
}

html:not(.js) .readmore {
  max-height: none;
}

html:not(.js) .readmore::after {
  display: none;
}

html:not(.js) .readmore-toggle {
  display: none;
}

.seo-content.readmore.is-collapsible {
  max-height: var(--mk-readmore-height);
}

.seo-content.readmore.is-collapsible::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  opacity: 1;
  transition: opacity .3s ease;
}

.seo-content.readmore.is-expanded::after {
  opacity: 0;
}

.readmore-toggle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 10px 28px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, #111218, #33353d);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
  transform: translateX(-50%);
  transition: transform .3s ease, box-shadow .3s ease;
}

.readmore-toggle:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
}

.readmore-toggle[hidden] {
  display: none;
}

.seo-content h2 {
  margin: 28px 0 10px;
  font-size: 24px;
  color: var(--mk-black);
}

.seo-content p {
  color: #3e4049;
}

.seo-content a:hover {
  color: var(--mk-red-dark);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
  padding-top: 52px;
  background: var(--mk-black);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-logo img {
  width: 135px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-about p,
.footer-col li {
  color: #c8cbd2;
}

.footer-about p a {
  color: #fff;
  font-weight: 700;
}

.footer-about p a:hover {
  color: var(--mk-red);
}

.footer-credit-logo {
  display: inline-block;
  margin-top: 16px;
}

.footer-credit-logo img {
  width: 205px;
  height: auto;
  opacity: .85;
  transition: opacity .2s ease;
}

.footer-credit-logo:hover img {
  opacity: 1;
}

.footer-col__title {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.footer-col ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li,
.footer-col li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: #c8cbd2;
}

.footer-quick-links a:hover {
  color: #fff;
}

.footer-quick-links .mk-icon {
  flex-shrink: 0;
  color: var(--mk-red);
}

.footer-quick-links span {
  flex: 1;
}

.contact-list li .mk-icon {
  color: var(--mk-red);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .2s ease, transform .2s ease;
}

.social-link .mk-icon {
  flex-shrink: 0;
}

.social-link--telegram {
  background: #229ed9;
}

.social-link--instagram {
  background: #e4405f;
}

.social-link--whatsapp {
  background: #25d366;
}

.social-link:hover {
  color: #fff;
  opacity: .92;
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 34px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #b9bdc6;
  font-size: 13px;
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Inner templates                                                            */
/* -------------------------------------------------------------------------- */

.archive-main,
.single-main,
.not-found-main {
  padding: 52px 0;
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  gap: 28px;
  align-items: start;
}

.archive-main-col {
  min-width: 0;
}

.archive-sidebar {
  position: sticky;
  top: calc(var(--mk-header-height) + 16px);
  padding: 18px;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-md);
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.archive-sidebar__title {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mk-border);
  font-size: 16px;
  font-weight: 900;
  color: var(--mk-black);
}

.archive-sidebar__list,
.archive-sidebar__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-sidebar__list--root {
  margin-bottom: 6px;
}

.archive-sidebar__sublist {
  margin-top: 2px;
  margin-bottom: 2px;
  padding-right: 12px;
  border-right: 2px solid rgba(226, 0, 26, .16);
}

.archive-sidebar__item a,
.post-toc__item a {
  display: block;
  padding: 7px 10px;
  border-radius: 10px;
  color: var(--mk-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  transition: background .2s ease, color .2s ease;
}

.archive-sidebar__item a:hover,
.post-toc__item a:hover {
  background: #f2f3f5;
  color: var(--mk-red);
}

.archive-sidebar__item.is-current > a,
.archive-sidebar__item.is-ancestor > a {
  color: var(--mk-red);
}

.archive-sidebar__item.is-current > a {
  background: #fff1f2;
}

.post-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-toc__sublist {
  list-style: none;
  margin: 2px 0 6px;
  padding: 0 12px 0 0;
  border-right: 2px solid rgba(226, 0, 26, .16);
}

.post-toc__item--h3-group {
  list-style: none;
}

.post-toc__item--h3 a {
  font-size: 12px;
}

.sidebar-empty {
  margin: 0;
  color: var(--mk-muted);
  font-size: 13px;
  line-height: 1.8;
}

.single-layout .single-content-card {
  margin: 0;
}

.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.single-sidebar .post-toc {
  position: sticky;
  top: calc(var(--mk-header-height) + 16px);
  z-index: 2;
}

.single-sidebar .archive-sidebar {
  position: static;
  flex-shrink: 0;
}

.popular-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.popular-post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--mk-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.popular-post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--mk-shadow);
}

.popular-post-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9eaee;
}

.popular-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post-card__body {
  padding: 10px;
}

.popular-post-card__body h3 {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--mk-black);
}

.popular-post-card__body a:hover {
  color: var(--mk-red);
}

.archive-product-grid {
  margin-top: 0;
}

.archive-term-description {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--mk-border);
  color: #3e4049;
  font-size: 15px;
  line-height: 1.9;
}

.archive-term-description p {
  margin: 0 0 14px;
}

.archive-term-description p:last-child {
  margin-bottom: 0;
}

.archive-term-description a {
  color: var(--mk-red);
  font-weight: 700;
}

.catalog-main .archive-layout {
  margin-top: 0;
}

.archive-header {
  margin-bottom: 24px;
}

.archive-description {
  margin-top: 10px;
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.9;
}

.archive-header h1,
.single-header h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.5;
  color: var(--mk-black);
}

.archive-card {
  display: flex;
  flex-direction: column;
}

.archive-card-image {
  aspect-ratio: 16 / 10;
}

.archive-card-body {
  padding: 18px;
}

.archive-card-body p {
  color: var(--mk-muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
}

.nav-links a.page-numbers,
.nav-links span.page-numbers,
.mk-pagination .nav-links a,
.mk-pagination .nav-links span,
.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span,
.product-review-pagination .page-numbers a,
.product-review-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--mk-border);
  border-radius: 999px;
  background: #fff;
  color: var(--mk-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.nav-links a.page-numbers:hover,
.woocommerce-pagination .page-numbers li a:hover {
  border-color: var(--mk-red);
  color: var(--mk-red);
}

.nav-links span.page-numbers.current,
.nav-links .current,
.woocommerce-pagination .page-numbers li span.current,
.woocommerce-pagination .page-numbers li a.current,
.product-review-pagination .page-numbers .current {
  border-color: var(--mk-red);
  background: var(--mk-red);
  color: #fff;
}

.mk-pagination {
  margin-top: 26px;
}

.mk-pagination .navigation.pagination {
  margin: 0;
}

.mk-pagination .nav-links {
  margin-top: 0;
}

.woocommerce-pagination {
  margin-top: 26px;
}

.woocommerce-pagination .page-numbers,
.product-review-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-pagination .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-content-card {
  padding: clamp(18px, 4vw, 42px);
}

.single-thumbnail {
  margin: -24px -24px 24px;
  overflow: hidden;
  border-radius: 22px;
}

.single-thumbnail img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.entry-content {
  font-size: 16px;
}

.entry-content h2,
.entry-content h3 {
  scroll-margin-top: calc(var(--mk-header-height) + 20px);
  line-height: 1.6;
  color: var(--mk-black);
}

.entry-content a {
  color: var(--mk-red);
  font-weight: 700;
}

.not-found-card {
  padding: 42px;
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* WooCommerce single product                                                 */
/* -------------------------------------------------------------------------- */

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

.mk-breadcrumb {
  margin-bottom: 22px;
}

.mk-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--mk-muted);
  font-size: 13px;
}

.mk-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-right: 8px;
  color: #b6b9c4;
}

.mk-breadcrumb__item a:hover {
  color: var(--mk-red);
}

.mk-breadcrumb__item.is-current span {
  color: var(--mk-black);
  font-weight: 700;
}

.mk-single-product {
  position: relative;
}

.mk-single-product__layout {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  grid-template-areas:
    "aside summary"
    "aside contact";
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.mk-single-product__aside {
  grid-area: aside;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.mk-single-product__image {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
  overflow: hidden;
}

.mk-single-product__image-el {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mk-single-product__summary {
  grid-area: summary;
}

.mk-single-product__contact {
  grid-area: contact;
}

.mk-single-product__chart {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.mk-single-product__aside .product-chart-block {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mk-single-product__aside .product-chart-block__inner,
.mk-single-product__aside .product-chart-block__placeholder {
  flex: 1 1 auto;
}

.mk-single-product__summary .product_title {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
  color: var(--mk-black);
}

.product-additional-info {
  margin-bottom: 18px;
}

.product-additional-info h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--mk-black);
}

.product-additional-info .shop_attributes {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--mk-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.product-additional-info .shop_attributes th,
.product-additional-info .shop_attributes td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--mk-border);
  text-align: right;
  vertical-align: top;
}

.product-additional-info .shop_attributes tr:last-child th,
.product-additional-info .shop_attributes tr:last-child td {
  border-bottom: 0;
}

.product-additional-info .shop_attributes th {
  width: 38%;
  background: #f8f9fb;
  color: var(--mk-black);
  font-weight: 700;
}

.product-additional-info .shop_attributes td p {
  margin: 0;
}

.product-price-section {
  margin-bottom: 18px;
}

.product-price-box {
  padding: 14px 16px;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-md);
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
  box-shadow: var(--mk-shadow-soft);
}

.product-summary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.product-summary-actions .product-price-range {
  margin: 0;
  flex: 1 1 auto;
}

.product-price-range__text {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mk-red);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
}

.product-consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 44px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid #2a2b31;
  border-radius: 12px;
  background: #fff;
  color: #2a2b31;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(10, 11, 18, .06);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.product-consult-btn .mk-icon {
  flex-shrink: 0;
  color: var(--mk-red);
}

.product-consult-btn:hover {
  border-color: var(--mk-red);
  background: #fff1f2;
  color: var(--mk-red);
  transform: translateY(-1px);
}

.mk-single-product__summary .ycp-supported-cars {
  margin-top: 0;
  font-family: var(--mk-font);
}

.mk-single-product__summary .product_meta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--mk-border);
  color: var(--mk-muted);
  font-size: 13px;
}

.mk-single-product__summary .product_meta > span {
  display: block;
}

.mk-single-product__summary .product_meta a {
  color: var(--mk-red);
  font-weight: 700;
}

.product-contact-panel.faq-cta {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: none;
  margin: 0;
  padding: 12px 14px;
}

.product-contact-panel .faq-cta-body {
  flex: 1 1 auto;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: right;
}

.product-contact-panel__title {
  font-size: 15px;
  color: #fff;
}

.product-contact-panel .faq-cta-icon {
  width: 40px;
  height: 40px;
}

.product-contact-panel .faq-cta-actions {
  flex: 1 1 280px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: auto;
  gap: 8px;
}

.product-contact-panel .faq-cta-btn {
  width: auto;
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
  gap: 6px;
}

.product-contact-panel .faq-cta-btn span[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.product-chart-block {
  margin: 0;
}

.product-chart-block--empty .product-chart-block__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border: 2px dashed rgba(226, 0, 26, .22);
  border-radius: var(--mk-radius-md);
  background:
    linear-gradient(180deg, rgba(248, 249, 251, .9), rgba(255, 241, 242, .45));
  color: var(--mk-muted);
  font-size: 14px;
  font-weight: 700;
}

.product-section-heading,
.product-chart-block__title,
.product-tabs__heading,
.product-reviews__title {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.6;
  color: var(--mk-black);
}

.product-compat-section {
  margin-bottom: 18px;
}

.product-tabs__heading {
  margin-bottom: 16px;
}

.product-reviews__title {
  margin-bottom: 10px;
}

.product-reviews__count {
  margin: 0 0 16px;
  color: var(--mk-muted);
  font-size: 14px;
}

.product-chart-block__inner .pc-chart {
  font-family: var(--mk-font);
}

.mk-single-product__content .product-tabs {
  margin-top: 0;
  padding: 22px;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.product-tabs__nav {
  display: flex;
  gap: 6px;
  margin: 0 0 22px;
  padding: 5px;
  list-style: none;
  border: 1px solid var(--mk-border);
  border-radius: 999px;
  background: #f8f9fb;
}

.product-tabs__nav li {
  flex: 1 1 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-tabs__nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--mk-muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.product-tabs__nav li.active a,
.product-tabs__nav li a[aria-selected="true"] {
  background: #fff;
  color: var(--mk-red);
  box-shadow: 0 4px 14px rgba(10, 11, 18, .08);
}

.product-tabs__panel {
  color: #3e4049;
  line-height: 1.9;
}

.product-tabs__panel[hidden] {
  display: none !important;
}

.product-tabs__panel.is-active {
  animation: product-tab-in .25s ease;
}

@keyframes product-tab-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.product-tabs__panel--description {
  font-size: 15px;
}

.product-tabs__panel--description p {
  margin: 0 0 14px;
}

.product-tabs__panel--description p:last-child {
  margin-bottom: 0;
}

.product-reviews-empty {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding: 22px 20px;
  border: 1px dashed rgba(226, 0, 26, .24);
  border-radius: var(--mk-radius-md);
  background: linear-gradient(180deg, #fff8f8 0%, #f8f9fb 100%);
  text-align: center;
}

.product-reviews-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-inline: auto;
  border-radius: 50%;
  background: rgba(226, 0, 26, .1);
  color: var(--mk-red);
}

.product-reviews-empty__title {
  font-size: 16px;
  color: var(--mk-black);
}

.product-reviews-empty__text {
  margin: 0;
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.9;
}

.product-review-form-wrap {
  padding-top: 22px;
  border-top: 1px solid var(--mk-border);
}

.product-review-form .comment-reply-title {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--mk-black);
}

.product-review-form p {
  margin: 0 0 14px;
}

.product-review-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--mk-black);
  font-size: 13px;
  font-weight: 700;
}

.product-review-form input[type="text"],
.product-review-form input[type="email"],
.product-review-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--mk-border);
  border-radius: 12px;
  background: #fff;
  color: var(--mk-black);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.product-review-form input[type="text"]:focus,
.product-review-form input[type="email"]:focus,
.product-review-form textarea:focus {
  border-color: rgba(226, 0, 26, .4);
  box-shadow: 0 0 0 3px rgba(226, 0, 26, .1);
  outline: 0;
}

.product-review-form textarea {
  min-height: 140px;
  resize: vertical;
}

.product-review-form__submit {
  min-width: 140px;
}

.product-review-list {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.product-review-list .comment {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-md);
  background: #f8f9fb;
}

.product-review-list .comment .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--mk-muted);
  font-size: 12px;
}

.product-review-list .comment .description p {
  margin: 0;
  color: #3e4049;
  line-height: 1.9;
}

.product-reviews-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8f9fb;
  color: var(--mk-muted);
  font-size: 14px;
}

.mk-single-product__content .product-related {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--mk-border);
}

.mk-single-product__content .product-related .section-head {
  margin-bottom: 22px;
}

.mk-single-product__content .product-related .product-grid {
  margin-top: 0;
}

.product-sticky-bar {
  display: none;
}

@media (max-width: 980px) {
  .mk-single-product__layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mk-single-product__aside {
    display: contents;
  }

  .mk-single-product__chart,
  .mk-single-product__aside .product-chart-block,
  .mk-single-product__aside .product-chart-block__inner,
  .mk-single-product__aside .product-chart-block__placeholder {
    flex: none;
  }

  .mk-single-product__image {
    order: 1;
  }

  .mk-single-product__summary {
    order: 2;
  }

  .mk-single-product__contact {
    order: 3;
  }

  .mk-single-product__chart {
    order: 4;
    display: block;
  }

  .product-contact-panel.faq-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: var(--mk-radius-md);
    background: #f8f9fb;
    border: 1px solid var(--mk-border);
    box-shadow: none;
    color: var(--mk-black);
  }

  .product-contact-panel .faq-cta-body {
    gap: 8px;
  }

  .product-contact-panel__title {
    font-size: 14px;
    color: var(--mk-black);
  }

  .product-contact-panel .faq-cta-icon {
    width: 34px;
    height: 34px;
    background: rgba(226, 0, 26, .1);
    color: var(--mk-red);
  }

  .product-contact-panel .faq-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
  }

  .product-contact-panel .faq-cta-btn {
    flex: 1 1 calc(50% - 4px);
    width: auto;
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
    justify-content: center;
  }

  .product-contact-panel .faq-cta-btn--call {
    background: var(--mk-red);
    color: #fff;
    box-shadow: none;
  }

  .product-contact-panel .faq-cta-btn--contact {
    background: #fff;
    color: var(--mk-black);
    border: 1px solid var(--mk-border);
  }

  .product-contact-panel .faq-cta-btn span:first-of-type {
    display: none;
  }

  .product-price-box {
    padding: 12px 14px;
  }

  .product-summary-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .product-price-range__text {
    font-size: 13px;
    line-height: 1.6;
  }

  .product-consult-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .product-tabs__nav li a {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .product-sticky-bar {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 900;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--mk-border);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    box-shadow: 0 -10px 28px rgba(10, 11, 18, .08);
  }

  .product-sticky-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: min(var(--mk-container), calc(100% - 24px));
    margin-inline: auto;
  }

  .product-sticky-bar__price .product-price-range {
    margin: 0;
  }

  .product-sticky-bar__price .product-price-range__text {
    padding: 8px 12px;
    font-size: 12px;
  }

  .product-sticky-bar .product-consult-btn {
    margin: 0;
    min-height: 42px;
    padding-inline: 14px;
    font-size: 12px;
    white-space: nowrap;
    justify-content: space-between;
  }

  .catalog-main {
    padding-bottom: 96px;
  }
}

@media (max-width: 640px) {
  .product-summary-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-consult-btn {
    width: 100%;
    justify-content: space-between;
  }

  .product-contact-panel .faq-cta-btn {
    flex: 1 1 100%;
  }

  .product-sticky-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .product-sticky-bar .product-consult-btn {
    width: 100%;
  }
}
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1120px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1200;
    flex: none;
    width: min(390px, 88vw);
    height: 100dvh;
    max-height: 100dvh;
    padding: 16px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -20px 0 50px rgba(0, 0, 0, .18);
  }

  body.menu-open .site-nav {
    display: block;
  }

  .site-nav__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--mk-border);
  }

  .site-nav__mobile-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f1f4;
    color: var(--mk-black);
    cursor: pointer;
  }

  .site-nav > .menu-list {
    display: block;
  }

  .site-nav .submenu-icon {
    display: none;
  }

  .site-nav .is-parent-link {
    display: list-item;
  }

  .site-nav .menu-item {
    border-bottom: 1px solid #f0f0f2;
  }

  .site-nav .menu-item.has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    align-items: stretch;
  }

  .site-nav .menu-item > a {
    min-height: 52px;
    padding: 12px 14px;
    white-space: normal;
    border-radius: 0;
  }

  .site-nav .menu-item > a:hover,
  .site-nav .menu-item:hover > a {
    background: transparent;
    color: var(--mk-black);
  }

  .site-nav .has-children > a {
    cursor: pointer;
  }

  .site-nav .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 52px;
    margin: 0;
    border: 0;
    border-right: 1px solid #ececef;
    border-radius: 0;
    background: #f4f4f6;
    color: var(--mk-black);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .site-nav .is-open > .submenu-toggle {
    background: var(--mk-red);
    color: #fff;
  }

  .site-nav .is-open > .submenu-toggle .mk-icon {
    transform: rotate(180deg);
  }

  .site-nav .submenu-toggle .mk-icon {
    transition: transform .2s ease;
  }

  .site-nav .sub-menu {
    position: static;
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    padding: 4px 12px 12px;
    border: 0;
    border-top: 1px solid #f0f0f2;
    border-radius: 0;
    background: #fafafb;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav .sub-menu .menu-item {
    border-bottom: 0;
  }

  .site-nav .sub-menu .menu-item > a {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 13px;
    color: #43444c;
  }

  .site-nav .is-parent-link > a {
    color: var(--mk-red);
    font-weight: 900;
  }

  .site-nav .is-open > .sub-menu {
    display: block;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .header-inner {
    justify-content: space-between;
  }

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

  .archive-product-grid,
  .product-related .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .more-posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hero-inner {
    padding: 52px 0 72px;
  }

  .finder-shell {
    padding: 22px;
  }

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

  .post-card.is-large {
    grid-row: auto;
    grid-column: span 2;
  }

  .post-card.is-large .post-card-image {
    min-height: 320px;
  }

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

  .more-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .archive-layout {
    grid-template-columns: 1fr;
  }

  .archive-sidebar {
    position: static;
  }

  .single-sidebar .post-toc {
    position: static;
  }

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

@media (max-width: 640px) {
  :root {
    --mk-header-height: 66px;
  }

  body {
    font-size: 14px;
  }

  .container,
  .narrow-container {
    width: min(100% - 22px, var(--mk-container));
  }

  .site-logo img {
    width: 112px;
  }

  .header-inner {
    gap: 10px;
  }

  .support-btn.btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-section {
    min-height: 320px;
  }

  .hero-content h1 {
    letter-spacing: -1px;
  }

  .hero-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }

  .hero-search button {
    width: 100%;
  }

  .section {
    padding: 34px 0;
  }

  .section-head {
    align-items: flex-start;
  }

  .section-head h2 {
    font-size: 23px;
  }

  .finder-shell {
    margin-top: -78px;
    border-radius: 22px;
  }

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

  .post-card.is-large {
    grid-column: auto;
  }

  .post-card.is-large .post-card-image {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .post-card.is-large .post-card-body {
    position: static;
    background: #fff;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card-body {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 13px;
  }

  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-card {
    min-height: 160px;
  }

  .category-card img {
    max-height: 92px;
  }

  .promo-banners,
  .promo-banners-col {
    gap: 12px;
  }

  .more-posts-grid {
    grid-template-columns: 1fr;
  }

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

  .popular-posts-grid {
    grid-template-columns: 1fr;
  }

  .faq-cta {
    padding: 20px;
  }

  .faq-cta-actions {
    width: 100%;
  }

  .faq-cta-btn {
    flex: 1 1 auto;
  }

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