/*
Theme Name: Prompostach Theme
Description: Prompostach.com.ua Theme
Author: Custom Solutions
Template: twentytwentyone
Version: 1.0.0
Text Domain: prompostach
*/


/* 
   1. VARIABLES & RESET
    */

:root {
    --prom-yellow: #F6C015;
    --prom-dark: #1A1A1A;
    --prom-text: #151515;
    --prom-muted: #666666;
    --prom-bg: #f7f7f7;
    --prom-soft: #ffffff;
    --prom-line: rgba(0, 0, 0, .10);
    --prom-sans: 'Montserrat', system-ui, -apple-system, sans-serif;

    /* Override Twenty Twenty-One font variables */
    --global--font-primary: var(--prom-sans);
    --global--font-secondary: var(--prom-sans);
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    /* background: var(--prom-bg) !important; */
    background: #ffffff !important;
    color: var(--prom-text);
    font-family: var(--prom-sans) !important;
    cursor: none !important;
    -webkit-font-smoothing: antialiased;
}


/* 
   2. HEADER
    */

.prom-header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, .92) !important;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .045);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body .prom-header .prom-header-inner {
    width: 95% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box;
    height: 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    /*gap: 34px;*/
}

/* Logo */
.prom-logo {
    color: #111 !important;
    font-weight: 800;
    font-size: 18px;
    line-height: 60px;
    letter-spacing: .08em;
    white-space: nowrap;
    text-decoration: none;
}

.prom-logo,
.prom-logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
    height: 60px;
}

.prom-logo img,
.prom-logo .custom-logo,
.site-logo img,
.custom-logo-link img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-height: 42px !important;
    max-width: 220px !important;
    border-radius: 5px !important;
}

/* Navigation */
.prom-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.prom-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
}

.prom-nav li {
    position: relative;
}

.prom-nav a {
    color: #111 !important;
    height: 60px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700 !important;
    letter-spacing: .06em;
    position: relative;
}

.prom-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--prom-yellow) !important;
    transition: width .25s;
}

.prom-nav a:hover::after,
.prom-nav .current-menu-item > a::after,
.prom-nav .current_page_item > a::after {
    width: 100%;
}

/* Dropdown */
.prom-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--prom-soft);
    border: 1px solid var(--prom-line);
    border-top: 3px solid var(--prom-yellow);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease;
    z-index: 10001;
    display: block;
}

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

.prom-nav .sub-menu li {
    border-bottom: 1px solid var(--prom-line);
    display: block;
    width: 100%;
    float: none;
}

.prom-nav .sub-menu li:last-child {
    border-bottom: none;
}

.prom-nav .sub-menu a {
    height: auto !important;
    padding: 14px 20px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    display: block !important;
    width: 100% !important;
    justify-content: flex-start !important;
    transition: background .2s ease;
}

.prom-nav .sub-menu a:hover {
    background: rgba(255, 209, 0, .15);
}

.prom-nav .sub-menu a::after {
    display: none !important;
}

/* Language switcher */
.prom-nav .lang-item {
    margin-left: 8px;
}

.prom-nav .lang-item::before {
    display: none;
}

.prom-nav .lang-item.lang-item-first {
    margin-left: 30px;
    position: relative;
}

.prom-nav .lang-item.lang-item-first::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: -18px;
    top: 50%;
    width: 1px;
    height: 22px;
    background: rgba(0, 0, 0, .16);
    transform: translateY(-50%);
}

.prom-nav .lang-item > a {
    font-size: 0 !important;
    width: 32px;
    padding: 0 15px !important;
}

.prom-nav .lang-item > a::before {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .03em;
    color: var(--prom-text);
}

.prom-nav .lang-item > a::after {
    display: none !important;
}

.prom-nav .lang-item-en > a::before {
    content: "ENG";
}

.prom-nav .lang-item-uk > a::before {
    content: "УКР";
}

.prom-nav .lang-item.current-lang > a::before {
    color: var(--prom-dark);
    font-weight: 600;
}


/* 
   3. PAGE HEADER & BREADCRUMBS
    */

.prom-page-header {
    max-width: 1480px;
    margin: 0 auto;
    padding: 110px 24px 30px;
    text-align: center;
}

.prom-page-header--compact {
    padding-bottom: 10px;
}

.prom-page-header .prom-breadcrumbs {
    font-size: 13px;
    color: var(--prom-text);
    margin-bottom: 8px;
}

.prom-page-header .prom-breadcrumbs a {
    color: var(--prom-text);
    text-decoration: none;
}

.prom-page-header .prom-breadcrumbs a:hover {
    color: var(--prom-dark);
}

.prom-page-header h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    color: var(--prom-dark);
}

