:root {
  --scg-red: #ec1c24;
  --scg-red-dark: #c9171f;
  --scg-blue: #4652b0;
  --scg-ink: #171a26;
  --scg-body: #2a2f3a;
  --scg-muted: #6d7486;
  --scg-border: #e3e7f0;
  --scg-bg: #f7f8fc;
  --scg-radius: 14px;
  --scg-container: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", "Lexend", sans-serif;
  color: var(--scg-body);
  background: #fff;
  line-height: 1.65;
}

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

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

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

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

.scg-main-content {
  min-height: 55vh;
}

/* Header */
.scg-topbar {
  background: var(--scg-ink);
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
}

.scg-topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.scg-header-main {
  background: #fff;
  border-bottom: 1px solid var(--scg-border);
}

.scg-header-main-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
}

.scg-logo {
  display: inline-flex;
  align-items: center;
}

.scg-logo .custom-logo-link {
  display: inline-flex;
  max-width: 156px;
}

.scg-logo .custom-logo-link img {
  width: 100%;
  height: auto;
}

.scg-logo-text {
  color: var(--scg-red);
  font-size: 28px;
  font-weight: 800;
}

.scg-search {
  position: relative;
}

.scg-search input {
  width: 100%;
  height: 42px;
  border: 1px solid #d8dde8;
  border-radius: 999px;
  padding: 0 44px 0 16px;
  font-size: 14px;
}

.scg-search input:focus {
  outline: none;
  border-color: var(--scg-blue);
}

.scg-search button {
  border: 0;
  background: transparent;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  cursor: pointer;
}

.scg-hotline {
  font-weight: 700;
  color: var(--scg-red);
  white-space: nowrap;
}

.scg-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #d8dde8;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.scg-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #111;
}

.scg-nav-wrap {
  background: #fff;
  border-bottom: 1px solid var(--scg-border);
}

.scg-nav-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.scg-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.scg-nav-menu > li {
  position: relative;
}

.scg-nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #121212;
}

.scg-nav-menu > li > a:hover,
.scg-nav-menu > li.current-menu-item > a,
.scg-nav-menu > li.current_page_item > a {
  color: var(--scg-red);
}

.scg-nav-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 10px);
  min-width: 230px;
  border: 1px solid #d9deea;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(11, 25, 64, 0.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 100;
}

.scg-nav-menu li:hover > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scg-nav-menu .sub-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  text-transform: none;
  font-weight: 500;
}

.scg-nav-menu .sub-menu a:hover {
  background: rgba(236, 28, 36, 0.08);
}

.scg-header-cta,
.scg-mobile-cta,
.scg-footer-btn,
.scg-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--scg-red);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 13px;
}

.scg-header-cta:hover,
.scg-mobile-cta:hover,
.scg-footer-btn:hover,
.scg-hero-btn:hover {
  background: var(--scg-red-dark);
  color: #fff;
}

.scg-mobile-nav {
  border-bottom: 1px solid var(--scg-border);
  background: #fff;
}

.scg-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 14px 0;
}

.scg-mobile-menu > li > a {
  display: block;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid #edf0f6;
}

.scg-mobile-menu .sub-menu {
  margin: 0;
  padding: 0 0 0 12px;
  list-style: none;
}

.scg-mobile-cta {
  margin: 4px 0 18px;
}

/* Hero & sections */
.scg-hero {
  position: relative;
  background-color: #1f2433;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.scg-hero {
  min-height: clamp(340px, 48vw, 640px);
}

.scg-page-hero {
  position: relative;
  min-height: auto;
  padding: 24px 0 10px;
  background: #fff;
  color: #121212;
  overflow: visible;
}

.scg-hero-overlay,
.scg-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 13, 31, 0.78), rgba(7, 13, 31, 0.35));
}

.scg-page-hero-overlay {
  display: none;
}

.scg-hero-content,
.scg-page-hero-inner {
  position: relative;
  z-index: 1;
}

.scg-page-hero-inner {
  min-height: 0;
}

.scg-hero-content {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
}

.scg-hero h1,
.scg-page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 800;
}

