/*@Betsyweb*/
/*https://betsyweb.ru*/
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-color: #030303;
    --grey-color: #26272A;
    --light-grey: #969696;
    --white-color: #FFFFFF;
    --red-color: #2563EB;
    --blue-color: #9CABC5;
    --black-color: #000000;
}

:focus, button, button:focus, input, input:focus {
    outline: 0;
}

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

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

.w-100p {
    width: 100%;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.flex-column {
    flex-direction: column;
}

.center {
    margin: 0 auto;
    text-align: center;
}

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

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

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

.align-items-end {
    align-items: flex-end;
}

.align-self-end {
    align-self: flex-end;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex-wrap {
    flex-wrap: wrap;
}

.font, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

body {
    min-height: 100vh;
    font-family: "Inter Tight", sans-serif;
    font-size: 22px;
    font-weight: 500;
    background: var(--dark-color);
    color: var(--white-color);
    line-height: 140%;
    overflow-x: hidden;
}

.wrap {
    overflow: hidden;
}

a {
    color: var(--dark-color);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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

li {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1490px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 25px;
    padding-left: 25px;
    box-sizing: border-box;
}

.header-menu li {
    margin: 0 15px;
    font-size: 18px;
    letter-spacing: 0.03em;
}

.header-logo__img {
    height: 40px;
    width: auto;
}

.footer-logo__img {
    height: 36px;
    width: auto;
}

.btn {
    font-weight: 600;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 420px;
    max-width: 100%;
    height: 67px;
    font-size: 20px;
    background: linear-gradient(92.85deg, #2563EB -3.29%, #1E40AF 51.64%, #0A0E1A 109.84%);
    color: var(--white-color);
    border: unset;
    position: relative;
}

.top-title__btn {
    margin: 14px 0 45px;
    letter-spacing: 0.03em;
}

.transition,
.slider-experts__slide p {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn:after {
    content: '';
    height: 100%;
    width: 0;
    left: 0;
    background: var(--red-color);
    position: absolute;
    -webkit-transition: all 0.2s linear;
    transition: all 0.3s linear;

}

.btn:hover{
    color: var(--white-color);
}
.btn:hover:after {
    width: 100%;
}

.header {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    height: 130px;
    top: 0;
    transition: all 0.5s linear;
    background-color: #000;
    padding-top: 3px;
    border-bottom: 1px solid #313131;
    z-index: 9998;
}

.header--scrolled {
    height: 80px;
    background-color: rgba(0, 0, 0, .95);
}

/* .header:after {
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #d1d8e3 0%, #e0e3e8 70%, rgba(223, 230, 240, 0) 100%);
    transition: all 0.5s linear;
    position: absolute;
    z-index: -1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
} */

.header-btn {
    font-size: 16px;
    height: 58px;
    width: 252px;
    background: #000;
    display: none;
    color: var(--white-color);
}

.header-btn:after {
    background: linear-gradient(to left, var(--black-color), var(--red-color));

}

.header-btn:hover:after {
    width: 50%;
}

.header-menu li a {
    position: relative;
    cursor: pointer;
    color: #fff;
}

.header-menu li a:before {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--white-color);
    transition: all 0.2s linear;
}
.header-menu li:hover a:before {
    width: 100%;
}

.header-mobile {
    width: 32px;
    height: 24px;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.header-mobile span,
.header-mobile:before,
.header-mobile:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: var(--white-color);
    border-radius: 2px;
    transition: all 0.3s linear;
}

.header-mobile span {
    margin: auto 0;
}

.top {
    background: #000;
    padding-top: 224px;
    position: relative;
    overflow: hidden;
}

.top::before {
    content: '';
    position: absolute;
    top: 127px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 700px;
    background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, .12) 0%, rgba(0,0,0,0) 65%);
    pointer-events: none;
}

.top-title h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.01em;
    text-align: center;
}

.top-title h1 span {
    display: block;
    background: linear-gradient(89.49deg, #E7E7E7 -19.45%, #383838 99.56%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.top-title p {
    max-width: 620px;
    text-align: center;
    margin-top: 20px;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--light-grey);
}

.marginLeftRight {
    margin-left: 40px;
    margin-right: 40px;
}


/* ======= FOOTER ======= */

.footer {
    background: var(--black-color);
    margin-top: 160px;
    padding: 42px 0 37px;
    color: var(--white-color);
}

.footer-left p {
    max-width: 406px;
}

.footer-logo {
    margin-bottom: 42px;
}

.footer-left strong {
    margin: 55px 0;
}

.footer-left strong > a {
    margin-right: 38px;
    color: var(--white-color);
    font-weight: 500;
}

.footer-left i, .footer-right i {
    font-size: 15px;
    font-style: normal;
    display: block;
}

.footer-phone a {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-phone a:hover {
    color: var(--red-color);
}

.footer-center {
    flex-direction: column;
    align-items: flex-start;
}

.footer-menu-wrapper ul {
    list-style: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.03em;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer-menu-wrapper ul li {
    margin-bottom: 8px;
}

.footer-menu-wrapper ul a {
    color: var(--white-color);
    margin: 0 10px 0 0;
}

.footer-center i {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: auto;
}

.footer-center i,
.footer-left i > a,
.footer-right i > a {
    color: #707070;
    font-style: normal;
    font-size: 12px;
    font-weight: 300;
}

.footer-right__contact p {
    line-height: 95%;
    max-width: 290px;
}

.footer-right__contact p > b {
    font-size: 13px;
    display: block;
    letter-spacing: 0.03em;
}

.footer-right__contact p > span {
    font-size: 14px;
    display: block;
    margin: 10px 0 17px;
    line-height: 120%;
    max-width: 80%;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--light-grey);
}

.footer_description p {
    font-size: 15px;
    margin-top: 20px;
    line-height: 120%;
}

.footer-legal {
    margin-top: 20px;
}

.footer-legal .legal-block {
    font-size: 11px;
    line-height: 150%;
    color: #707070;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.footer-right i {
    margin-top: auto;
}

.footer-right i a {
    color: #707070;
    margin-right: 15px;
    font-size: 12px;
}

.footer-right i a:hover {
    color: var(--red-color);
}


/* ======= CATALOGUE ======= */

.catalogue {
    margin-top: 80px;
    padding: 85px 0 95px;
    border-radius: 20px;
    background: linear-gradient(180deg, #505050 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(20px);
    position: relative;
}

.catalogue::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(180deg, #16171a 0%, rgba(22, 23, 26, 0) 100%);
    border-radius: 19px;
    pointer-events: none;
}

.catalogue > * {
    position: relative;
    z-index: 1;
}

.catalogue-head {
    margin-bottom: 48px;
}

.catalogue-head h2 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 100%;
}

.catalogue-filters {
    gap: 10px;
}

.filterBtn {
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--light-grey);
    background: transparent;
    border: 1px solid #313131;
    border-radius: 10px;
    padding: 10px 22px;
    cursor: pointer;
}

.filterBtn:hover {
    color: var(--white-color);
    border-color: #555;
}

.filterBtn.is--active {
    background: var(--red-color);
    border-color: var(--red-color);
    color: var(--white-color);
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prodCard {
    border-radius: 20px;
    background:
        linear-gradient(145.4deg, #505050 4.97%, rgba(0, 0, 0, 0) 41.71%),
        linear-gradient(137.44deg, rgba(0, 0, 0, 0) 41.56%, #505050 94.61%);
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
}

.prodCard::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(0, 0, 0, .79);
    border-radius: 19px;
    z-index: 1;
    pointer-events: none;
}

.prodCard > * {
    position: relative;
    z-index: 2;
}

.prodCard-img {
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.prodCard-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prodCard-body {
    padding: 20px 24px 24px;
}

.prodCard-cat {
    font-size: 12px;
    color: var(--red-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 8px;
}

.prodCard-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.prodCard-desc {
    font-size: 13px;
    line-height: 150%;
    color: #5f5f5f;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
    min-height: 60px;
}

.prodCard-price {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--white-color);
}

.prodCard-bottom {
    gap: 10px;
}

.prodCard-add {
    width: auto;
    height: 42px;
    padding: 0 24px;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
}

.qtyBtn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #313131;
    background: transparent;
    color: var(--white-color);
    font-size: 18px;
    cursor: pointer;
    font-family: "Inter Tight", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qtyBtn:hover {
    border-color: var(--red-color);
    color: var(--red-color);
}

.prodCard-qtyWrap {
    gap: 8px;
}

.qtyNum {
    font-size: 16px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}


/* ======= HEADER CART ======= */

.header-cart {
    cursor: pointer;
    position: relative;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.header-cart:hover svg {
    stroke: var(--red-color);
}

.header-cart__count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--red-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


/* ======= CART FLOAT ======= */

.cartFloat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: linear-gradient(92.85deg, #2563EB -3.29%, #1E40AF 51.64%, #0A0E1A 109.84%);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9990;
    box-shadow: 0 4px 20px rgba(37, 99, 235, .35);
}

.cartFloat.is--open {
    display: flex;
}

.cartFloat-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ======= CART SIDEBAR ======= */

.cartOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 9994;
    display: none;
}

.cartOverlay.is--open {
    display: block;
}

.cartSidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100vh;
    background: #111;
    z-index: 9995;
    display: none;
    flex-direction: column;
    border-left: 1px solid #313131;
}

.cartSidebar.is--open {
    display: flex;
}

.cartSidebar-head {
    padding: 25px 25px 20px;
    border-bottom: 1px solid #313131;
}

.cartSidebar-head h3 {
    font-size: 24px;
    font-weight: 700;
}

.cartClose {
    font-size: 28px;
    cursor: pointer;
    color: var(--light-grey);
    line-height: 1;
}

.cartClose:hover {
    color: var(--red-color);
}

.cartSidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.cartEmpty {
    color: var(--light-grey);
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
}

.cartItem {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
    gap: 15px;
}

.cartItem-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cartItem-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 130%;
}

.cartItem-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--red-color);
    margin-bottom: 8px;
}