.prom-catalog-page .prom-page-header,
.prom-single-product .prom-page-header {
    padding-bottom: 36px;
}

.prom-catalog-page .prom-section {
    padding-top: 40px;
}

.prom-single-product .prom-product-layout {
    padding-top: 40px;
}


/* 
   4. SECTIONS (shared)
    */

.prom-section {
    max-width: 1480px;
    margin: 0 auto;
    padding: 30px 24px;
    background: transparent;
}

.prom-eyebrow {
    color: var(--prom-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 14px;
    margin-bottom: 12px;
}

.prom-section-title {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    margin: 0 0 18px;
    color: var(--prom-text);
}

.prom-section-intro {
    max-width: 720px;
    color: var(--prom-text);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 42px;
}

/* Page content (About, etc.) */
.prom-page-content {
    max-width: 980px;
    text-align: center;
    font-size: 17px;
    line-height: 1.9;
    color: var(--prom-text);
}

.prom-page-content h2,
.prom-page-content h3 {
    color: var(--prom-dark);
    line-height: 1.2;
    margin-top: 42px;
    margin-bottom: 18px;
}

.prom-page-content p {
    margin-top: 0;
    margin-bottom: 22px;
}

.prom-page-content ul,
.prom-page-content ol {
    display: inline-block;
    text-align: left;
    margin: 18px auto 28px;
    padding-left: 24px;
}

.prom-page-content strong {
    color: var(--prom-dark);
}


/* 
   5. CATALOG CARDS
    */

.prom-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.prom-product-card {
    position: relative;
    display: block;
    margin-bottom: 0;
    background: #fff;
    color: var(--prom-text);
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 5px;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.prom-product-card,
.prom-product-card * {
    box-sizing: border-box;
}

.prom-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--prom-yellow);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .10);
}

.prom-product-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: #eef2ef;
}

.prom-product-image img,
.prom-catalog-image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    transition: transform .55s ease;
}

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

.prom-product-content {
    position: relative;
    display: block;
    min-height: 158px;
    padding: 24px 24px 26px;
    background: #fff;
    border: 0;
    transform: none !important;
}

.prom-product-title {
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
    color: #111;
}

.prom-product-title::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    margin: 14px 0 13px;
    background: var(--prom-yellow);
}

.prom-product-excerpt {
    margin: 0;
    color: #5f6b66;
    font-size: 15px;
    line-height: 1.65;
}

.prom-product-content .prom-product-more {
    position: static !important;
    display: inline-block !important;
    margin-top: 18px !important;
    padding: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    color: var(--prom-text) !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    transform: none !important;
    opacity: 1 !important;
}

.prom-product-content .prom-product-more::after {
    content: "" !important;
}

.prom-product-card:hover .prom-product-content .prom-product-more {
    color: var(--prom-yellow) !important;
}

.prom-empty {
    padding: 32px;
    background: #fff;
    color: var(--prom-text);
}


/* 
   6. SINGLE PRODUCT
    */

.prom-single-product {
    background: #fff;
}

.prom-product-layout {
    max-width: 1480px;
    margin: 0 auto;
    padding: 56px 32px 96px;
    display: grid;
    grid-template-columns: minmax(320px, 500px) minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.prom-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.prom-product-gallery-item {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 5 / 3;
    background: #eef2ef;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    margin: 0;
}

.prom-product-gallery-item img,
.prom-single-product-image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    transition: transform .35s ease;
}

.prom-product-gallery-item:hover img {
    transform: scale(1.025);
}

.prom-product-info {
    padding-top: 2px;
}

.prom-product-info h1 {
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -.04em;
    margin: 0 0 28px;
    color: #111;
}

.prom-product-description {
    color: #333;
    font-size: 17px;
    line-height: 1.72;
    margin-bottom: 28px;
}

.prom-product-description p {
    margin-top: 0;
}

.prom-specs-table-wrap {
    margin-top: 24px;
    overflow-x: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
}

.prom-specs-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    table-layout: fixed;
}

.prom-specs-table th,
.prom-specs-table td {
    padding: 18px 22px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.45;
}

.prom-specs-table tr:last-child th,
.prom-specs-table tr:last-child td {
    border-bottom: 0;
}

.prom-specs-table th {
    width: 32%;
    background: #f1f1f1;
    color: #333;
    font-weight: 500;
}

.prom-specs-table td {
    background: #fff;
    color: #222;
}

.prom-specs-table tr:hover th,
.prom-specs-table tr:hover td {
    background: #fff8df;
}

.prom-product-specs-text {
    margin-top: 24px;
    padding: 28px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    color: #333;
    font-size: 17px;
    line-height: 1.7;
}

