/*
Responsive scale policy
-----------------------
Desktop / standard monitor: 769px and wider (base rules)
Mobile: 768px and narrower (single override block)
There are intentionally no separate tablet or small-phone breakpoints.
*/

:root {
    --navy-950: #00142b;
    --navy-900: #031d3a;
    --navy-850: #062746;
    --navy-800: #0a3158;
    --orange: #f04b0d;
    --orange-dark: #d93e00;
    --ink: #071936;
    --muted: #5d6878;
    --line: #dce3ea;
    --surface: #ffffff;
    --page: #f4f7fa;
    --page-width: 1380px;
    --header-height: 86px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 122px;
}

body {
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at 92% 8%, rgba(7, 73, 122, 0.07), transparent 25%),
        var(--page);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body::before {
    height: 30px;
    padding: 0 max(24px, calc((100% - var(--page-width)) / 2));
    display: flex;
    align-items: center;
    color: #ffffff;
    background: linear-gradient(90deg, #001b39, #00132a);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1px;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

.utility-bar {
    padding: 0 max(24px, calc((100% - var(--page-width)) / 2));
    background: linear-gradient(90deg, #001b39, #00132a);
    color: #fff;
    font-size: 12px;
}

.utility-bar__inner {
    width: 100%;
    min-height: 30px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.utility-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.utility-links a {
    text-decoration: none;
    padding: 0 13px;
    border-right: 1px solid rgba(255, 255, 255, .55);
}

.utility-links a:last-child {
    padding-right: 0;
    border-right: 0;
}

.utility-links a:hover {
    color: #ffb292;
}

/* =========================================================
   Header
   ========================================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    padding: 0 max(24px, calc((100% - var(--page-width)) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e3e8ee;
    box-shadow: 0 4px 16px rgba(0, 20, 48, 0.08);
    backdrop-filter: blur(10px);
}

.logo {
    min-width: 315px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #08183e;
    text-decoration: none;
}
.brand__name {
    color: #08183e;
    font-size: 25px;
    font-weight: 800;
    line-height: .92;
    letter-spacing: .4px;
}
.logo-icon {
    width: 112px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: auto;
}

header > nav {
    margin-left: auto;
}

header > nav > ul {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

header > nav > ul > li {
    position: relative;
}

header > nav > ul > li > a {
    position: relative;
    min-height: var(--header-height);
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

header > nav > ul > li > a:hover,
header > nav > ul > li.dropdown.active > a {
    color: var(--orange);
}

header > nav > ul > li:first-child > a::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    height: 3px;
    background: var(--orange);
}

header > nav > ul > li:last-child > a {
    min-height: 42px;
    margin-left: 8px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(180deg, #f65b11, #e74500);
    border-radius: 4px;
    box-shadow: 0 5px 12px rgba(228, 68, 0, 0.2);
}

header > nav > ul > li:last-child > a:hover {
    color: #ffffff;
    background: var(--orange-dark);
}

.dropdown-toggle::after {
    content: "▾";
    margin-left: 7px;
    font-size: 10px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    width: 245px;
    padding: 9px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    background: #ffffff;
    border: 1px solid #e4e9ef;
    border-radius: 6px;
    box-shadow: 0 18px 38px rgba(0, 20, 48, 0.18);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--ink);
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--orange);
    background: #f2f5f8;
}

/* =========================================================
   Product sidebar
   ========================================================= */
.product-sidebar {
    position: fixed;
    z-index: 50;
    top: 136px;
    left: max(18px, calc((100% - 1540px) / 2));
    width: 190px;
    max-height: calc(100vh - 156px);
    overflow-y: auto;
    padding: 14px;
    color: #ffffff;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025)),
        linear-gradient(180deg, #082c51, #00162f);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    box-shadow: 0 16px 34px rgba(0, 20, 48, 0.2);
}

.product-sidebar::-webkit-scrollbar {
    width: 6px;
}

.product-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 10px;
}

.product-sidebar nav ul {
    display: grid;
    gap: 3px;
    list-style: none;
}

.product-sidebar li:first-child {
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.product-sidebar li:first-child a {
    display: flex;
    justify-content: center;
    padding: 3px;
}

.product-sidebar li:first-child img {
    width: 58px;
    height: 42px;
    object-fit: contain;
}

.product-sidebar a {
    position: relative;
    display: block;
    padding: 10px 12px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}

.product-sidebar li:not(:first-child) a::after {
    content: "›";
    position: absolute;
    right: 11px;
    color: var(--orange);
    font-size: 20px;
    line-height: 1;
}

.product-sidebar a:hover,
.product-sidebar a:focus,
.product-sidebar a.active {
    padding-left: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.product-sidebar a.active {
    box-shadow: inset 3px 0 0 var(--orange);
}

/* =========================================================
   Catalog
   ========================================================= */
.catalog {
    width: min(1320px, calc(100% - 250px));
    min-height: 70vh;
    margin: 0 auto 0 220px;
    padding: 42px 30px 70px;
}

.catalog > h1 {
    position: relative;
    margin-bottom: 28px;
    color: #071a48;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.4px;
    text-align: center;
    text-transform: uppercase;
}

.catalog > h1::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin: 12px auto 0;
    background: var(--orange);
}

.products-grid {
    display: grid;
    gap: 28px;
}

.product-card {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(330px, 42%) minmax(0, 58%);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 7px;
    box-shadow: 0 7px 24px rgba(1, 22, 52, 0.08);
    scroll-margin-top: 126px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff8b5c 45%, transparent 85%);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(1, 22, 52, 0.13);
}

.product-image {
    position: relative;
    min-width: 0;
    min-height: 420px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%, rgba(54, 128, 181, 0.22), transparent 31%),
        linear-gradient(130deg, #052847, #00152e 68%);
    border-right: 1px solid #dfe5eb;
}

.product-image::before,
.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-image::before {
    opacity: 0.25;
    background-image:
        linear-gradient(90deg, transparent 49.5%, rgba(126, 191, 232, 0.25) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(126, 191, 232, 0.19) 50%, transparent 50.5%);
    background-size: 55px 55px;
    transform: perspective(350px) rotateX(62deg) scale(1.6) translateY(36%);
    transform-origin: center bottom;
}

.product-image::after {
    background: linear-gradient(90deg, rgba(0, 12, 31, 0.1), transparent 45%, rgba(0, 11, 26, 0.1));
}

.carousel-container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
    transition: width 0.25s ease;
}

.carousel-container.expanded {
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.carousel-track::-webkit-scrollbar {
    height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
    background: transparent;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.38);
    border-radius: 10px;
}

.carousel-item {
    flex: 0 0 100%;
    min-width: 0;
    min-height: 325px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.carousel-item.original {
    overflow: auto;
}

.carousel-item img {
    width: 100%;
    height: 285px;
    max-width: 100%;
    max-height: 285px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 15px 14px rgba(0, 0, 0, 0.18));
}

.carousel-button {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    color: #ffffff;
    background: var(--orange);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-button:hover {
    background: var(--orange-dark);
    transform: translateY(-50%) scale(1.08);
}

.carousel-button.prev {
    left: -15px;
}

.carousel-button.next {
    right: -15px;
}

.product-content {
    position: relative;
    min-width: 0;
    padding: 30px 32px 76px;
}

.product-title {
    margin: 0 0 9px;
    padding: 0 0 10px;
    color: var(--orange);
    border-bottom: 2px solid #e7ebef;
    font-size: 29px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.3px;
}

.product-subtitle {
    margin: 0 0 20px;
    color: #34445a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.product-section {
    margin-bottom: 9px;
    overflow: hidden;
    border: 1px solid #dfe5eb;
    border-radius: 4px;
    background: #ffffff;
}

.product-section h3 {
    position: relative;
    min-height: 42px;
    margin: 0;
    padding: 0 48px 0 16px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background: linear-gradient(180deg, #0a3158, #03203d);
    border-left: 4px solid var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.product-section h3::after {
    content: "+";
    position: absolute;
    right: 16px;
    color: var(--orange);
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
}

.product-section h3:hover {
    background: #0b3a68;
}

.product-section.active h3::after {
    content: "−";
}

.product-section-description {
    max-height: 0;
    margin: 0;
    padding: 0 17px;
    overflow: hidden;
    opacity: 0;
    color: #4d5b6d;
    background: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.58;
    white-space: pre-line;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
}

.product-section.active .product-section-description {
    max-height: 1200px;
    padding: 15px 17px 17px;
    opacity: 1;
}

.tech-library-btn {
    position: absolute;
    right: 176px;
    bottom: 24px;
    min-width: 132px;
    min-height: 40px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #0b3a68, #08357c);
    border: 0;
    border-radius: 3px;
    box-shadow: 0 6px 14px rgba(7, 69, 124, 0.22);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tech-library-btn::after {
    font-size: 18px;
    line-height: 0;
}

.tech-library-btn:hover {
    transform: translateY(-2px);
    background: #063866;
    box-shadow: 0 10px 22px rgba(7, 69, 124, 0.3);
}

.tech-library-btn:active {
    transform: translateY(0);
}

.order-btn {
    position: absolute;
    right: 32px;
    bottom: 24px;
    min-width: 132px;
    min-height: 40px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(180deg, #f65b11, #e74500);
    border: 0;
    border-radius: 3px;
    box-shadow: 0 6px 14px rgba(228, 68, 0, 0.2);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.order-btn::after {
    content: "  ›";
    font-size: 18px;
    line-height: 0;
}

.order-btn:hover {
    transform: translateY(-2px);
    background: var(--orange-dark);
    box-shadow: 0 10px 22px rgba(228, 68, 0, 0.28);
}

.order-btn:active {
    transform: translateY(0);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
    color: #ffffff;
    background:
        radial-gradient(circle at 16% 25%, rgba(16, 87, 143, 0.25), transparent 26%),
        linear-gradient(110deg, #00172f, #062b4e 50%, #00142b);
    border-top: 4px solid var(--orange);
}

.footer-content {
    width: min(var(--page-width), calc(100% - 72px));
    margin: 0 auto;
    padding: 42px 0 34px;
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 34px;
}

.footer-section {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-logo-section {
    padding-right: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 88px;
    height: 46px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.footer-section h4 {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-section h4::after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 7px;
    background: var(--orange);
}

.footer-section ul {
    display: grid;
    gap: 8px;
    list-style: none;
}

.footer-section a {
    color: #c7d1dd;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.35;
}

.footer-section a:hover {
    color: #ff9d74;
}

.footer-logo-section > a {
    color: #ffffff;
    font-weight: 700;
}

.footer-bottom {
    width: min(var(--page-width), calc(100% - 72px));
    min-height: 55px;
    margin: 0 auto;
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copyright,
.footer-description {
    margin: 0;
    color: #c4cfdb;
    font-size: 12px;
}

.footer-description {
    max-width: 710px;
    text-align: right;
}

.legacy-models{
    display:block;
    margin:40px auto;
    padding:14px 34px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    background:linear-gradient(180deg,#0a3158,#03203d);
    color:#fff;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:.25s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.legacy-models:hover{
    background:linear-gradient(180deg,#f65b11,#e74500);
    transform:translateY(-2px);
}

.legacy-models:active{
    transform:translateY(0);
}
/* =========================================================
   Responsive
   ========================================================= */

/* =========================================================
   Unified mobile scale
   ========================================================= */
@media (max-width: 768px) {
header {
        padding-inline: 24px;
    }

    .logo {
        min-width: 270px;
    }

    .logo::after {
        font-size: 20px;
    }

    .logo-icon {
        width: 88px;
    }

    header > nav > ul > li > a {
        padding-inline: 13px;
        font-size: 12px;
    }

    .catalog {
        width: calc(100% - 230px);
        margin-left: 210px;
        padding-inline: 20px;
    }

    .product-card {
        grid-template-columns: minmax(310px, 40%) minmax(0, 60%);
    }

    .product-image {
        padding-inline: 20px;
    }

    .product-content {
        padding-inline: 25px;
    }

    .order-btn {
        right: 25px;
    }

    .tech-library-btn {
        right: 169px;
    }

body::before {
        padding-inline: 22px;
    }

    header {
        position: relative;
        min-height: 78px;
        flex-wrap: wrap;
        gap: 8px 20px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .logo {
        min-width: 250px;
    }

    header > nav > ul > li > a {
        min-height: 52px;
    }

    header > nav > ul > li:first-child > a::before {
        bottom: 3px;
    }

    .product-sidebar {
        position: sticky;
        top: 0;
        left: auto;
        z-index: 40;
        width: 100%;
        max-height: none;
        padding: 7px 18px;
        overflow-x: auto;
        border-width: 0;
        border-radius: 0;
        box-shadow: 0 5px 14px rgba(0, 20, 48, 0.18);
    }

    .product-sidebar nav ul {
        width: max-content;
        min-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }

    .product-sidebar li:first-child {
        display: none;
    }

    .product-sidebar a {
        padding: 8px 13px;
        white-space: nowrap;
    }

    .product-sidebar li:not(:first-child) a::after {
        display: none;
    }

    .product-sidebar a:hover,
    .product-sidebar a:focus,
    .product-sidebar a.active {
        padding-left: 13px;
    }

    .catalog {
        width: 100%;
        margin: 0;
        padding: 36px 24px 60px;
    }

    .product-card {
        grid-template-columns: 1fr;
    }

    .product-image {
        min-height: 360px;
        border-right: 0;
        border-bottom: 1px solid #dfe5eb;
    }

    .carousel-item {
        min-height: 300px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-logo-section {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .footer-social {
        justify-self: end;
    }

body::before {
        justify-content: center;
        font-size: 11px;
    }

    header {
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
    }

    .logo {
        min-width: 0;
        width: 100%;
        justify-content: center;
    }

    .logo-icon {
        width: 72px;
        height: 48px;
    }

    .logo::after {
        font-size: 18px;
    }

    header > nav {
        width: 100%;
        margin: 0;
    }

    header > nav > ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 3px;
    }

    header > nav > ul > li > a,
    header > nav > ul > li:last-child > a {
        min-height: 38px;
        margin: 0;
        padding: 0 12px;
        font-size: 11px;
    }

    header > nav > ul > li:first-child > a::before {
        display: none;
    }

    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 12px;
        right: 12px;
        width: auto;
        transform: translateY(8px);
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        transform: translateY(0);
    }

    .product-sidebar {
        padding-inline: 10px;
    }

    .product-sidebar nav ul {
        justify-content: flex-start;
    }

    .catalog {
        padding: 30px 14px 48px;
    }

    .catalog > h1 {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .products-grid {
        gap: 20px;
    }

    .product-image {
        min-height: 285px;
        padding: 20px 16px;
    }

    .carousel-item {
        min-height: 235px;
        padding: 15px;
    }

    .carousel-item img {
        height: 210px;
        max-height: 210px;
    }

    .carousel-button {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .carousel-button.prev {
        left: -8px;
    }

    .carousel-button.next {
        right: -8px;
    }

    .product-content {
        padding: 24px 18px 74px;
    }

    .product-title {
        font-size: 25px;
    }

    .product-subtitle {
        font-size: 14px;
    }

    .product-section h3 {
        min-height: 40px;
        font-size: 12px;
    }

    .product-section-description {
        font-size: 13px;
    }

    .order-btn {
        right: 18px;
        bottom: 20px;
    }

    .footer-content {
        width: calc(100% - 36px);
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .footer-logo-section {
        grid-template-columns: 1fr;
    }

    .footer-social {
        justify-self: start;
    }

    .footer-bottom {
        width: calc(100% - 36px);
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer-description {
        text-align: left;
    }

.logo::after {
        font-size: 16px;
    }

    .logo-icon {
        width: 60px;
    }

    header > nav > ul > li > a,
    header > nav > ul > li:last-child > a {
        padding-inline: 9px;
    }

    .product-image {
        min-height: 235px;
    }

    .carousel-item {
        min-height: 190px;
    }

    .carousel-item img {
        height: 170px;
        max-height: 170px;
    }

    .carousel-button {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}