.cartItem-qty {
    gap: 6px;
}

.cartItem-qty span {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cartItem-remove {
    background: none;
    border: none;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    margin-left: 12px;
    font-family: "Inter Tight", sans-serif;
}

.cartItem-remove:hover {
    color: var(--red-color);
}

.cartSidebar-footer {
    padding: 20px 25px 25px;
    border-top: 1px solid #313131;
}

.cartTotal {
    margin-bottom: 15px;
    font-size: 18px;
}

.cartTotal b {
    font-size: 22px;
    font-weight: 700;
}

.cartCheckoutBtn {
    cursor: pointer;
    height: 54px;
    font-size: 16px;
    border-radius: 12px;
}

.cartCheckoutBtn:disabled {
    opacity: .4;
    cursor: not-allowed;
}


/* ======= CHECKOUT MODAL ======= */

.checkoutWrap {
    position: fixed;
    inset: 0;
    z-index: 9996;
    display: none;
    align-items: center;
    justify-content: center;
}

.checkoutWrap.is--open {
    display: flex;
}

.checkoutOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
}

.checkoutModal {
    position: relative;
    background: #111;
    border: 1px solid #313131;
    border-radius: 20px;
    padding: 40px;
    width: 520px;
    max-height: 90vh;
    overflow-y: auto;
}