.prom-product-specs-text p:first-child { margin-top: 0; }
.prom-product-specs-text p:last-child  { margin-bottom: 0; }

.prom-product-specs-text ul,
.prom-product-specs-text ol {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 22px;
}

.prom-product-no-image {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 14px;
    background: #f1f1ef;
    border: 1px dashed #d5d5d0;
}

.prom-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.prom-product-actions .prom-btn-outline {
    display: none;
}


/* 
   7. BUTTONS (unified)
    */

.prom-btn,
.prom-home-catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border: 1px solid var(--prom-yellow);
    border-radius: 5px;
    background: var(--prom-yellow);
    color: var(--prom-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 14px;
    font-weight: 700;
    cursor: none;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}

.prom-btn:hover,
.prom-home-catalog-btn:hover {
    background: var(--prom-dark);
    color: #fff;
    border-color: var(--prom-dark);
    transform: translateY(-2px);
}

.prom-btn-outline {
    background: transparent;
    color: var(--prom-dark);
    border-color: var(--prom-dark);
}

.prom-btn-outline:hover {
    background: var(--prom-yellow);
    color: var(--prom-dark);
    border-color: var(--prom-yellow);
}


/* 
   8. HOME PAGE
    */

.prom-home {
    background: var(--prom-bg);
}

.prom-home-slider {
    width: 100%;
    max-width: none;
    overflow: hidden;
}

.prom-home-eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--prom-dark);
}

.prom-home-title,
.prom-home-title-small {
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.1;
    margin: 0 0 24px;
    color: var(--prom-dark);
    font-weight: 700;
}

.prom-home-text,
.prom-home-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--prom-text);
}

.prom-home-text {
    margin-bottom: 30px;
}

.prom-home-about-text {
    max-width: 820px;
    margin: 0 auto 36px;
    line-height: 1.9;
}

.prom-home-about-text p:first-child { margin-top: 0; }
.prom-home-about-text p:last-child  { margin-bottom: 0; }

/* Products section */
.prom-home-products {
    position: relative;
    width: min(95%, 1480px);
    margin: 0 auto;
    padding: 90px 0;
    background: var(--prom-bg);
}

.prom-home-products-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center;
}

.prom-home-products-media {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    height: 480px;
}

.prom-home-product-image {
    overflow: hidden;
    border-radius: 8px;
    margin: 0;
    padding: 0;
}

.prom-home-product-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}

.prom-home-product-image:hover img {
    transform: scale(1.05);
}

.prom-home-product-image--1 { grid-column: 1;          grid-row: 1 / span 2; }
.prom-home-product-image--2 { grid-column: 2;          grid-row: 1; }
.prom-home-product-image--3 { grid-column: 3;          grid-row: 1; }
.prom-home-product-image--4 { grid-column: 2 / span 2; grid-row: 2; }

/* About section */
.prom-home-about {
    position: relative;
    padding: 55px 24px;
    background: var(--prom-soft);
}

.prom-home-about-inner {
    width: min(100%, 980px);
    margin: 0 auto;
    text-align: center;
}

.prom-home-about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* 
   9. CONTACTS PAGE
    */

.prom-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.prom-contact-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 5px;
    padding: 28px;
}

.prom-contact-card span {
    display: block;
    color: #777;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.prom-contact-card a {
    color: #111;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: none;
}

.prom-contact-card a:hover {
    color: var(--prom-yellow);
}


/* 
   10. FOOTER
    */

.prom-footer {
    background: var(--prom-dark);
    color: #ccc;
    padding: 54px 24px 24px;
    border-top: none;
}

.prom-footer-inner {
    max-width: 1480px;
    margin: 0 auto;
}

.prom-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    margin-bottom: 36px;
    align-items: start;
}

.prom-footer-title {
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.prom-footer-desc {
    color: #999;
    font-size: .94rem;
    line-height: 1.7;
}

.prom-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color .15s;
}

.prom-footer a:hover {
    color: var(--prom-yellow);
}

.prom-footer p {
    color: #ccc;
    margin: 0 0 6px;
    font-size: .92rem;
    line-height: 1.6;
}
.prom-footer p:last-child {
    margin-bottom: 0;
}

.prom-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.prom-footer li {
    margin-bottom: 10px;
}

.prom-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    color: #888;
    font-size: 14px;
    text-align: center;
}

.prom-footer ul.menu a {
    color: #ccc;
    transition: color .2s ease;
}

.prom-footer ul.menu a:hover {
    color: var(--prom-yellow);
}


/* 
   11. 404 PAGE
    */

.prom-404-page {
    background: var(--prom-bg);
}

.prom-404-content {
    padding-top: 30px;
    padding-bottom: 100px;
}

