/*
Theme Name: SpaceOffice 
Author: Muhamed Kanapiya
Version: 1.2.16
Description: Custom WordPress theme
*/

/* =============================================
   RESET & BASE
   ============================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background-color: #000000;
}

body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography reset */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
    line-height: 1.2;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary);
}

/* Lists */
ul,
ol {
    list-style: none;
}

/* Media */
img,
video,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Forms */
input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    background: none;
    appearance: none;
    -webkit-appearance: none;
}

button {
    cursor: pointer;
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

/* Misc */
hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

address {
    font-style: normal;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: none;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* =============================================
   CSS VARIABLES — замени на свои из Figma
   ============================================= */

:root {
    /* Colors */
    --color-primary: #3A86FF;
    --color-primary-dark: #2563EB;
    --color-secondary: #FF6B6B;
    --color-text: #1A1A2E;
    --color-text-muted: #6B7280;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F9FAFB;
    --color-border: #E5E7EB;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Typography */
    --navy-blue: #021a56;
    --dark: #1c1f2a;
    --yelow: #ffd964;
    --surface-soft: #f4f6fa;
    /* Legacy token kept for compatibility with existing selectors */
    --d9d9d9: var(--dark);
    --font-family: "Inter", sans-serif;
    --second-family: "Inter", sans-serif;
    --third-family: "Inter", sans-serif;
    --font3: "Inter", sans-serif;
    --font4: "Inter", sans-serif;
    --font5: "Inter", sans-serif;

    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */

    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing */
    --space-1: 0.25rem;
    /* 4px  */
    --space-2: 0.5rem;
    /* 8px  */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */

    /* Layout */
    --container-max: 1280px;
    --container-pad: var(--space-6);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition: 0.2s ease;
    --transition-slow: 0.4s ease;

    /* Z-index */
    --z-header: 100;
    --z-modal: 200;
    --z-tooltip: 300;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.section {
    padding-block: var(--space-20);
    overflow-x: hidden;
}

.section-title {
    font-family: var(--third-family);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--color-text);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-top: var(--space-4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* =============================================
   WORDPRESS CORE CLASSES
   ============================================= */

.wp-block-image img {
    border-radius: var(--radius-md);
}

.alignleft {
    float: left;
    margin: 0 var(--space-6) var(--space-4) 0;
}

.alignright {
    float: right;
    margin: 0 0 var(--space-4) var(--space-6);
}

.aligncenter {
    display: block;
    margin-inline: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-2);
    text-align: center;
}

.site-header {
    background: #242222;
    height: 93px;
    position: relative;
    z-index: var(--z-header);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
}

.header-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
    gap: 88px;
}

nav {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;

}

nav>div>a,
nav>a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 78%;
    text-align: center;
    color: #fff;
}

nav>div>a:hover,
nav>a:hover {
    color: #fff;
    text-decoration: underline;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    height: 93px;
    position: relative;
    z-index: 91;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -24px;
    width: calc(100% + 48px);
    height: 24px;
}

.dopdown-content {
    display: grid;
    gap: 14px;
    color: #fff;
    height: auto;
    white-space: normal;
}

.dopdown-content a {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    text-align: left;
}

.dopdown-content a:hover {
    color: #fff;
    text-decoration: underline;
}

.dropdown-panel {
    position: fixed;
    top: 97px;
    left: 0;
    width: 100%;
    background: #242222;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    z-index: 90;
}

.dropdown-panel__inner {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
    padding-top: 26px;
    padding-bottom: 30px;
    padding-left: 4%;
}

.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}


.header-contacs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
    gap: 43px;
}

.header-contacs>.phone>a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 85%;
    text-align: center;
    color: #fff;
}

.socials {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    gap: 10px;
}

.header-mobile-actions {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

.categories-old {
    background: #F4F6FA;
    padding: 77px 80px 88px 80px;
}

.categories-old h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    color: var(--dark);
    margin-bottom: 75px;
}

.categories-grid-old {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 54px;
    grid-column-gap: 115px;
}

.category-card-old {
    position: relative;
    display: block;
    overflow: hidden;

}

.category-card-old a {
    color: var(--d9d9d9);
}

.category-card-old a:hover {
    text-decoration: underline;
}

.categories-grid-old img {
    width: 350px;
    height: 270px;
    object-fit: cover;
    margin-bottom: 22px;
}

.category-card__title__old {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    color: var(--d9d9d9);
}

.categories-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    color: var(--dark);
    margin-top: 77px;
    margin-bottom: 75px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 0;
    grid-column-gap: 0;
}

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 481 / 491;
    background: #242222;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 25%, rgba(0, 0, 0, 0.36) 100%);
    pointer-events: none;
}

.categories-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}


.category-card__title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: calc(100% - 24px);
    padding: 8px 14px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    isolation: isolate;
}

.category-card__title::before {
    content: "";
    position: absolute;
    inset: -8px -12px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.68);
    filter: blur(16px);
    opacity: 0.92;
    z-index: -1;
    pointer-events: none;
}

.category-card:hover img {
    transform: scale(1.04);
}

.hero {
    background: #242222;
    height: 827px;
    position: relative;
}

.left-arrow {
    position: absolute;
    left: 27px;
    top: 50%;
    z-index: 3;
    cursor: pointer;
}

.right-arrow,
.right--arrow {
    position: absolute;
    right: 27px;
    top: 50%;
    z-index: 3;
    cursor: pointer;
}

.hero-slides {
    position: relative;
    overflow: hidden;
    height: 827px;
    touch-action: pan-y;
}

.hero-slides .slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(48px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0.45s;
}

.hero-slides .slider-item.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
    transition-delay: 0s;
}

.hero-slides .slider-item.is-enter-right,
.hero-slides .slider-item.is-enter-left,
.hero-slides .slider-item.is-exit-left,
.hero-slides .slider-item.is-exit-right {
    visibility: visible;
    transition-delay: 0s;
}