.checkoutModal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--light-grey);
}

.checkoutModal-close:hover {
    color: var(--red-color);
}

.checkoutModal h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.checkoutModal-sub {
    color: var(--light-grey);
    font-size: 15px;
    margin-bottom: 25px;
}

.checkoutForm .formLine {
    margin-bottom: 12px;
}

.checkoutForm input,
.checkoutForm textarea {
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #313131;
    background: #1a1a1a;
    color: var(--white-color);
    box-sizing: border-box;
}

.checkoutForm input::placeholder,
.checkoutForm textarea::placeholder {
    color: #989898;
    opacity: 1;
}

.checkoutForm textarea {
    resize: vertical;
    min-height: 70px;
}

.checkoutSummary {
    margin: 20px 0;
    padding: 18px;
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #222;
}

.summaryTitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-grey);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.summaryRow {
    font-size: 14px;
    margin-bottom: 6px;
    color: #ccc;
}

.summaryTotal {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #313131;
    font-size: 16px;
}

.checkoutNote {
    margin-top: 12px;
    font-size: 12px;
    color: #555;
    text-align: center;
}

.checkoutNote a {
    color: var(--light-grey);
}


/* ======= THANKS ======= */

.thanksBlock {
    padding: 40px 20px;
}

.thanksIcon {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: var(--red-color);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thanksBlock h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.thanksBlock p {
    color: var(--light-grey);
    font-size: 16px;
    max-width: 360px;
    margin: 0 auto;
}


/* ======= TESTIMONIALS ======= */

.testimonials {
    margin-top: 80px;
}

.testimonials-head {
    margin-bottom: 48px;
}

.testimonials-head h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.01em;
}