.prom-404-content p {
    max-width: 620px;
    margin: 0 auto 32px;
}


/* 
   12. CUSTOM CURSOR
    */

body,
body a,
body button,
body input,
body textarea,
body select,
body .prom-product-card,
body .prom-btn,
body .prom-home-catalog-btn,
.n2-ss-slider,
.n2-ss-slider *,
.n2-ss-slide,
.n2-ss-slide *,
.nextend-arrow,
.nextend-arrow *,
.n2-ss-button-container,
.n2-ss-button-container * {
    cursor: none !important;
}

.prom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.prom-cursor.visible {
    opacity: 1;
}

.prom-gear {
    position: absolute;
}

.prom-gear-small {
    width: 20px;
    height: 20px;
    top: -10px;
    left: -10px;
    animation: prom-ccw 3s linear infinite;
}

.prom-gear-big {
    width: 30px;
    height: 30px;
    top: -5px;
    left: 2px;
    animation: prom-cw 3s linear infinite;
}

.prom-cursor.hover .prom-gear-small,
.prom-cursor.hover .prom-gear-big {
    animation-duration: 1.5s;
}

@keyframes prom-ccw {
    to { transform: rotate(-360deg); }
}

@keyframes prom-cw {
    to { transform: rotate(360deg); }
}

@media (hover: none) {
    body,
    body a,
    body button,
    body input,
    body textarea,
    body select {
        cursor: auto !important;
    }

    .prom-cursor {
        display: none;
    }
}


/* 
   13. BURGER MENU
    */

button.prom-burger {
    display: none;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 10001;
    -webkit-appearance: none;
    appearance: none;
}

button.prom-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--prom-dark) !important;
    margin: 3px 0;
    transition: transform .3s ease, opacity .3s ease;
    border-radius: 1px;
    pointer-events: none;
}

button.prom-burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

button.prom-burger.active span:nth-child(2) {
    opacity: 0;
}

button.prom-burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.prom-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 9998;
}

.prom-mobile-overlay.active {
    display: block;
}


/* 
   14. RESPONSIVE
    */

@media (max-width: 1100px) {
    .prom-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 681px) and (max-width: 1100px) {
    .prom-product-layout {
        display: flex;
        flex-direction: column;
        max-width: 760px;
        gap: 24px;
    }

    .prom-product-info {
        display: contents;
    }

    .prom-product-info h1 {
        order: -2;
    }

    .prom-product-gallery {
        order: -1;
        align-items: center;
    }

    .prom-product-gallery-item {
        max-width: 350px;
    }

    .prom-product-description {
        order: 1;
    }

    .prom-specs-table-wrap {
        order: 2;
    }

    .prom-product-actions {
        order: 3;
    }
}

@media (max-width: 980px) {
    .prom-home-products-grid {
        grid-template-columns: 1fr;
    }

    .prom-home-products-media {
        height: 360px;
    }

    .prom-home-about {
        padding: 60px 24px;
    }
}

@media (min-width: 641px) and (max-width: 980px) {
    .prom-home-products {
        padding: 60px 24px;
    }

    .prom-home-products-media {
        height: 300px;
    }

    .prom-home-title {
        font-size: clamp(28px, 4vw, 38px);
    }
}