.hero-slides .slider-item.is-enter-right {
    transform: translateX(48px);
    z-index: 3;
}

.hero-slides .slider-item.is-enter-left {
    transform: translateX(-48px);
    z-index: 3;
}

.hero-slides .slider-item.is-exit-left {
    opacity: 0;
    transform: translateX(-48px);
    z-index: 1;
}

.hero-slides .slider-item.is-exit-right {
    opacity: 0;
    transform: translateX(48px);
    z-index: 1;
}

.hero-text {
    padding-top: 99px;
    margin-left: 10%;
}

.hero-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 109%;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 45px;
}

.hero-subtitle {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 30px;
    line-height: 125%;
    color: #fff;
}

.hero-people {
    position: absolute;
    bottom: 0;
    left: 10%;
    z-index: 900;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 800;
}

footer {
    background: var(--d9d9d9);
    padding: 99px 146px 44px 91px;
}

.footer-cols {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.footer-descr {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 129%;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    gap: 24px;
}

.footer-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 98%;
    color: #fff;
    margin-bottom: 30px;
}

.footer-address {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    color: #fff;
    margin-top: 10px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: baseline;
    align-content: flex-start;
    gap: 10px;
}

.footer-menu a {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    color: #d3d3d3;
}

.collection-text {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 163%;
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    margin-top: 11px;
}

.collection-icon-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: flex-start;
    gap: 5px;
}

.copy {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 123%;
    text-align: center;
    color: #d3d3d3;
}

.sale-heading {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 36px;
    color: var(--d9d9d9);
    margin-top: 99px;
    margin-bottom: 22px;
}

.sale-items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    margin-bottom: 170px;
}

.sale-item {
    padding-inline: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers image and text */
    text-align: center;
    position: relative;
    /* Required for the divider line */
}

.sale-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    /* Adjust these percentages to change line height */
    bottom: 10%;
    width: 1px;
    background-color: rgba(28, 31, 42, 0.3);
    /* The line color */
}

/* 4. Styling internal elements */
.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.product-info {
    min-width: 200px;
}

.sale-item>.product-info h3 {
    margin-bottom: 8px;
    font-weight: 400;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: var(--dark);
}

/* Pricing Layout */
.price-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
}

.old-price {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    text-decoration: line-through;
    color: var(--dark);
}

.discount {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #d50000;
}

.new-price {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #d50000;
    text-align: right;
}

#footer-form {
    background-color: #f4f6fa;
    background-image: url(./assets/images/form-bg-2.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 70% auto;
    padding-bottom: 283px;
    padding-top: 155px;

}

.footer-form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.footer-form h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
}

.footer-form p {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    color: #000;
    width: 383px;
}

#form-area {
    min-width: 528px;
}


#logos {
    padding-inline: 111px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 90px;
    grid-row-gap: 40px;
    place-items: center;
}

#about-video {
    padding-block: 120px;

}

#about-video .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 69px;
}

#about-video p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    color: var(--d9d9d9);
}

.black-btn {
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 28px;
    text-align: center;
    color: var(--d9d9d9);
    border: 3px solid var(--d9d9d9);
    border-radius: 10px;
    padding: 15px 28px;
    min-width: 270px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yellow-btn {
    border-radius: 10px;
    padding: 17px 28px;
    width: 310px;
    height: 68px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: var(--yelow);
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    color: var(--d9d9d9);
}

.projects-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    gap: 29px;
}

.projects-info {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    gap: 16px;
    width: 489px;
    max-width: 100%;
}

.projects-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 32px;
    color: var(--d9d9d9);
}

.projects-descr {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    color: var(--d9d9d9);
    width: 469px;
}

.projects-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 670px;
}

.projects-slider__viewport {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.projects-slider__track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s ease;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

.projects-slider__slide {
    flex: 0 0 calc(50% - 8px);
    border-radius: 2px;
    overflow: hidden;
    background: #e9ebf0;
}

.projects-slider__slide img {
    width: 100%;
    height: 423px;
    object-fit: cover;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
}

.projects-slider__lightbox-trigger {
    display: block;
    height: 100%;
    cursor: zoom-in;
}

.projects-slider__arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    color: #000000;
    font-size: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition);
}

.projects-slider__icon {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
}

.projects-slider__arrow--prev .projects-slider__icon {
    transform: rotate(-135deg);
}

.projects-slider__arrow--next .projects-slider__icon {
    transform: rotate(45deg);
}

.projects-slider__arrow[disabled] {
    opacity: 0.35;
    pointer-events: none;
}

#projects {
    padding-block: 120px;
}

.slider-item {
    position: relative;
    height: 827px;
}

.slider-item .slider-big-img {
    width: 100%;
    height: 398px;
    object-fit: cover;
}

.slide-title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 28px;
    line-height: 94%;
    text-align: center;
    color: #fff;
    margin-block: 97px 17px;
}

.slide-descr {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 125%;
    text-align: center;
    color: #fff;
    margin-bottom: 62px;
}

.slider-btn {
    border: 3px solid #fff;
    border-radius: 10px;
    padding: 15px 28px;
    width: 305px;
    height: 81px;
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    color: #fff;
}

.slider-btn:hover {
    background: #fff;
    color: #000;
}


.slide-content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
}

.video-slide {
    padding: 67px 76px;
    position: relative;
}

.video-slide img {
    border-radius: 20px;
    width: 100%;
    height: 685px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.play-button img:hover {
    border: 1px solid #fff;
}

.video-slide-content {
    position: absolute;
    top: 90px;
    left: 149px;
}

.video-slide-card {
    border-radius: 13px;
    width: 427px;
    background: rgba(255, 255, 255, 0.8);
    padding: 19px 21px;
    margin-bottom: 10px;
}

.video-slide-card-title {
    font-family: var(--font4);
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #000;
    margin-bottom: 20px;
}

.video-slide-card-list {
    display: grid;
    gap: 6px;
}

.video-slide-card-list li {
    position: relative;
    padding-left: 22px;
    font-family: var(--font4);
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: #000;
}

.video-slide-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 1;
}