.scg-page-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  color: #121212;
}

.scg-hero p,
.scg-page-hero p {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.92);
}

.scg-page-hero p {
  margin: 10px 0 0;
  font-size: 14px;
  color: #565d6b;
}

.scg-hero-btn {
  margin-top: 22px;
  width: fit-content;
}

.scg-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
}

.scg-breadcrumb a {
  color: rgba(255, 255, 255, 0.95);
}

.scg-page-hero .scg-breadcrumb {
  margin: 0;
  font-size: 14px;
  color: #565d6b;
}

.scg-page-hero .scg-breadcrumb a {
  color: #565d6b;
}

.scg-section {
  padding: clamp(44px, 5vw, 90px) 0;
}

.scg-section-alt {
  background: var(--scg-bg);
}

.scg-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.scg-intro-content,
.scg-intro-media {
  border: 1px solid var(--scg-border);
  border-radius: var(--scg-radius);
  background: #fff;
  box-shadow: 0 12px 22px rgba(12, 26, 63, 0.05);
}

.scg-intro-content {
  padding: clamp(20px, 3vw, 36px);
}

.scg-intro-content h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.2;
  color: var(--scg-blue);
}

.scg-intro-content p {
  margin-top: 12px;
  color: var(--scg-muted);
}

.scg-intro-media {
  overflow: hidden;
}

.scg-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.scg-editor-content > *:first-child {
  margin-top: 0;
}

.scg-editor-content > *:last-child {
  margin-bottom: 0;
}

.scg-section-head {
  margin-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.scg-section-head h2 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.15;
  text-transform: uppercase;
  color: #0f1015;
}

.scg-section-head p {
  margin: 10px 0 0;
  color: var(--scg-muted);
}

.scg-head-link {
  color: var(--scg-red);
  font-weight: 700;
  font-size: 14px;
}

/* Cards */
.scg-grid {
  display: grid;
  gap: 22px;
}

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

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

.scg-card {
  background: #fff;
  border: 1px solid var(--scg-border);
  border-radius: var(--scg-radius);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(12, 26, 63, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(12, 26, 63, 0.12);
}

.scg-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf1f8;
}

.scg-grid-blog .scg-card-media {
  aspect-ratio: 3 / 2;
}

.scg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.scg-card:hover .scg-card-media img {
  transform: scale(1.05);
}

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

.scg-card-body h2,
.scg-card-body h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.33;
}

.scg-card-body p {
  margin: 10px 0 0;
  color: var(--scg-muted);
  font-size: 14px;
}

.scg-card-meta {
  margin-top: 0 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.scg-card-price {
  color: var(--scg-red) !important;
  font-weight: 700;
}

/* Single / content */
.scg-content-box,
.scg-single {
  border: 1px solid var(--scg-border);
  background: #fff;
  border-radius: var(--scg-radius);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: 0 10px 20px rgba(9, 19, 44, 0.04);
}

.scg-single-wrap {
  max-width: 980px;
}

.scg-single-post-wrap {
  max-width: 1160px;
}

.scg-single-thumb {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.scg-rating-box {
  margin-top: 20px;
}

.scg-contact-card {
  border: 1px solid var(--scg-border);
  border-radius: var(--scg-radius);
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(9, 19, 44, 0.04);
}

.scg-map-embed iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--scg-radius);
}

/* CTA */
.scg-bottom-cta {
  background: linear-gradient(130deg, #ec1c24 0%, #4652b0 100%);
  color: #fff;
}

.scg-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--scg-radius);
  padding: clamp(20px, 3vw, 34px);
}

.scg-bottom-cta-inner h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.15;
}

.scg-bottom-cta-inner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.scg-footer-top {
  background: var(--scg-red);
  color: #fff;
  padding: 34px 0;
}

.scg-footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.scg-footer-top-inner h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
}

.scg-footer-top-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.scg-footer-main {
  background: #f4f6fb;
  color: #121212;
}