@media (max-width: 900px) {
    .prom-header {
        height: 60px;
    }

    body .prom-header .prom-header-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 60px;
        padding: 0 16px !important;
        gap: 0;
    }

    button.prom-burger {
        display: flex;
        order: 3;
    }

    .prom-logo {
        order: 1;
        line-height: 1;
    }

    .prom-nav {
        order: 2;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--prom-soft);
        border-left: 1px solid var(--prom-line);
        padding: 80px 0 30px;
        overflow-y: auto;
        transition: right .35s ease;
        z-index: 10000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .prom-nav.active {
        right: 0;
    }

    .prom-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .prom-nav li {
        border-bottom: 1px solid var(--prom-line);
    }

    .prom-nav a {
        height: auto;
        padding: 16px 24px;
        font-size: 14px;
        width: 100%;
        color: var(--prom-dark) !important;
    }

    .prom-nav a::after {
        display: none;
    }

    /* Mobile dropdown */
    .prom-nav .menu-item-has-children > a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .prom-nav .menu-item-has-children > a::before {
        content: "";
        order: 2;
        margin-left: auto;
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--prom-dark);
        border-bottom: 2px solid var(--prom-dark);
        transform: rotate(45deg);
        transition: transform .3s ease;
        flex-shrink: 0;
    }

    .prom-nav .menu-item-has-children.open > a::before {
        transform: rotate(-135deg);
    }

    .prom-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, .03);
        padding: 0;
        min-width: 0;
        display: none;
    }

    .prom-nav .menu-item-has-children.open > .sub-menu {
        display: block;
    }

    .prom-nav .sub-menu a {
        padding-left: 40px !important;
        font-size: 13px !important;
        color: var(--prom-text) !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .prom-nav .sub-menu a::before {
        display: none;
    }

    /* Mobile language items */
    .prom-nav .lang-item {
        margin-left: 0 !important;
    }

    .prom-nav .lang-item::before,
    .prom-nav .lang-item.lang-item-first::before {
        display: none !important;
    }

    .prom-nav .lang-item > a {
        font-size: 0 !important;
        width: 100% !important;
        padding: 16px 24px !important;
        display: flex !important;
        align-items: center;
        min-height: 50px;
    }

    .prom-nav .lang-item > a::before {
        font-size: 14px !important;
        font-weight: 400;
        color: var(--prom-text) !important;
    }

    .prom-nav .lang-item.current-lang > a::before {
        color: var(--prom-dark) !important;
        font-weight: 600;
    }

    .prom-nav .lang-item {
        border-bottom: 1px solid var(--prom-line);
    }

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

@media (max-width: 700px) {
    .prom-contact-list {
        grid-template-columns: 1fr;
    }

    .prom-contact-card a {
        font-size: 18px;
    }
}

@media (max-width: 680px) {
    .prom-page-header {
        padding: 90px 18px 30px;
    }

    .prom-page-header h1 {
        font-size: clamp(24px, 6vw, 36px);
    }

    .prom-section {
        padding: 0 24px 30px;
    }

    .prom-products-grid {
        grid-template-columns: 1fr;
    }

    .prom-product-more {
        position: static;
        transform: none;
        opacity: 1;
        min-height: 0;
        font-size: 14px;
    }

    .prom-product-image {
        aspect-ratio: 5 / 3;
    }

    .prom-single-product .prom-product-layout {
        padding-top: 0;
    }

    .prom-product-layout {
        display: flex;
        flex-direction: column;
        padding: 20px 18px 60px;
        gap: 24px;
    }

    .prom-product-info {
        display: contents;
    }

    .prom-product-info h1 {
        order: -2;
        font-size: clamp(24px, 5vw, 34px);
    }

    .prom-product-gallery {
        order: -1;
        gap: 12px;
    }

    .prom-product-description {
        order: 1;
    }

    .prom-specs-table-wrap {
        order: 2;
        margin: 0 -18px;
        width: calc(100% + 36px);
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .prom-product-actions {
        order: 3;
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .prom-product-gallery-item {
        aspect-ratio: auto;
        max-width: 100%;
    }

    .prom-product-gallery-item img {
        height: auto !important;
        object-fit: contain !important;
    }

    .prom-specs-table {
        min-width: 100%;
    }

    .prom-specs-table th,
    .prom-specs-table td {
        padding: 10px 8px;
        font-size: 13px;
        word-break: break-word;
    }

    .prom-specs-table th {
        width: 40%;
    }

    .prom-btn,
    .prom-home-catalog-btn,
    .prom-product-actions .prom-btn {
        width: 100%;
    }

    .prom-page-header + .prom-section {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .prom-home-products {
        padding: 50px 18px;
    }

    .prom-home-text {
        text-align: center;
    }

    .prom-home-products-media {
        display: none;
    }

    .prom-home-about {
        padding: 50px 18px;
    }

    .prom-home-title,
    .prom-home-title-small {
        text-align: center;
    }
}



* {
    cursor: none !important;
}

@media (hover: none) {
    * {
        cursor: none !important;
    }
}


.prom-page-content {
    max-width: 980px;
    text-align: left;
    font-size: 17px;
    line-height: 1.9;
    color: var(--prom-text);
}

.prom-page-content h2,
.prom-page-content h3 {
    color: var(--prom-dark);
    line-height: 1.2;
    margin-top: 42px;
    margin-bottom: 18px;
}

.prom-page-content p {
    margin-top: 0;
    margin-bottom: 22px;
}

.prom-page-content ul,
.prom-page-content ol {
    text-align: left;
    margin: 12px 0 24px;
    padding-left: 24px;
}

.prom-page-content strong {
    color: var(--prom-dark);
}







/* Slider arrows - bottom right */
.n2-ss-slider-controls-absolute-left-center,
.n2-ss-slider-controls-absolute-right-center {
    position: absolute;
    top: auto !important;
    bottom: 30px !important;
    right: 40px !important;
    left: auto !important;
    transform: none !important;
}

.n2-ss-slider-controls-absolute-left-center {
    right: 90px !important;
}

.n2-ss-slider-controls-absolute-right-center {
    right: 40px !important;
}

.n2-ss-slider .nextend-arrow {
    width: 44px !important;
    height: 44px !important;
    background: var(--prom-yellow) !important;
    border: none !important;
    border-radius: 3px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    transition: background .2s ease, transform .2s ease !important;
}

.n2-ss-slider .nextend-arrow:hover {
    background: var(--prom-dark) !important;
    transform: translateY(-2px) !important;
}

.n2-ss-slider .nextend-arrow img {
    display: none !important;
}

.n2-ss-slider .nextend-arrow-previous::after {
    content: "‹";
    font-size: 28px;
    font-weight: 300;
    color: var(--prom-dark);
    line-height: 1;
}

.n2-ss-slider .nextend-arrow-next::after {
    content: "›";
    font-size: 28px;
    font-weight: 300;
    color: var(--prom-dark);
    line-height: 1;
}

.n2-ss-slider .nextend-arrow-previous:hover::after,
.n2-ss-slider .nextend-arrow-next:hover::after {
    color: var(--prom-yellow);
}





body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.prom-footer {
    margin-top: auto;
}

/* ===========================================================
   ABOUT PAGE
   =========================================================== */

/* --- Yellow accent bar --- */
.prom-about-page {
    background: #fff;
}
.prom-yellow-bar {
    width: 60px;
    height: 4px;
    background: var(--prom-yellow);
    margin: 0 auto 18px;
}
.prom-yellow-bar--left {
    margin-left: 0;
}

/* --- Page subtitle (used on about, can reuse) --- */
.prom-page-subtitle {
    max-width: 600px;
    margin: 14px auto 0;
    font-size: 1.05rem;
    color: var(--prom-muted);
    line-height: 1.6;
}

/* --- About intro section --- */
.prom-about-intro {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px 56px;
}
.prom-about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.prom-about-text {
    font-size: 1.05rem;
    color: var(--prom-text);
    line-height: 1.8;
}
.prom-about-text p {
    margin-bottom: 18px;
}
.prom-about-text p:last-child {
    margin-bottom: 0;
}

/* --- About sidebar --- */
.prom-about-sidebar {
    background: var(--prom-bg);
    border-left: 4px solid var(--prom-yellow);
    padding: 30px 28px;
    position: sticky;
    top: 84px;
    border-radius: 5px;
}
.prom-about-sidebar h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 16px;
    color: var(--prom-dark);
}
.prom-about-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.prom-about-sidebar li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: var(--prom-text);
    font-weight: 500;
}
.prom-about-sidebar li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--prom-yellow);
    border-radius: 1px;
    flex: 0 0 auto;
}