.img-container {
    position: relative;
}

body.modal-open {
    overflow: hidden;
}

.video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.video-modal__content {
    position: relative;
    width: min(900px, 100%);
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.video-modal__close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 34px;
    line-height: 1;
    color: #000;
}

.video-modal__player {
    width: 100%;
    max-height: 70vh;
    background: #000;
    border-radius: 8px;
}

.video-modal__media {
    width: 100%;
}

.video-modal__iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 70vh;
    background: #000;
    border: 0;
    border-radius: 8px;
}

.video-modal__player[hidden],
.video-modal__iframe[hidden] {
    display: none !important;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
}

.image-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.image-lightbox__content {
    position: relative;
    width: min(1080px, 100%);
    max-height: calc(100vh - 40px);
    background: #101010;
    border-radius: 12px;
    padding: 12px;
    z-index: 1;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.image-lightbox__close {
    position: absolute;
    top: 6px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.image-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
}

.image-lightbox__nav--prev {
    left: 12px;
}

.image-lightbox__nav--next {
    right: 12px;
}

.image-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.24);
}

.image-lightbox__nav[hidden] {
    display: none;
}

.image-lightbox__image {
    display: block;
    width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 8px;
}

.image-lightbox__caption {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
    margin-top: 8px;
    padding-inline: 28px;
}

.slider-img-area {
    position: relative;
}

.slider-img-tag {
    position: absolute;
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
    background: #000;
    border-radius: 30px;
    padding: 0px 23px;
    height: 42px;
    top: 34px;
    right: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
}

iframe[src*="amocrm"] {
    display: block;
    margin: 0 auto;
    width: 100% !important;
    max-width: 100% !important;
}

.projects-page {
    padding-top: 171px;
    padding-bottom: 70px;
}

.projects-page h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    color: var(--d9d9d9);
    margin-bottom: 24px;
    margin-top: 23px;
}

.projects-page__slider-wrap {
    padding: 18px 14px 28px;
    margin-bottom: 53px;
}

.projects-page .projects-slider {
    max-width: 100%;
    gap: 10px;
}

.projects-page .projects-slider__slide {
    flex: 0 0 calc(33.333% - 11px);
}

.projects-page .projects-slider__slide img {
    height: 220px;
}

.kano-page {
    background: #242222;
}

.kano-hero {
    width: 100%;
    height: 583px;
    background-image: url(./assets/images/kano-hero.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    position: relative;
}

.kano-descr {
    font-family: var(--font4);
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    color: #fff;
    padding-top: 110px;
    padding-bottom: 142px;
}

.kano-numbers {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    gap: 100px;
    text-align: center;
    padding-bottom: 142px;
}

.kano-num-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: #fff;
}

.kano-num-descr {
    font-family: var(--font4);
    font-weight: 400;
    font-size: 24px;
    line-height: 121%;
    text-align: center;
    color: #fff;
}

.kano-faces {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    align-content: stretch;
    gap: 127px;
    padding-bottom: 119px;
}

.kano-faces img {
    width: 325px;
    height: 381px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 31px;
}

.kano-face {
    width: 325px;
}

.kano-face-name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    margin-top: 31px;
    margin-bottom: 9px;
}

.kano-face-subtitle {
    font-family: var(--font4);
    font-weight: 400;
    font-size: 24px;
    line-height: 121%;
    color: rgba(255, 255, 255, 0.6);
}

.kano-face-descr {
    font-family: var(--font4);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #fff;
    margin-top: 52px;
}

.awards-title {
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 36px;
    text-align: center;
    color: #fff;
}

.awards-descr {
    font-family: var(--font4);
    font-weight: 400;
    font-size: 22px;
    line-height: 127%;
    color: #fff;
    padding: 56px 0;
}

.award-certs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-bottom: 114px;
    gap: 50px;
}

.award-certs img {
    width: 147px;
}

.awards-imgs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 114px 0 223px 0;
    overflow: visible;
}

.award-item {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 7px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 117px;
    padding: 24px 45px;
    width: 234px;
    height: 234px;
    background: #282828;
    /* This creates the "above each other" effect */
    margin-left: -60px;
    /* Optional: adds a slight shadow to make the overlap more visible */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    /* Keeps the content centered */
    flex-shrink: 0;
}

.award-item:first-child {
    margin-left: 0;
}

.award-name {
    font-family: var(--font4);
    font-weight: 400;
    font-size: 22px;
    line-height: 121%;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    width: 191px;
}

.hero-video-block {
    position: relative;
    width: 100%;
    height: 824px;
    overflow: hidden;
}

.hero-video-title {
    position: absolute;
    bottom: 78px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
    color: #fff;
    width: 708px;
}

.hero-video-block__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1400px) and (min-width: 481px) {
    #slide-1 .hero-text {
        position: relative;
        z-index: 1001;
        width: 46%;
        max-width: 620px;
        margin-left: 6%;
    }

    #slide-1 .hero-image {
        width: min(56%, 860px);
    }

    #slide-1 .hero-image img {
        display: block;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1280px) {
    :root {
        --container-pad: var(--space-8);
    }
}