.scg-footer-grid {
  padding: 42px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.scg-footer-grid h4 {
  margin: 0 0 12px;
  font-size: 17px;
}

.scg-footer-grid p,
.scg-footer-grid li,
.scg-footer-grid a {
  font-size: 14px;
  color: #2d3340;
}

.scg-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.scg-footer-menu li + li {
  margin-top: 8px;
}

.scg-footer-office p {
  margin: 0;
}

.scg-footer-bottom {
  border-top: 1px solid #d9deea;
  padding: 14px 0;
}

.scg-footer-bottom p {
  margin: 0;
  font-size: 13px;
}

/* WooCommerce */
.scg-shop-header-section {
  padding: 24px 0 10px;
}

.scg-shop-header-section .rank-math-breadcrumb {
  margin: 0;
}

.scg-shop-header-section .rank-math-breadcrumb p {
  margin: 0;
  font-size: 14px;
  color: #565d6b;
}

.scg-shop-header-section .rank-math-breadcrumb a {
  color: #565d6b;
}

.scg-shop-page-title {
  margin: 12px 0 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  color: #121212;
  font-weight: 700;
}

.scg-archive-description {
  margin: 10px 0 0;
  color: #565d6b;
  font-size: 16px;
  line-height: 1.55;
}

.scg-shop-page {
  padding-top: 18px;
}

.scg-shop-category-group + .scg-shop-category-group {
  margin-top: 52px;
}

.scg-shop-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.scg-shop-category-head h2 {
  margin: 0;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.2;
  font-weight: 600;
}

.scg-shop-more-wrap .el-content.uk-button.uk-button-text {
  color: #ec1c24;
  gap: 10px;
}

.scg-shop-more-wrap .el-content.uk-button.uk-button-text:hover {
  color: #ec1c24;
  text-decoration: none;
}

.scg-shop-more-wrap .el-content .uk-icon,
.scg-shop-more-wrap .el-content .uk-icon svg {
  width: 30px;
  height: 30px;
}

.scg-shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.scg-shop-product-card {
  position: relative;
  background: #fff;
  border: 1px solid #ebedf1;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  padding: 18px 18px 20px;
  overflow: hidden;
}

.scg-shop-product-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.scg-shop-product-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f7f9;
}

.scg-shop-product-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.scg-shop-product-title,
.scg-shop-product-price {
  position: relative;
  z-index: 3;
  text-align: center;
}

.scg-shop-product-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.scg-shop-product-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #1a1a1a;
}

.scg-shop-product-price {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 15px;
  line-height: 1.25;
}

.scg-shop-product-price-label {
  color: #141821;
  font-weight: 600;
}

.scg-shop-product-price-value {
  color: #d80f18;
  font-weight: 700;
}

.scg-shop-product-cat {
  position: relative;
  z-index: 3;
  margin-top: 2px;
  text-align: center;
  color: #767f8f;
  font-size: 16px;
}

.scg-shop-pagination {
  margin-top: 28px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  display: none;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--scg-red);
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--scg-red-dark);
  color: #fff;
}

.woocommerce div.product .product_title {
  font-size: clamp(28px, 2.5vw, 42px);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--scg-red);
  font-weight: 700;
}

.scg-single-header {
  padding-bottom: 0;
}

.scg-single-product-section {
  padding-top: 10px;
}