/* --- Clients section --- */
.prom-clients-section {
    padding: 56px 0 64px;
    background: var(--prom-bg);
}
.prom-clients-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
}
.prom-clients-inner h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--prom-dark);
}
.prom-clients-lead {
    color: var(--prom-text);
    font-size: 1.02rem;
    margin: 0 0 36px;
    max-width: 75%;
}

/* --- Country grid --- */
.prom-country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.prom-country-card {
    background: #fff;
    padding: 28px 26px;
    border: 1px solid var(--prom-line);
    transition: box-shadow .18s, transform .18s;
    border-radius: 5px;
}
.prom-country-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}
.prom-country-flag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--prom-yellow);
}
.prom-flag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--prom-yellow);
}
.prom-country-flag h3 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0;
}
.prom-country-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}
.prom-country-card li {
    font-size: .94rem;
    color: var(--prom-text);
    display: flex;
    align-items: center;
    gap: 9px;
}
.prom-country-card li::before {
    content: "\2014";
    color: var(--prom-yellow);
    font-weight: 700;
}

/* --- Closing block --- */
.prom-about-closing {
    max-width: 1480px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}
.prom-closing-box {
    background: var(--prom-dark);
    color: #fff;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    gap: 36px;
	border-radius: 5px;
}
.prom-closing-bar {
    width: 6px;
    align-self: stretch;
    background: var(--prom-yellow);
    flex: 0 0 auto;
    border-radius: 2px;
}
.prom-closing-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 10px;
}
.prom-closing-box p:last-child {
    margin-bottom: 0;
}
.prom-closing-box strong {
    color: var(--prom-yellow);
}

/* --- About page responsive --- */
@media (max-width: 900px) {
    .prom-about-intro-grid {
        grid-template-columns: 1fr;
    }
    .prom-about-sidebar {
        position: static;
    }
    .prom-country-grid {
        grid-template-columns: 1fr 1fr;
    }
    .prom-closing-box {
        flex-direction: column;
        gap: 0;
    }
    .prom-closing-bar {
        width: 100%;
        height: 4px;
        align-self: auto;
        margin-bottom: 24px;
    }
}
@media (max-width: 600px) {
    .prom-country-grid {
        grid-template-columns: 1fr;
    }
    .prom-closing-box {
        padding: 28px 22px;
    }
}
/* ===========================================================
   CONTACTS PAGE
   =========================================================== */