@media (max-width: 768px) {
    :root {
        --container-pad: var(--space-4);
        --text-3xl: 1.5rem;
        --text-4xl: 1.875rem;
        --text-5xl: 2.25rem;
        --space-20: 3rem;
        --space-16: 2.5rem;
    }

    .projects-area {
        flex-direction: column;
    }

    .projects-slider {
        max-width: 100%;
    }

    .projects-slider__slide {
        flex-basis: 100%;
    }

    .projects-slider__slide img {
        height: 300px;
    }

    .video-modal__content {
        padding: 16px;
    }

    .image-lightbox__content {
        max-height: calc(100vh - 24px);
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .site-header {
        height: 94px;
    }

    .header-inner {
        gap: 177px;
    }

    .logo-container img {
        width: 84px;
        height: auto;
    }

    .header-contacs {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #242222;
        padding: 16px;
        flex-direction: column;
        gap: 14px;
        z-index: var(--z-header);
    }

    .main-nav.is-open {
        display: flex;
        align-items: flex-start;
    }

    .main-nav>div>a,
    .main-nav>a {
        font-size: 18px;
        line-height: 120%;
        text-align: left;
    }

    nav a:hover {
        text-decoration: underline;
        color: #fff !important;
    }

    .dropdown {
        display: block;
    }

    .dropdown::after {
        display: none;
    }

    .dropdown-toggle {
        height: auto;
    }

    .dropdown-panel {
        position: static;
        width: auto;
        background: none;
        border-top: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .dropdown-panel__inner {
        display: block;
        padding: 12px 0 0;
    }

    .dopdown-content a {
        font-size: 16px;
    }

    .header-mobile-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }

    .header-mobile-actions a,
    .mobile-menu-toggle {
        width: 20px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle {
        background: transparent;
        border: 0;
        padding: 0;
        appearance: none;
    }

    .categories-old {
        padding: 32px 0;
    }

    .categories-old h3 {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 20px;
        color: var(--d9d9d9);
        text-align: center;
    }

    .categories-grid-old {
        display: grid;
        grid-template-columns: none;
        grid-template-rows: repeat(2, minmax(0, auto));
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 12px) / 2);
        column-gap: 12px;
        row-gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
        cursor: grab;
        scrollbar-width: thin;
        scrollbar-color: rgba(28, 31, 42, 0.9) rgba(28, 31, 42, 0.16);
    }

    .categories-grid-old[data-dragging="true"] {
        cursor: grabbing;
    }

    .categories-grid-old::-webkit-scrollbar {
        height: 4px;
    }

    .categories-grid-old::-webkit-scrollbar-track {
        background: rgba(28, 31, 42, 0.16);
        border-radius: 999px;
    }

    .categories-grid-old::-webkit-scrollbar-thumb {
        background: rgba(28, 31, 42, 0.9);
        border-radius: 999px;
    }

    .category-card-old {
        aspect-ratio: auto;
        user-select: none;
        -webkit-user-select: none;
    }

    .categories-grid-old img {
        width: 167px;
        height: 167px;
        margin-bottom: 14px;
    }

    .category-card__title__old {
        display: block;
        font-size: 18px;
        line-height: 1.2;
        text-align: left;
    }

    .header-mobile-actions img {
        width: 20px;
        height: 20px;
    }

    .hero-title {
        font-family: var(--third-family);
        font-weight: 700;
        font-size: 22px;
        line-height: 114%;
        color: #fff;
        margin-bottom: 17px;
    }

    .hero-subtitle {
        font-family: var(--third-family);
        font-weight: 400;
        font-size: 16px;
        line-height: 125%;
        color: #fff;
    }

    .hero-image {
        bottom: 0;
        left: 0;
        width: 100dvw;
        height: 282px;
        object-fit: cover;
        object-position: center;
    }

    .hero-image img {
        width: 100%;
    }

    .hero-people {
        height: 168px;
        z-index: 50;
        left: 0;
    }

    .hero-text {
        padding-top: 24px;
    }

    .hero-slides,
    .slider-item,
    .hero {
        height: 431px;
    }

    .slider-item .slider-big-img {
        height: 222px;
    }

    .slide-title {
        font-family: var(--third-family);
        font-weight: 800;
        font-size: 17px;
        line-height: 94%;
        text-align: center;
        color: #fff;
        margin-block: 42px 8px;
    }

    .slide-descr {
        font-family: var(--third-family);
        font-weight: 400;
        font-size: 15px;
        line-height: 125%;
        text-align: center;
        color: #fff;
        margin-bottom: 43px;
    }

    .slider-btn {
        border: 1.62px solid #fff;
        border-radius: 5px;
        padding: 8px 15px;
        width: 164px;
        height: 43px;
        font-family: var(--third-family);
        font-weight: 600;
        font-size: 17px;
        text-align: center;
        color: #fff;
    }

    .slider-img-tag {
        font-family: var(--third-family);
        font-weight: 700;
        font-size: 12px;
        line-height: 186%;
        color: #fff;
        height: 30px;
        top: auto;
        right: auto;
        bottom: 12px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        padding: 0 15px;
        padding-top: 3px;
    }

    .categories-title {
        font-size: 24px;
        margin-top: 32px;
        margin-bottom: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-flow: row;
        grid-auto-columns: auto;
        overflow: visible;
        padding-bottom: 0;
        margin-bottom: 20px;
    }

    .categories-grid img {
        width: 100%;
    }

    .category-card__title {
        max-width: calc(100% - 16px);
        padding: 6px 10px;
        font-size: 16px;
        line-height: 1.15;
    }

    .category-card:hover img {
        transform: none;
    }

    .categories-grid a {
        display: block;
        font-family: var(--font-family);
        font-weight: 400;
        color: #fff;
    }

    .categories-title {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 20px;
        text-align: center;
        color: var(--d9d9d9);
    }

    #projects {
        padding-block: 33px;
        overflow: hidden;
    }

    .projects-slider {
        display: block;
        max-width: 100%;
    }

    .projects-slider__arrow {
        display: none;
    }

    .projects-slider__viewport {
        overflow: hidden;
    }

    .projects-slider__track {
        display: flex;
        gap: 8px;
        will-change: transform;
    }

    .projects-slider__slide {
        flex: 0 0 82%;
    }

    .projects-slider__slide img {
        height: 175px;
    }

    .projects-slider__lightbox-trigger {
        cursor: pointer;
    }


    .projects-title {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: 20px;
        text-align: center;
        color: var(--d9d9d9);
    }

    .projects-descr {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        color: var(--d9d9d9);
        width: 100%;
    }

    .yellow-btn {
        font-family: var(--third-family);
        font-weight: 600;
        font-size: 16px;
        text-align: center;
        color: var(--d9d9d9);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
        background: #ffd964;
        border-radius: 10px;
        padding: 6px 12px;
        padding-top: 12px;
        width: 174px;
        height: 44px;
    }

    .projects-info {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .projects-page {
        padding-top: 132px;
        padding-bottom: 36px;
    }

    .projects-page h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .projects-page .projects-slider__slide {
        flex-basis: 72%;
    }

    .video-modal {
        padding: 12px;
    }

    .video-modal__content {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);
        border-radius: 10px;
        padding: 34px 10px 10px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .video-modal__close {
        top: 4px;
        right: 8px;
        font-size: 28px;
    }

    .video-modal__player,
    .video-modal__iframe {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: contain;
        max-height: 56vh;
        max-height: calc(100vh - 88px);
        max-height: calc(100dvh - 88px);
        border-radius: 6px;
    }

    .image-lightbox {
        padding: 12px;
    }

    .image-lightbox__content {
        width: 100%;
        max-height: calc(100dvh - 24px);
        padding: 10px;
    }

    .image-lightbox__close {
        top: 4px;
        right: 6px;
    }

    .image-lightbox__nav {
        width: 36px;
        height: 36px;
        font-size: 26px;
    }

    .image-lightbox__nav--prev {
        left: 6px;
    }

    .image-lightbox__nav--next {
        right: 6px;
    }

    .image-lightbox__image {
        max-height: calc(100dvh - 92px);
    }

    .image-lightbox__caption {
        font-size: 14px;
        padding-inline: 18px;
    }

    #logos {
        padding-inline: 0;
        padding-block: 24px 30px;
    }

    .logos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(3, auto);
        grid-column-gap: 20px;
        grid-row-gap: 18px;
        place-items: center;
    }

    .logos-grid img {
        width: auto;
        max-width: 100%;
        max-height: 50px;
        object-fit: contain;
    }

    #about-video {
        padding-block: 40px;
    }

    #about-video .container {
        gap: 40px;
    }

    #about-video p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 16px;
        line-height: 133%;
        text-align: center;
        color: var(--d9d9d9);
    }

    .footer-form {
        flex-direction: column;
        overflow: hidden;
        align-items: center;
        justify-content: center;
    }

    footer {
        padding: 20px 0 14px;
    }

    footer .container {
        max-width: none;
    }

    .footer-cols {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "logo contact"
            "descr contact"
            "categories categories"
            "socials socials";
        column-gap: 16px;
        row-gap: 14px;
    }

    .footer-col-brand {
        display: contents;
    }

    .footer-col-brand>img {
        grid-area: logo;
        width: 118px;
    }

    .footer-descr {
        grid-area: descr;
        margin: 8px 0 0;
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 10px;
        line-height: 143%;
        color: #fff;
        opacity: 0.8;
    }

    .footer-col-showroom {
        grid-area: contact;
        text-align: right;
    }

    .footer-col-showroom .footer-title {
        display: none;
    }

    .footer-address {
        margin-top: 20px;
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 12px;
        text-align: right;
        color: #fff;
        opacity: 0.8;
    }

    .footer-col-categories {
        grid-area: categories;
        margin-top: 6px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
    }

    .footer-title {
        font-family: var(--second-family);
        font-weight: 500;
        font-size: 13px;
        line-height: 100%;
        color: #fff;
    }

    .footer-menu {
        margin-top: 13px;
        gap: 10px;
    }

    .footer-menu a {
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 13px;
        color: #d3d3d3;
    }

    .footer-socials {
        grid-area: socials;
        justify-content: flex-end;
        gap: 14px;
        margin-top: 4px;
    }


    .footer-col-catalog {
        display: none;
    }

    .copy {
        margin-top: 12px;
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 12px;
        line-height: 163%;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-video-block {
        height: 280px;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .hero-video-block__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
        -webkit-user-select: none;
        user-select: none;
    }

    .hero-video-title {
        bottom: 16px;
        font-size: 16px;
        width: 90%;
        padding: 0 5%;
        line-height: 1.3;
    }

    .video-slide-card {
        display: none;
    }

    .video-slide {
        padding: 0;
    }

    .video-slide img {
        border-radius: 0;
    }

    .video-slide-form {
        display: none;
    }

    .video-modal__mobile-form {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(10px);
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, margin-top 0.25s ease;
        margin-top: 0;
    }

    .video-modal__mobile-form.is-visible {
        max-height: 1500px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 14px;
    }

    .video-modal__mobile-form .video-slide-form {
        display: block;
    }

    #footer-form {
        padding-block: 46px 65px;
        background-size: 110% auto;
    }

    .footer-form h3 {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 20px;
        text-align: center;
        color: #000;
    }

    .footer-form p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        color: #000;
        margin-bottom: 21px;
    }

    #form-area {
        min-width: 394px;
    }

    .black-btn {
        height: 48px;
        padding: 7px 10px;
        min-width: 200px;
        font-size: 18px;
    }

    .kano-hero {
        height: 430px;
    }

    .kano-descr {
        font-size: 16px;
        line-height: 150%;
        padding-top: 66px;
        padding-bottom: 44px;
        text-align: left;
    }

    .kano-numbers {
        flex-direction: column;
        gap: 75px;
        padding-bottom: 87px;
    }

    .kano-num-title {
        font-size: 32px;
    }

    .kano-num-descr {
        font-size: 16px;
    }

    .kano-face-name {
        font-size: 24px;
    }

    .kano-face-subtitle {
        font-size: 20px;
    }

    .kano-face-descr {
        font-size: 16px;
        line-height: 150%;
        margin-top: 30px;
    }

    .kano-faces {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        padding-bottom: 52px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        touch-action: pan-x;
    }

    .kano-face {
        flex: 0 0 338px;
        width: 338px;
        scroll-snap-align: start;
    }

    .kano-face img {
        height: 331px;
    }

    .awards-title {
        font-weight: 600;
        font-size: 20px;
        line-height: 140%;
    }

    .awards-descr {
        font-size: 16px;
        line-height: 150%;
        padding: 52px 0;
    }

    .award-certs {
        justify-content: flex-start;
        gap: 18px;
        padding: 0 0 52px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        touch-action: pan-x;
    }

    .award-certs::-webkit-scrollbar {
        display: none;
    }

    .award-certs img {
        width: 86px;
        min-width: 86px;
        scroll-snap-align: center;
    }

    .awards-imgs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        padding: 52px 0 100px 0;
    }

    .award-item {
        background: none;
        margin-left: 0;
        box-shadow: none;
        border: none;
    }

    .award-item img {
        height: 75px;
    }

    .award-name {
        font-size: 16px;
    }

    .hero-video-block {
        height: 430px;
    }

    .hero-video-title {
        bottom: 26px;
        font-size: 16px;
        line-height: 144%;
        width: 354px;
    }
}