.scg-single-product-main {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.scg-single-gallery-main {
  border: 1px solid #e3e6eb;
  border-radius: 18px;
  background: #fff;
  padding: 20px;
}

.scg-single-main-image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.scg-single-thumbs {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scg-single-thumb {
  width: 86px;
  height: 86px;
  border: 1px solid #d7dde8;
  border-radius: 8px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.scg-single-thumb.is-active {
  border-color: var(--scg-red);
}

.scg-single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scg-single-title {
  margin: 0;
  font-size: clamp(32px, 2.9vw, 48px);
  line-height: 1.2;
  color: #1b1f28;
  font-weight: 700;
}

.scg-single-price {
  margin: 16px 0 0;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.scg-single-price-label {
  color: #111319;
  font-weight: 600;
}

.scg-single-price-value {
  color: var(--scg-red);
  font-weight: 700;
}

.scg-single-attributes {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.scg-single-attribute-label {
  margin-bottom: 6px;
  color: #1c212b;
  font-size: 16px;
}

.scg-single-attribute-value {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid #9ba5b4;
  border-radius: 4px;
  padding: 0 16px;
  color: #1a1e26;
  font-size: 16px;
}

.scg-single-consult-wrap {
  margin-top: 24px;
}

.scg-single-consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  border-radius: 8px;
  background: var(--scg-red);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.scg-single-consult-btn:hover {
  color: #fff;
  background: var(--scg-red-dark);
}

.scg-single-description-block {
  margin-top: 56px;
}

.scg-single-description-title {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #171b22;
  text-transform: uppercase;
  font-size: clamp(28px, 2.1vw, 40px);
  line-height: 1.2;
  color: #12151d;
}

.scg-single-description-content {
  margin-top: 20px;
  color: #1f2430;
  font-size: 16px;
  line-height: 1.65;
}

.scg-single-description-content ul {
  margin: 0.6em 0 0.8em 1.2em;
}

.scg-single-related {
  margin-top: 34px;
}

.scg-single-related-title {
  margin: 0;
  font-size: clamp(30px, 2.2vw, 42px);
  font-weight: 500;
  color: #191d26;
}

.scg-shop-products-grid-related {
  margin-top: 20px;
}

.scg-shop-product-card-related .scg-shop-product-title a {
  -webkit-line-clamp: 2;
}

/* Pagination */
.scg-pagination ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.scg-pagination a,
.scg-pagination span {
  min-width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #d7dce8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: #fff;
  color: #111;
}

.scg-pagination .current {
  border-color: var(--scg-red);
  background: var(--scg-red);
  color: #fff;
}

/* Responsive */
@media (max-width: 1180px) {
  .scg-grid-4,
  .scg-shop-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scg-header-main-inner {
    grid-template-columns: auto minmax(220px, 1fr) auto;
  }

  .scg-hotline {
    display: none;
  }
}

@media (max-width: 960px) {
  .scg-topbar {
    display: none;
  }

  .scg-search,
  .scg-nav-wrap {
    display: none;
  }

  .scg-header-main-inner {
    grid-template-columns: auto auto;
    min-height: 72px;
  }

  .scg-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .scg-grid-3,
  .scg-grid-4,
  .scg-shop-products-grid,
  .scg-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scg-intro-grid {
    grid-template-columns: 1fr;
  }

  .scg-bottom-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .scg-shop-category-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .scg-single-product-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .scg-single-attributes {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .scg-grid-3,
  .scg-grid-4,
  .scg-shop-products-grid,
  .scg-footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .scg-hero {
    min-height: 220px;
  }

  .scg-page-hero {
    min-height: auto;
    padding: 16px 0 8px;
  }

  .scg-hero-btn,
  .scg-footer-btn,
  .scg-mobile-cta {
    width: 100%;
  }

  .scg-section {
    padding: 38px 0;
  }

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

  .scg-shop-header-section {
    padding-top: 16px;
  }

  .scg-shop-page-title {
    margin-top: 8px;
    font-size: 30px;
  }

  .scg-shop-product-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .scg-shop-product-title {
    font-size: 16px;
  }

  .scg-shop-product-price {
    font-size: 14px;
  }

  .scg-single-title {
    font-size: 30px;
  }

  .scg-single-consult-btn {
    min-width: 100%;
    font-size: 18px;
  }

  .scg-single-description-title {
    font-size: 28px;
  }

  .scg-single-related-title {
    font-size: 28px;
  }

  .scg-map-embed iframe {
    min-height: 300px;
  }
}


#lienhe-fix .el-item {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#lienhe-fix .el-item > a {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#lienhe-fix .el-image {
  margin: 0 !important;
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
}

@media (max-width: 640px) {
  #lienhe-fix .uk-grid > div,
  #lienhe-fix .el-item {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px !important;
  }

  #lienhe-fix .el-item > a {
    width: 28px !important;
    height: 28px !important;
  }

  #lienhe-fix .el-image {
    width: 16px !important;
    height: 16px !important;
  }
}