.prom-contacts-page {
    background: #fff;
}
.prom-contacts-section {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px 64px;
}
/* .prom-contacts-inner {
    max-width: 860px;
} */

/* --- Contact cards grid --- */
.prom-contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.prom-ccard {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--prom-line);
    padding: 22px 24px;
    transition: box-shadow .15s;
	border-radius: 5px;
}
.prom-ccard:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}
.prom-ccard-ico {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    background: var(--prom-yellow);
    display: grid;
    place-items: center;
}
.prom-ccard-ico svg {
    width: 20px;
    height: 20px;
    color: var(--prom-dark);
}
.prom-ccard h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px;
}
.prom-ccard p {
    color: var(--prom-text);
    font-size: .94rem;
    margin: 0;
}
.prom-ccard a {
    color: var(--prom-dark);
    font-weight: 600;
}
.prom-ccard a:hover {
    color: var(--prom-yellow);
}

/* --- Requisites block --- */
.prom-req-block {
    background: var(--prom-bg);
    border-left: 4px solid var(--prom-yellow);
    padding: 28px;
    margin-top: 24px;
}
.prom-req-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.prom-req-block dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 20px;
    font-size: .94rem;
    margin: 0;
}
.prom-req-block dt {
    color: var(--prom-muted);
}
.prom-req-block dd {
    font-weight: 600;
    color: var(--prom-dark);
    margin: 0;
}

/* --- Note --- */
.prom-contacts-note {
    color: var(--prom-muted);
    font-size: .92rem;
    margin-top: 20px;
}

/* --- Contacts responsive --- */
@media (max-width: 900px) {
    .prom-contact-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}
@media (max-width: 600px) {
    .prom-req-block dl {
        grid-template-columns: 1fr;
    }
}

/* ===========================================================
   HOME PAGE (redesigned)
   =========================================================== */

/* --- Section scaffolding --- */
.prom-home-section-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
}
.prom-home-sec-head {
    margin-bottom: 36px;
}
.prom-home-sec-head h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--prom-dark);
}
.prom-home-sec-head p {
    color: var(--prom-muted);
    margin: 0;
    max-width: 600px;
    font-size: 1rem;
}

/* --- Products section on home --- */
.prom-home-products-section {
    padding: 72px 0;
    background: #fff;
}
.prom-home-catalog-link {
    text-align: center;
    margin-top: 36px;
}

/* --- About split section --- */
.prom-home-about-section {
    padding: 72px 0;
    background: var(--prom-bg);
}
.prom-home-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.prom-home-about-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.prom-home-about-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 5px;
    margin: 0;
    padding: 0;
}
.prom-home-about-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.prom-home-about-photo:hover .prom-home-about-img {
    transform: scale(1.05);
}
.prom-home-about-placeholder {
    aspect-ratio: 4 / 3;
    background: var(--prom-bg);
    display: grid;
    place-items: center;
    font-size: .7rem;
    color: var(--prom-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    border: 1px solid var(--prom-line);
    border-radius: 5px;
}
.prom-home-about-copy h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 14px;
    color: var(--prom-dark);
}
.prom-home-about-copy .prom-home-about-text {
    max-width: none;
    margin: 0 0 24px;
    text-align: left;
}
.prom-home-about-copy .prom-home-about-text p {
    color: var(--prom-text);
    margin-bottom: 14px;
    font-size: 1.02rem;
}
.prom-home-about-copy .prom-home-about-text p:last-child {
    margin-bottom: 0;
}

/* --- Home responsive --- */
@media (max-width: 900px) {
    .prom-home-about-split {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .prom-home-about-media {
        grid-template-columns: 1fr;
    }
}

/* ===========================================================
   CATALOG PAGE (redesigned)
   =========================================================== */

.prom-catalog-page {
    background: #fff;
}
.prom-catalog-section {
    padding: 0 0 64px;
}
.prom-catalog-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================================================
   SINGLE PRODUCT PAGE (redesigned)
   =========================================================== */

.prom-single-product {
    background: #fff;
}

/* --- Back nav --- */
.prom-back-nav {
    padding: 80px 0 0;
}
.prom-back-nav-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
}
.prom-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--prom-muted);
    text-decoration: none;
    transition: color .15s;
}
.prom-back-link:hover {
    color: var(--prom-dark);
}
.prom-back-link:hover svg {
    transform: translateX(-3px);
}
.prom-back-link svg {
    transition: transform .15s;
    flex: 0 0 auto;
}