/* =============================================
   WOOCOMMERCE PAGES
   ============================================= */

.wc-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.4;
    color: rgba(28, 31, 42, 0.64);
}

.wc-breadcrumbs a:hover {
    color: var(--dark);
    text-decoration: underline;
}

.wc-breadcrumbs__sep {
    color: rgba(28, 31, 42, 0.4);
}

.wc-archive-hero,
.wc-product-hero,
.wc-product-details,
.wc-product-related,
.wc-archive-products {
    padding-inline: 0;
}

.wc-archive-hero {
    padding-block: 135px 44px;
    background: linear-gradient(180deg, rgba(244, 246, 250, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
}

.cat-archive-title-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    gap: 26px;
}

.wc-archive-hero__eyebrow,
.wc-product-summary__eyebrow {
    margin-bottom: 12px;
    font-family: var(--third-family);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-blue);
}

.wc-archive-hero__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 36px;
    text-align: center;
    color: var(--dark);
}

.wc-archive-hero__text,
.wc-product-summary__excerpt,
.wc-product-details__text {
    margin-top: 18px;
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(28, 31, 42, 0.82);
}

.wc-archive-children {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.wc-category-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(28, 31, 42, 0.12);
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--dark);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wc-category-chip:hover {
    color: var(--dark);
    border-color: rgba(28, 31, 42, 0.24);
    box-shadow: 0 10px 28px rgba(28, 31, 42, 0.08);
    transform: translateY(-1px);
}