.testimonials-head h2 span {
    color: var(--light-grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tCard {
    border-radius: 20px;
    background:
        linear-gradient(145.4deg, #505050 4.97%, rgba(0, 0, 0, 0) 41.71%),
        linear-gradient(137.44deg, rgba(0, 0, 0, 0) 41.56%, #505050 94.61%);
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
    padding: 32px 30px 28px;
}

.tCard::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(0, 0, 0, .79);
    border-radius: 19px;
    z-index: 1;
    pointer-events: none;
}

.tCard > * {
    position: relative;
    z-index: 2;
}

.tCard-stars {
    color: var(--red-color);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.tCard-text {
    font-size: 15px;
    line-height: 155%;
    letter-spacing: 0.02em;
    color: #ccc;
    margin-bottom: 24px;
}

.tCard-author {
    gap: 14px;
}

.tCard-avatar {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.tCard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tCard-info b {
    font-size: 15px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.tCard-info span {
    font-size: 13px;
    color: var(--light-grey);
    font-weight: 400;
}


/* ======= ABOUT STORE ======= */

.aboutStore {
    margin-top: 130px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white-color);
    color: #26272a;
}

.aboutStore-inner {
    gap: 0;
}

.aboutStore-img {
    width: 45%;
    flex-shrink: 0;
}

.aboutStore-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aboutStore-text {
    padding: 60px 55px;
    max-width: 55%;
}

.aboutStore-text h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    color: #26272a;
}

.aboutStore-text p {
    font-size: 18px;
    line-height: 155%;
    letter-spacing: 0.03em;
    color: #444;
    margin-bottom: 20px;
}

.aboutStore-btn {
    margin-top: 12px;
    width: auto;
    padding: 0 40px;
    height: 54px;
    font-size: 16px;
}


/* ======= FAQ ======= */

.faqSection {
    margin-top: 130px;
}

.faqSection h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.01em;
    margin-bottom: 48px;
}

.faqList {
    max-width: 900px;
}

.faqItem {
    border-bottom: 1px solid #313131;
    cursor: pointer;
}

.faqItem-q {
    padding: 22px 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.faqArrow {
    font-style: normal;
    font-size: 24px;
    color: var(--light-grey);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    flex-shrink: 0;
    margin-left: 20px;
}

.faqItem.is--open .faqArrow {
    transform: rotate(45deg);
    color: var(--red-color);
}

.faqItem-a {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.faqItem.is--open .faqItem-a {
    max-height: 300px;
    padding-bottom: 22px;
}

.faqItem-a p {
    font-size: 16px;
    line-height: 155%;
    color: var(--light-grey);
    letter-spacing: 0.03em;
    max-width: 750px;
}


/* ======= OWNER QUOTE ======= */

.ownerQuote {
    margin-top: 140px;
    margin-bottom: 130px;
}

.ownerQuote-inner {
    gap: 50px;
    align-items: flex-start;
}

.ownerQuote-photo {
    width: 185px;
    height: 185px;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.ownerQuote-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ownerQuote-mark {
    font-size: 32px;
    font-weight: 700;
    color: var(--red-color);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.ownerQuote-text {
    font-size: 24px;
    line-height: 145%;
    letter-spacing: 0.02em;
    font-weight: 400;
    max-width: 850px;
    margin-bottom: 28px;
}

.ownerQuote-author b {
    font-size: 22px;
    display: block;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.ownerQuote-author span {
    font-size: 16px;
    color: var(--light-grey);
    font-weight: 400;
}


/* ======= REPAIR CTA ======= */

.repairCta {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0500 0%, #0a0a0a 50%, #0d0201 100%);
    min-height: 420px;
}

.repairCta .container {
    gap: 0;
    justify-content: space-between;
}

.repairCta-text {
    max-width: 520px;
    padding: 60px 0;
}

.repairCta-text h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 105%;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.repairCta-text p {
    font-size: 18px;
    line-height: 155%;
    color: var(--light-grey);
    letter-spacing: 0.03em;
    margin-bottom: 28px;
}

.repairCta-btn {
    width: auto;
    padding: 0 40px;
    height: 54px;
    font-size: 16px;
}

.repairCta-img {
    width: 420px;
    flex-shrink: 0;
    align-self: flex-end;
}

.repairCta-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
}


/* ======= HIRING ======= */

.hiringBlock {
    margin-top: 60px;
    padding: 50px 0;
    border-top: 1px solid #313131;
    border-bottom: 1px solid #313131;
}

.hiringBlock-inner {
    gap: 40px;
}

.hiringBlock-text h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.hiringBlock-text p {
    font-size: 17px;
    line-height: 155%;
    color: var(--light-grey);
    letter-spacing: 0.03em;
    max-width: 700px;
}

.hiringBlock-btn {
    width: auto;
    padding: 0 40px;
    height: 54px;
    font-size: 16px;
    flex-shrink: 0;
}


/* ======= RESPONSIVE ======= */

@media screen and (max-width: 1400px) {
    .footer {
        margin-top: 150px;
    }
    .top-title h1 {
        font-size: 60px;
    }
    .catalogue-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1199px) {
    .footer {
        margin-top: 120px;
    }
    .header {
        height: 100px;
    }
    .top {
        padding-top: 180px;
    }
    .top-title h1 {
        font-size: 52px;
    }
    .btn {
        width: 340px;
        height: 58px;
        font-size: 18px;
    }
    .catalogue-head h2 {
        font-size: 40px;
    }
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-head h2 {
        font-size: 40px;
    }
    .aboutStore-text h2,
    .faqSection h2,
    .repairCta-text h2 {
        font-size: 40px;
    }
    .ownerQuote-text {
        font-size: 20px;
    }
    .repairCta-img {
        width: 320px;
    }
}

@media screen and (max-width: 991px) {
    .footer .container {
        position: relative;
        flex-wrap: wrap;
    }
    .footer-left {
        order: 2;
    }
    .footer-center {
        margin-top: unset;
        order: 1;
        width: 100%;
    }
    .footer-right {
        order: 3;
    }
    .footer {
        margin-top: 80px;
    }
    .header-menu {
        display: none !important;
    }
    .header-mobile {
        display: flex !important;
    }
    .top-title h1 {
        font-size: 44px;
    }
    .top-title p {
        font-size: 18px;
    }
    .catalogue {
        margin-top: 60px;
        padding: 50px 0 60px;
    }
    .catalogue-head {
        flex-direction: column;
        gap: 20px;
    }
    .catalogue-head h2 {
        font-size: 36px;
    }
    .catalogue-filters {
        flex-wrap: wrap;
    }
    .cartSidebar {
        width: 340px;
    }
    .checkoutModal {
        width: 90vw;
        padding: 30px 25px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .testimonials-head h2 {
        font-size: 36px;
    }
    .aboutStore-inner {
        flex-direction: column;
    }
    .aboutStore-img {
        width: 100%;
        height: 300px;
    }
    .aboutStore-text {
        max-width: 100%;
        padding: 40px 30px;
    }
    .aboutStore-text h2 {
        font-size: 36px;
    }
    .faqSection h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .faqItem-q {
        font-size: 17px;
    }
    .ownerQuote {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .ownerQuote-inner {
        flex-direction: column;
        gap: 30px;
    }
    .ownerQuote-photo {
        width: 120px;
        height: 120px;
    }
    .repairCta .container {
        flex-direction: column;
    }
    .repairCta-text {
        max-width: 100%;
    }
    .repairCta-text h2 {
        font-size: 36px;
    }
    .repairCta-img {
        width: 100%;
        max-width: 400px;
        align-self: center;
    }
    .hiringBlock-inner {
        flex-direction: column;
        gap: 24px;
    }
    .hiringBlock-text h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        margin-top: 60px;
    }
    .footer .container {
        flex-direction: column;
    }
    .footer-right {
        display: none;
    }
    .top {
        padding-top: 150px;
    }
    .top-title h1 {
        font-size: 36px;
    }
    .btn {
        width: 100%;
        max-width: 340px;
        height: 54px;
        font-size: 16px;
    }
    .header {
        height: 70px;
    }
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
    .marginLeftRight {
        margin-left: 15px;
        margin-right: 15px;
    }
    .footer-logo {
        margin-bottom: 30px;
    }
    .footer-left p {
        max-width: 290px;
    }
    .footer-center {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-menu-wrapper ul {
        font-size: 12px;
    }
    .catalogue-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .catalogue-head h2 {
        font-size: 30px;
    }
    .cartSidebar {
        width: 100%;
    }
    .cartFloat {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .prodCard-img {
        padding-bottom: 100%;
    }
    .prodCard-desc {
        min-height: unset;
    }
    .testimonials {
        margin-top: 50px;
    }
    .testimonials-head h2 {
        font-size: 28px;
    }
    .tCard {
        padding: 24px 22px 22px;
    }
    .aboutStore {
        margin-top: 60px;
    }
    .aboutStore-img {
        height: 220px;
    }
    .aboutStore-text {
        padding: 28px 20px;
    }
    .aboutStore-text h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }
    .aboutStore-text p {
        font-size: 16px;
    }
    .faqSection {
        margin-top: 60px;
    }
    .faqSection h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .faqItem-q {
        font-size: 16px;
        padding: 18px 0;
    }
    .faqItem-a p {
        font-size: 14px;
    }
    .ownerQuote {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .ownerQuote-text {
        font-size: 18px;
    }
    .ownerQuote-author b {
        font-size: 18px;
    }
    .repairCta-text h2 {
        font-size: 28px;
    }
    .repairCta-text p {
        font-size: 16px;
    }
    .repairCta-text {
        padding: 30px 0;
    }
    .repairCta-img {
        max-width: 280px;
    }
    .hiringBlock {
        margin-top: 40px;
        padding: 35px 0;
    }
    .hiringBlock-text h2 {
        font-size: 26px;
    }
    .hiringBlock-text p {
        font-size: 15px;
    }
}