/* --- Product layout --- */
.prom-sp-section {
    padding: 24px 0 64px;
}
.prom-sp-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
}
.prom-sp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* --- Gallery --- */
.prom-sp-main-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--prom-line);
    border-radius: 5px;
    cursor: pointer;
    background: #f5f5f5;
}
.prom-sp-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s;
}
.prom-sp-main-img:hover img {
    transform: scale(1.03);
}
.prom-sp-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.prom-sp-thumb {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    background: #f5f5f5;
    transition: border-color .15s;
}
.prom-sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prom-sp-thumb.is-active {
    border-color: var(--prom-yellow);
}
.prom-sp-thumb:hover {
    border-color: var(--prom-line);
}

/* --- Product info --- */
.prom-sp-info h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.15;
}
.prom-sp-cat {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--prom-yellow);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.prom-sp-cat::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--prom-yellow);
}

/* --- Product description prose --- */
.prom-sp-desc {
    margin-top: 24px;
}
.prom-sp-prose {
    font-size: 1rem;
    color: var(--prom-text);
    line-height: 1.8;
}
.prom-sp-prose p {
    margin-bottom: 16px;
}
.prom-sp-prose p:last-child {
    margin-bottom: 0;
}
.prom-sp-prose ul {
    list-style: none;
    margin: 18px 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.prom-sp-prose li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: .97rem;
    color: var(--prom-text);
}
.prom-sp-prose li::before {
    content: "\2013";
    color: var(--prom-yellow);
    font-weight: 700;
    font-size: 1.1em;
    flex: 0 0 auto;
}
.prom-sp-prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--prom-dark);
    margin: 28px 0 12px;
}
.prom-sp-prose h3:first-child {
    margin-top: 0;
}

/* --- Single product responsive --- */
@media (max-width: 900px) {
    .prom-sp-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .prom-sp-info h1 {
        font-size: 1.7rem;
    }
}

.prom-footer-grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 3fr;
    gap: 40px;
    margin-bottom: 36px;
    align-items: start;
}

.prom-footer-desc {
    color: #999;
    font-size: .94rem;
    line-height: 1.7;
}

/* Footer link lists */
.prom-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.prom-footer-links a {
    color: #ccc;
    font-size: .92rem;
    text-decoration: none;
    transition: color .15s;
}
.prom-footer-links a:hover {
    color: var(--prom-yellow);
}

/* Footer contacts with icons */
.prom-footer-contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0px;
}
.prom-footer-contacts li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .92rem;
    color: #ccc;
}
.prom-footer-contacts svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--prom-yellow);
}
.prom-footer-contacts a {
    color: #ccc;
    text-decoration: none;
    transition: color .15s;
}
.prom-footer-contacts a:hover {
    color: var(--prom-yellow);
}
.prom-home-sec-head h1 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--prom-dark);
}

.prom-home-sec-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 36px;
}
.prom-home-sec-head h1 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--prom-dark);
}
.prom-home-sec-head p {
    color: var(--prom-muted);
    margin: 0;
    max-width: 600px;
    font-size: 1rem;
}
.prom-home-stats {
    display: flex;
    gap: 16px;
}
.prom-stat {
    text-align: center;
    padding: 22px 20px;
    background: var(--prom-yellow);
    border-radius: 5px;
    min-width: 120px;
}
.prom-stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--prom-dark);
    line-height: 1;
    margin-bottom: 6px;
}
.prom-stat-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--prom-dark);
    line-height: 1.3;
}

@media (max-width: 900px) {
    .prom-home-sec-head {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 900px) {
    .prom-home-sec-head {
        grid-template-columns: 1fr;
    }
    .prom-home-stats {
        flex-wrap: wrap;
    }
    .prom-stat {
        min-width: 90px;
        padding: 16px 14px;
    }
    .prom-stat-num {
        font-size: 1.6rem;
    }
}

@media (max-width: 900px) {
    .prom-home-about-media {
        display: none;
    }
}

@media (max-width: 900px) {
    .prom-footer-grid {
        grid-template-columns: 1fr;
    }
    .prom-footer-contacts li {
        word-break: break-word;
    }
}
@media (max-width: 900px) {
    .prom-footer-grid > div:empty,
    .prom-footer-grid > div:has(.prom-footer-title:only-child) {
        display: none;
    }
    .prom-footer-grid {
        gap: 30px;
    }
}


.prom-country-card--soft {
    background: #f7f7f7 !important;
    border-color: #E0E0E0 !important;
}

.prom-ua-clients-title {
	font-size: 1.8rem;
    font-weight: 800;
    color: var(--prom-dark);
	margin: 10px 0px 36px 0px;
}