.wc-archive-products {
    padding-bottom: 135px;
}

.wc-archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(28, 31, 42, 0.08);
    border-radius: 18px;
    background: #fff;
}

.wc-archive-toolbar .woocommerce-result-count,
.wc-archive-toolbar .woocommerce-ordering {
    margin: 0;
    float: none;
}

.wc-archive-toolbar .woocommerce-ordering select {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(28, 31, 42, 0.12);
    border-radius: 12px;
    background: #fff;
    color: var(--dark);
}

.wc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.wc-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 18px;
    gap: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 9px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wc-product-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: -1px;
    width: 1px;
    background: rgba(28, 31, 42, 0.3);
    transition: opacity 0.2s ease;
}

.wc-products-grid>.wc-product-card:nth-child(4n)::after {
    display: none;
}

.wc-product-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.wc-product-card:hover::after {
    opacity: 0;
}

.wc-product-card img {
    width: 220px;
    height: 210px;
    object-fit: cover;
}

.wc-product-card__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: var(--dark);
}

.wc-product-card__price {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--dark);
}


.btn-details,
.wc-product-card__button,
.wc-product-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
    border: 3px solid var(--d9d9d9);
    border-radius: 10px;
    padding: 15px 8px;
    width: 305px;
    height: 81px;
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    color: var(--d9d9d9);
}

.btn-details:hover,
.wc-product-card__button:hover,
.wc-product-contact-btn:hover {
    background: var(--navy-blue);
    color: #fff;
    transform: translateY(-1px);
}

.wc-product-contact-btn--ghost {
    background: #fff;
    color: var(--dark);
    border: 1px solid rgba(28, 31, 42, 0.16);
}

.wc-product-contact-btn--ghost:hover {
    background: #f8fafc;
    color: var(--dark);
}

.wc-product-hero {
    padding-top: 130px;
    padding-bottom: 80px;
    background: #f4f6fa;
}

.wc-product-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 34px;
    align-items: start;
}

.wc-product-gallery .woocommerce-product-gallery {
    float: none;
    width: 100%;
    margin: 0;
}

.wc-product-gallery .woocommerce-product-gallery__wrapper,
.wc-product-gallery .woocommerce-product-gallery__image {
    border-radius: 24px;
    overflow: hidden;
}

.wc-product-summary {
    padding: 34px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(28, 31, 42, 0.08);
    box-shadow: 0 18px 44px rgba(28, 31, 42, 0.08);
}

.wc-product-summary__categories {
    margin-top: 18px;
    font-family: var(--font-family);
    font-size: 14px;
    color: rgba(28, 31, 42, 0.62);
}

.wc-product-summary__price {
    margin-top: 18px;
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 34px;
    color: var(--navy-blue);
}

.wc-product-summary__price del {
    opacity: 0.48;
    font-size: 0.68em;
}

.wc-product-summary__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.wc-product-meta-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.wc-product-meta-list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    font-family: var(--font-family);
    font-size: 15px;
    color: rgba(28, 31, 42, 0.76);
}

.wc-product-meta-list strong {
    color: var(--dark);
}

.wc-product-details {
    padding-block: 20px 46px;
}

.wc-product-details__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
    gap: 24px;
}

.wc-product-details__content,
.wc-product-details__specs {
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(28, 31, 42, 0.08);
    box-shadow: 0 12px 30px rgba(28, 31, 42, 0.06);
}

.wc-product-details__title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
    color: var(--dark);
}

.wc-specs-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.wc-specs-list__item {
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
}

.wc-specs-list__label {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-family);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(28, 31, 42, 0.52);
}

.wc-specs-list__value {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.5;
    color: var(--dark);
}


.related.products {
    margin-top: 18px;
}

.related.products ul.products {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wc-product-related .woocommerce-products-header {
    margin-bottom: 18px;
}

.catalog-block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    padding-block: 54px;
    gap: 98px;
}

.catalog-block__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 32px;
    color: #000;
    max-width: 793px;
}

.catalog-block__descr {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 30px;
    color: #000;
    padding-block: 27px 72px;
    max-width: 507px;
}

.catalog-block__content a {
    max-width: 382px;
}

/* Responsive order: desktop -> mobile */

@media (max-width: 1199px) {

    .wc-products-grid,
    .related.products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wc-product-shell,
    .wc-product-details__grid {
        grid-template-columns: 1fr;
    }

    .wc-products-grid>.wc-product-card:nth-child(3n) {
        border-right: none;
    }

    .wc-products-grid>.wc-product-card:nth-child(3n)::after {
        display: none;
    }

    .wc-products-grid>.wc-product-card:nth-child(4n)::after {
        display: block;
    }
}

@media (max-width: 991px) {
    .wc-product-shell--compact {
        grid-template-columns: 1fr;
    }

    .wc-product-tabs-layout__nav {
        gap: 16px;
    }

    .wc-product-related .products.columns-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .wc-archive-hero {
        padding-block: 34px 22px;
    }

    .wc-archive-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .wc-products-grid,
    .related.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .wc-product-summary,
    .wc-product-details__content,
    .wc-product-details__specs {
        padding: 20px;
        border-radius: 18px;
    }

    .wc-product-summary__price {
        font-size: 28px;
    }

    .wc-product-summary__actions {
        flex-direction: column;
    }

    .wc-products-grid>.wc-product-card:nth-child(3n)::after {
        display: block;
    }

    .wc-products-grid>.wc-product-card:nth-child(2n)::after {
        display: none;
    }
}

.wc-product-hero .cat-archive-title-area {
    justify-content: flex-start;
}

.wc-product-hero .wc-archive-hero__title {
    text-align: left;
}


.wc-product-shell--compact {
    display: flex;
    padding-top: 41px;
    justify-content: space-between;
    gap: 78px;
}

.wc-product-media {
    flex: 1;
    width: 612px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wc-product-media__main {
    border: 1px solid rgba(28, 31, 42, 0.1);
    overflow: hidden;
    background: #f4f6fa;
}

.wc-product-media__main img {
    width: 612px;
    height: 320px;
    object-fit: cover;
}

.wc-product-media__thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 23px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.wc-product-media__thumb {
    border: 1px solid rgba(28, 31, 42, 0.12);
    overflow: hidden;
    background: #f4f6fa;
    min-height: 153px;
    display: grid;
    place-items: center;
    flex: 0 0 145px;
}

.wc-product-media__thumb img {
    height: 153px;
    width: 200px;
    object-fit: cover;
}

.wc-product-media__thumb--video {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-family);
    font-size: 12px;
    color: var(--dark);
}

.wc-product-media__thumbs::-webkit-scrollbar {
    height: 6px;
}

.wc-product-media__thumbs::-webkit-scrollbar-thumb {
    background: rgba(28, 31, 42, 0.28);
    border-radius: 100px;
}

.wc-product-media__play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(2, 26, 86, 0.92);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    padding-left: 2px;
}

.wc-product-summary {
    box-shadow: none;
    border-radius: 10px;
    padding: 18px;
}

.wc-product-summary__title {
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 40px;
    text-transform: capitalize;
    color: var(--dark);
    padding-bottom: 16px;
}

.wc-product-summary__excerpt {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    color: #000;
    padding: 10px;
}

.wc-product-summary__price {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    color: #000;
}

.wc-product-contact-btn,
.wc-product-contact-btn--ghost {
    min-height: 44px;
}

.wc-product-details {
    padding-top: 18px;
}

.wc-product-tabs-layout {
    display: block;
    flex: 1;
}

.wc-product-tabs-layout__content {
    min-height: 300px;
}

.wc-product-tab-panel {
    display: none;
    padding-top: 18px;
}

.wc-product-tab-panel.is-active {
    display: block;
}

.wc-product-tabs-layout .wc-product-summary__excerpt,
.wc-product-tabs-layout .wc-product-details__text {
    margin-top: 0;
}

.wc-product-tabs-layout__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 52px;
    margin-bottom: 73px;
}

.wc-product-tab-btn {
    min-height: 32px;
    padding: 0;
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    text-decoration: none;
    text-decoration-skip-ink: none;
    color: rgba(0, 0, 0, 0.7);
}

.wc-product-tab-btn.is-active {
    background: transparent;
    color: var(--dark);
}

.wc-product-tab-btn.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--dark);
}

.wc-product-details__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
}

.wc-product-details__text,
.wc-specs-list__value {
    font-size: 15px;
    line-height: 1.6;
}

.wc-size-list__item {
    padding: 40px 0;
    border-bottom: 1px solid rgba(28, 31, 42, 0.3);
    display: flex;
    gap: 22px;
}

.wc-size-list__item:last-of-type {
    border-bottom: none;
}

.wc-size-list__item img {
    width: 240px;
    height: 120px;
    object-fit: cover;
}

.wc-size-list__name,
.wc-size-list__dimensions {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #000;
}

.wc-colors-block__name {
    margin: 0 0 16px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 28px;
    color: #000;
}

.wc-colors-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 126px);
    gap: 22px;
}

.wc-colors-list__item {
    line-height: 0;
}

.wc-colors-list__swatch {
    display: block;
    width: 126px;
    height: 126px;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.wc-catalog-block__name {
    margin: 0;
    font-family: var(--font-family);
    font-size: 52px;
    line-height: 1.05;
    font-weight: 500;
    color: #1f2430;
}

.wc-catalog-block__text {
    margin-top: 10px;
    font-size: 31px;
    line-height: 1.22;
    color: #1f2430;
}

.wc-catalog-block__image {
    margin-top: 24px;
}

.wc-catalog-block__image img {
    display: block;
    height: 243px;
    max-width: 100%;
}

.wc-catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    color: var(--dark);
}

.wc-catalog-link:hover {
    opacity: 0.8;
}

.wc-product-related {
    padding-top: 14px;
    padding-bottom: 130px;
    background: #f4f6fa;
}

.wc-product-related .products.columns-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.wc-product-related .products.columns-4::before,
.wc-product-related .products.columns-4::after {
    display: none;
}

.wc-product-categories {
    padding-block: 24px 36px;
}

.wc-product-categories__title {
    font-family: var(--font-family);
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 18px;
    color: var(--dark);
}

.wc-product-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.wc-product-category-card {
    display: grid;
    gap: 8px;
}

.wc-product-category-card img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    border-radius: 4px;
}

.wc-product-category-card span {
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--dark);
}

.single-product #footer-form {
    padding-top: 34px;
}

.related-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.related-products__item {
    padding: 0 30px;
}

.related-products__item:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.16) !important;
}

.related-products__media {
    display: block;
    margin-bottom: 12px;
}

.related-products__media img {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 210px;
    margin: 0 auto;
    object-fit: contain;
}

.related-products__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: var(--d9d9d9);
}

.related-products__title a {
    color: #1f2430;
    text-decoration: none;
}

.related-products__title a:hover {
    opacity: 0.75;
}

.related-products__price {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--dark);
}

@media (max-width: 640px) {
    .related-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .related-products__item {
        padding: 0;
        border-right: none !important;
    }

    .related-products__title,
    .related-products__price {
        font-size: 18px;
    }

    .wc-product-media__main img {
        height: 240px;
    }

    .wc-size-list__item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .wc-size-list__media img {
        max-width: 100%;
    }

    .wc-size-list__name {
        font-size: 22px;
    }

    .wc-size-list__dimensions {
        font-size: 24px;
    }

    .wc-colors-block__name {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .wc-colors-list {
        grid-template-columns: repeat(2, 97px);
        gap: 14px;
    }

    .wc-colors-list__swatch {
        width: 97px;
        height: 97px;
    }

    .wc-catalog-block__name {
        font-size: 44px;
    }

    .wc-catalog-block__text {
        font-size: 26px;
    }

    .wc-catalog-link {
        font-size: 34px;
    }

    .wc-product-media__thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wc-product-categories__grid,
    .wc-product-related .products.columns-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .wc-product-shell--compact {
        padding-top: 0;
    }

    .wc-product-hero .cat-archive-title-area {
        display: none;
    }

    .wc-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wc-products-grid>.wc-product-card::after {
        display: none !important;
    }

    .related-products {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 12px;
        margin-bottom: -12px;
        scrollbar-width: thin;
        scrollbar-color: rgba(28, 31, 42, 0.2) transparent;
    }

    .related-products::-webkit-scrollbar {
        height: 4px;
    }

    .related-products::-webkit-scrollbar-track {
        background: transparent;
    }

    .related-products::-webkit-scrollbar-thumb {
        background: rgba(28, 31, 42, 0.2);
        border-radius: 2px;
    }

    .related-products::-webkit-scrollbar-thumb:hover {
        background: rgba(28, 31, 42, 0.4);
    }

    .related-products__item {
        flex: 0 0 calc(50% - 8px);
        padding: 0 34px;
        min-width: 0;
        user-select: none;
        -webkit-user-select: none;
    }

    .related-products__item:last-child {
        margin-right: 16px;
    }

    .wc-product-card__body {
        padding: 16px;
    }

    .wc-product-hero {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .wc-product-hero>.container {
        padding-inline: 0;
    }

    .wc-product-media {
        width: 100%;
        gap: 19px;
    }

    .wc-product-media__thumbs {
        gap: 14px;
        padding-left: 17px;
    }

    .wc-product-shell--compact {
        gap: 43px;
        flex-direction: column;
    }



    .wc-product-tabs-layout {
        padding-inline: 17px;
    }

    .wc-product-tab-btn {
        font-size: 16px;
    }

    .wc-product-tabs-layout__nav {
        margin-bottom: 55px;
        gap: 25px;
    }

    .wc-product-summary__title {
        font-size: 26px;
    }

    .wc-product-summary__excerpt {
        font-size: 16px;
        padding: 6px;
        margin-top: 13px;
    }

    .wc-product-summary__price {
        font-size: 20px;
    }


    .wc-product-contact-btn {
        font-size: 16px;
        padding: 6px;
        width: 155px;
        height: 44px;
    }

    .related-products__media img {
        max-width: 200px;
        height: 210px;
    }

    .related-products__title {
        font-size: 16px;
    }

    .related-products__price {
        font-size: 14px;
    }

    .wc-size-list__name,
    .wc-size-list__dimensions {
        font-size: 16px;
    }

    .wc-size-list__item img {
        width: 190px;
        height: 100px;
    }

    .wc-catalog-block__name {
        font-size: 26px;
    }

    .wc-catalog-block__image {
        margin-top: 19px;
    }

    .wc-catalog-block__image img {
        padding: 0;
    }

    .wc-catalog-link {
        font-size: 16px;
        margin-top: 17px;
    }

    .wc-product-related {
        padding: 14px 0;
    }

    .wc-product-card img {
        width: 141px;
        height: 141px;
    }

    .wc-archive-hero__title {
        font-size: 20px;
    }

    .cat-archive-title-area svg {
        width: 23px;
    }

    .cat-archive-title-area {
        gap: 10px;
    }

    .catalog-block {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-block: 24px;
    }

    .wc-archive-products {
        padding-bottom: 25px;
    }

    .catalog-block__title {
        font-size: 20px;
        max-width: 324px;
    }

    .catalog-block__content {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        align-content: stretch;
    }

    .catalog-block__descr {
        font-size: 16px;
        max-width: 305px;
        padding-block: 22px;
    }

    .catalog-block__img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .catalog-block__img img {
        width: 148px;
    }
}