body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
button,
input,
select,
textarea {
    font-family: "Montserrat", sans-serif;
}
a {
    color: inherit;
}
.container {
    width: 82.5rem;
}
section {
    margin-bottom: 3.5rem;
}
.top-lines {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    min-height: 100vh;
    top: 5.3rem;
    pointer-events: none;
    z-index: 1;
}
.line-cols {
    height: 100%;
    border-right: 1px solid #bcbcbc30;
}
.line-cols:nth-child(1) {
    border-left: 1px solid #bcbcbc30;
}

/* Buttons */
.btn {
    display: inline-flex;
    padding: 0.875rem 1.5rem;
    justify-content: center;
    align-items: center;
    border-radius: 6.25rem;
    transition: all 0.3s ease-in;
    gap: 0.625rem;
}
.btn.white {
    background: #fff;
    color: #000000;
}
.btn.white:hover {
    background: #2c2c2c;
    color: #fff;
}
.btn.black {
    background: #2c2c2c;
    color: #fff;
}
.btn.black:hover {
    background: #6d6d6d;
    color: #fff;
}
.btn.green {
    background: #354b39;
    color: #fff;
}
.btn.green:hover {
    background: #5f7c64;
    color: #fff;
}
.btn.stroke {
    color: #fff;
    border: 1px solid #fff;
    background: none;
}
.btn.stroke:hover {
    background: #fff;
    color: #000000;
}
.btn.stroke2 {
    color: #000;
    border: 1px solid #000;
    background: none;
}
.btn.stroke2:hover {
    background: #2c2c2c;
    color: #ffffff;
}

/* Header */
.site-header {
    border-bottom: 1px solid #bcbcbc30;
    z-index: 100;
    transition: all 0.3s ease;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 0;
    justify-content: space-between;
}
.logo img {
    height: 2.5rem;
}
.head-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.head-nav {
    display: flex;
    align-items: center;
    gap: 1.85rem;
    justify-content: center;
}
.head-nav a {
    transition: color 0.2s ease;
    color: #fff;
}
.head-nav a:hover, .head-nav a.active {
    color: #d3a525;
}
.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cart-btn img {
    width: 1.875rem;
    height: 1.875rem;
}
.cart-badge {
    position: absolute;
    top: 0.1rem;
    right: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #e8291c;
    display: none;
}
.cart-badge.active {
    display: block;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 0.46rem;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
}
.burger span {
    display: block;
    width: 1.5rem;
    height: 1.65px;
    background: #fff;
    transition: all 0.25s ease;
}

/* Mob menu */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
}
.mob-menu.open {
    visibility: visible;
    pointer-events: all;
}
.mob-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mob-menu.open .mob-menu-overlay {
    opacity: 1;
}
.mob-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 100%;
    background: #fff;
    color: #000000;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.15rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mob-menu.open .mob-menu-inner {
    transform: translateX(0);
}
.mob-menu-head {
    display: flex;
    justify-content: flex-end;
}
.mob-close {
    background: none;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mob-close img {
    width: 100%;
    height: 100%;
}
.mob-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.35rem;
}
.mob-nav a {
    padding: 0.625rem 0.9375rem;
}
.mob-nav a.active {
    border-radius: 0.625rem;
    background: #f1f2f4;
}
.mob-nav a:last-child {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2c2c2c3f;
}
.head-bot {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.head-info {
    color: #2c2c2c;
}
.head-social {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.head-social a {
    font-size: 2.5rem;
    color: #354b39;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    inset: 0;
    z-index: 250;
    visibility: hidden;
    pointer-events: none;
}
.cart-sidebar.open {
    visibility: visible;
    pointer-events: all;
}
.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cart-sidebar.open .cart-overlay {
    opacity: 1;
}
.cart-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 37rem;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: 2.5rem 2rem;
}
.cart-sidebar.open .cart-inner {
    transform: translateX(0);
}
.cart-filled,
.cart-empty {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cart-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.cart-close {
    cursor: pointer;
    height: 1.25rem;
    width: 1.25rem;
}
.cart-title {
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cart-item {
    display: flex;
    gap: 1rem;
    background: #f1f2f4;
    border-radius: 1.5rem;
    padding: 1rem;
    color: #000000;
    align-items: flex-start;
}
.cart-item-img {
    width: 11.625rem;
    min-height: 7rem;
    height: 100%;
    border-radius: 0.65rem;
    overflow: hidden;
    flex-shrink: 0;
}
#post_summary{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
#cart-inner .cart-item-img{
    max-height: 7rem;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cart-item-name {
    color: #2c2c2c;
}
.cart-item-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
}
.cart-item-price {
    font-size: 1.25rem;
    font-weight: 600;
}
.cart-qty {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 6.25rem;
    padding: 0.375rem 0.9375rem;
    color: black;
}
.cart-qty-minus,
.cart-qty-plus {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}
.cart-qty-val {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}
.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.cart-item-remove img {
    width: 1.6rem;
    height: 1.6rem;
}

.cart-summary {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}
.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
}
.cart-summary-total {
    font-weight: 600;
}
.cart-summary-row--main {
    padding-top: 0.85rem;
    border-top: 1px solid #2c2c2c30;
    font-size: 1.5rem;
    font-weight: 600;
}

.cart-items {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cart-items::-webkit-scrollbar {
    display: none;
}

/* Cart empty state */
.cart-empty-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.cart-empty-title {
    font-size: 1.5rem;
    font-weight: 600;
}
.cart-empty-img {
    width: 7.5rem;
    height: 7.5rem;
}

/* Hero */
.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 90.5vh;
    overflow: hidden;
}
.hero-section .container {
    position: relative;
    height: 100%;
}
.hero-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    height: 100%;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    color: white;
    align-items: center;
    text-align: center;
    width: 100%;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
}
.hero-desc {
    font-size: 1.25rem;
    max-width: 42rem;
}
.hero-marquee {
    background: #2c2c2c;
    overflow: hidden;
    padding: 1.5rem 0;
    color: #fff;
}
.hero-marquee-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    width: max-content;
    animation: marquee 25s linear infinite;
    font-size: 1.2rem;
    font-weight: 600;
}
.hero-marquee-track .dot {
    color: #fff;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Delivery section */
.delivery-calc {
    margin-top: 3.5rem;
}
.delivery-card {
    background: #f1f2f4;
    border-radius: 1.25rem;
    padding: 1.5rem 1.85rem;
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}
.delivery-line {
    width: 1px;
    background: #2c2c2c25;
}
.delivery-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.delivery-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}
.delivery-desc {
    color: #2c2c2c;
}
.delivery-row {
    display: flex;
    align-items: flex-end;
    gap: 0.85rem;
    flex-wrap: wrap;
}
.delivery-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.delivery-label {
    font-size: 0.9rem;
    opacity: 0.7;
}
.delivery-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    color: #2c2c2c;
    background: white;
    border-radius: 10rem;

}
.delivery-arrow-line {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.25rem;
}
.delivery-arrow-line img {
    width: 2.625rem;
}

/* Dropdown */
.delivery-to-wrap {
    position: relative;
}
.delivery-to-city {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    min-width: 9.5rem;
    justify-content: space-between;
}
.d-chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #2c2c2c;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.delivery-to-wrap.open .d-chevron {
    transform: rotate(180deg);
}
.delivery-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
    padding: 1.25rem 1rem 1.25rem 1.25rem;
    z-index: 50;
    display: none;
    width: 20.8rem;
    /* overflow-y: auto;
    scrollbar-width: none; */
}
.delivery-dropdown::-webkit-scrollbar {
    display: none;
}
.delivery-to-wrap.open .delivery-dropdown {
    display: block;
}
.delivery-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}
.delivery-option input[type="radio"] {
    accent-color: #2c2c2c;
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
}
.delivery-option.active {
    font-weight: 600;
}
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-height: 12rem;
    overflow-y: auto;
}

/* Right result panel */
.delivery-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
}
.delivery-res-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.delivery-res-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.delivery-res-row {
    display: flex;
    justify-content: space-between;
    color: #2c2c2c;
}
.delivery-res-row span:last-child {
    font-weight: 600;
}
.delivery-res-total {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    padding-top: 0.85rem;
    border-top: 1px solid #d6d6d6;
}
.delivery-res-total strong {
    font-weight: 400;
}

/* About section */
.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}
.about-top-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}
.about-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}
.about-top-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1.25rem;
}
.about-text {
    color: #2c2c2c;
}
.about-text strong {
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #bcbcbc;
}
.about-stat {
    padding-left: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-right: 1px solid #d6d6d6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-stat:first-child {
    padding-left: 0;
}
.about-stat:last-child {
    border-right: none;
    padding-left: 2rem;
    padding-right: 0;
}
.about-stat:nth-child(2) {
    padding-left: 2rem;
}
.about-stat-num {
    font-size: 4rem;
    line-height: 1;
    color: #2c2c2c;
}
.about-stat-desc {
    color: #2c2c2c;
    letter-spacing: -0.03rem;
}

/* Why section */
.why .section-title {
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1rem;
}
.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}
.why-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.why-bd {
    display: flex;
    gap: 0.65rem;
}
.why-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.why-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
}
.why-card-body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.5rem;
}
.why-card-body.second {
    margin-top: unset;
}
.why-card.white {
    color: #000000;
}
.why-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: #fff;
    backdrop-filter: blur(2.549999952316284px);
    padding: 0.3125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
    flex-shrink: 0;
}
.why-card-icon img {
    width: 1.5625rem;
    height: 1.5625rem;
}
.why-card-icon--dark {
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
}
.why-card-icon--dark img {
    filter: brightness(0);
}
.why-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.why-card-desc {
    opacity: 0.7;
}
.why-card-desc--dark {
    color: #666;
}
.why-card-btns {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.875rem;
    flex-wrap: wrap;
}

/* Catalog section */
.catalog-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.catalog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.catalog-arrows {
    display: flex;
    gap: 0.5rem;
}
.catalog-arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #2c2c2c;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.catalog-arrow:hover {
    background: #2c2c2c;
    color: #fff;
}
.catalog-slider .slick-list {
    margin: 0 -0.5rem;
    display: flex;
}
.catalog-slider .slick-track{
    display: flex;
}
.catalog-slider .slick-slide {
    padding: 0 0.5rem;
}
.catalog-slider .slick-slide > div{
    height: 100%;
}
.catalog-slider .slick-slide .catalog-card{
    height: 100%;
}
.catalog-card {
    background: #f1f2f4;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    outline: none;
    padding: 1rem;
}
.catalog-card-img {
    border-radius: 1.25rem;
    overflow: hidden;
    height: 17rem;
    width: 100%;
    margin-bottom: 1rem;
}
.catalog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalog-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.catalog-card-name {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c2c2c;
}
.catalog-card-specs {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: #2c2c2c;
    opacity: 0.65;
}
.catalog-card-price {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: auto;
    margin: 0.5rem 0;
}
.catalog-more-btn {
    width: 26.625rem;
    margin: 0 auto;
}

/* Projects section */
.projects-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.projects-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.projects-slider .slick-list {
    margin: 0 -0.5rem;
}
.projects-slider .slick-slide {
    padding: 0 0.5rem;
}
.project-card {
    display: flex !important;
    flex-direction: row;
    background: #f1f2f4;
    border-radius: 1.25rem;
    overflow: hidden;
    outline: none;
    min-height: 15rem;
    padding: 1rem;
}
.project-card:hover .project-card-img img{
    transform: scale(1.03);
}
.pb3{
    padding-bottom: 3rem;
}
.project-card:hover .btn{
    background: #6d6d6d;
    color: #fff;
}
.project-card-img {
    flex: 0 0 45%;
    border-radius: 0.625rem;
    overflow: hidden;
    margin-right: 1.15rem;
}
.slick-arrow.slick-disabled{
    opacity: 0.3;
    pointer-events: none;
}
.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.35s;
}
.project-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
}
.project-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.35rem;
}
.project-card-desc {
    color: #2c2c2c;
    opacity: 0.65;
}
.project-card-btn {
    align-self: flex-start;
    margin-top: auto;
    width: 10rem;
}
.projects-more-btn {
    width: 26.625rem;
    margin: 0 auto;
}

/* Reviews section */
.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0;
    margin-bottom: 3.5rem;
}
.reviews-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.reviews-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000e2 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}
.reviews-section .container {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
}
.reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.reviews-link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}
.reviews-link:hover {
    opacity: 0.7;
}

/* Marquee rows */
.reviews-marquee-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.reviews-row {
    overflow: hidden;
}
.reviews-marquee-track {
    display: flex;
    gap: 5rem;
    width: max-content;
    animation: reviewsLeft 35s linear infinite;
}
.reviews-marquee-track--rev {
    animation: reviewsRight 35s linear infinite;
    transform: translateX(-50%);
}
@keyframes reviewsLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes reviewsRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Pause on hover */
.reviews-row:hover .reviews-marquee-track {
    /* animation-play-state: paused; */
}
.review-card-wrap {
    position: relative;
    padding-top: 2rem;
    flex-shrink: 0;
    width: 28rem;
}
.review-quote {
    position: absolute;
    top: 0;
    right: 1rem;
    width: 3.557rem;
    height: 3.625rem;
    z-index: 2;
}
.review-quote img {
    width: 100%;
    height: 100%;
}

/* Card */
.review-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.375rem 4.1875rem 1.375rem 5rem;
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    position: relative;
}
.review-avatar {
    width: 7.15rem;
    height: 7.15rem;
    border: 5px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    position: absolute;
    left: -3rem;
    background: #e8e8e8;
}
.review-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
    align-items: flex-end;
}
.review-text {
    color: #2c2c2c;
    font-size: 0.9rem;
}
.review-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.review-name {
    font-size: 0.9rem;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
}
.review-date {
    font-size: 0.9rem;
    color: #2c2c2c;
    opacity: 0.65;
}

/* FAQ section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: #f1f2f4;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.55s ease-in;
}
.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    user-select: none;
}
.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
}
.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
}
.faq-body {
    display: none;
    padding: 0 1.75rem 1.5rem;
    margin-top: -0.5rem;
}
.faq-answer {
    color: #2c2c2c;
    opacity: 0.7;
}

.faq-item.active .faq-toggle svg path {
    d: path("M1 7L7 1L13 7");
}

/* Partners section */
.partners {
    overflow: hidden;
}
.partners-track-wrap {
    overflow: hidden;
}
.partners-track {
    visibility: hidden;
}
.partners-track.slick-initialized {
    visibility: visible;
}
.partners-track .slick-list {
    overflow: hidden;
}
.partners-track .slick-track {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.partners-track .slick-slide {
    width: auto;
    margin-right: 1rem;
}
.partners-track .slick-slide > div {
    display: flex;
}
.partner-logo {
    flex-shrink: 0;
    width: 12.6875rem;
    height: 10rem;
    background: #f1f2f4;
    border-radius: 1.25rem;
    display: flex!important;
    align-items: center;
    justify-content: center;
    padding: 1.5rem!important;
}
.partner-logo img {
     width: 100%;
     height: 100%;
    /*max-width: 80%;*/
    /*max-height: 80%;*/
    object-fit: scale-down;
}

/* Footer */
.site-footer {
    margin-bottom: 1rem;
}
.site-footer .container {
    position: relative;
    border-radius: 1.875rem;
    overflow: hidden;
    padding: 1.8rem;
}
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.footer-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #181818 40%, rgba(32, 32, 32, 0) 90.47%);
}
.footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
    color: white;
}
.foot-bot {
    display: flex;
    gap: 5rem;
}
/* Колонка инфо */
.footer-col--info {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.footer-logo img {
    height: 3.5rem;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.25rem;
}
.footer-schedule-row {
    display: flex;
    gap: 0.5rem;
}
.footer-schedule-days {
    font-weight: 600;
    color: #fff;
    min-width: 2rem;
}
.footer-info:hover {
    color: #d3a525;
}
.foot-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.foot-social a {
    font-size: 2.5rem;
    color: #aac0ae;
}
.foot-social a:hover {
    color: white;
}

/* Колонка навигации */
.footer-col--nav {
    padding-top: 0.25rem;
}
.footer-nav-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}
.footer-nav a:hover {
    color: #fff;
}

/* Колонка формы */
.footer-col--form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-form-title {
    font-size: 2.1rem;
    font-weight: 600;
}
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-input {
    width: 100%;
    border-radius: 6.25rem;
    background: #fff;
    padding: 0.85rem 1.25rem;
}
.footer-input::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.footer-privacy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-privacy a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}
.footer-privacy a:hover {
    color: #fff;
}

/* Inner Hero */
.inner-hero {
    position: relative;
    height: 24rem;
    overflow: hidden;
    color: white;
}
.inner-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(271deg, #000 -15.25%, rgba(0, 0, 0, 0) 87.14%),
        linear-gradient(47deg, #000 -2.28%, rgba(0, 0, 0, 0) 62.3%);
    z-index: 1;
}
.inner-hero .container {
    position: relative;
    height: 100%;
}
.inner-hero-body {
    position: absolute;
    bottom: 2rem;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}
.breadcrumb a {
    transition: all 0.2s;
}
.breadcrumb a:hover {
    font-weight: 600;
}

.history-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.history-box {
    display: flex;
    flex-direction: column;
    /*gap: 1.25rem;*/
    margin-bottom: -1rem;
}
.history-box p {
    color: #2c2c2c;
}
.history-box span {
    font-weight: 700;
}

.big-img {
    height: 35.9375rem;
    width: 100%;
    object-fit: cover;
}

.quote-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}
.quote-big-img {
    width: 100%;
    height: 22.375rem;
    border-radius: 1.25rem;
}
.quote-box {
    color: #2c2c2c;
    display: flex;
    flex-direction: column;
    gap: 1.65rem;
    width: 36.8125rem;
}
.quote-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.28rem;
}
.quote-left {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-img {
    position: absolute;
    width: 3.125rem;
    height: 2.625rem;
}
.quote-img.top {
    top: 0;
    left: 0;
}
.quote-img.bottom {
    bottom: 0;
    right: 0;
}

/* About Story */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1rem;
    align-items: flex-end;
}
.about-story-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 1rem;
}
.about-story-photos-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-story-photo {
    border-radius: 1.25rem;
    overflow: hidden;
    height: 13.625rem;
}
.about-story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-story-photo--big {
    height: 20.25rem;
}
.about-story-text {
    display: flex;
    flex-direction: column;
    /*gap: 1.25rem;*/
    color: #2c2c2c;
    margin-bottom: -1rem;
}
.about-story-text strong {
    font-weight: 700;
}

/* === Values === */
.values .section-title {
    margin-bottom: 1.5rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    align-items: start;
}
.values-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.values-col.first .values-card:first-child {
    height: 19.3125rem;
}
.values-col.first .values-card:last-child {
    height: 14.5rem;
}
.values-col.second .values-card:first-child {
    height: 14.5rem;
}
.values-col.second .values-card:last-child {
    height: 19.3125rem;
}
.values-card {
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    color: #fff;
}
.values-card--dark {
    background: #2c2c2c;
}
.values-card--green {
    background: #354b39;
}

.values-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Approach Section */
.approach {
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-item {
    display: grid;
    grid-template-columns: auto 1fr 46%;
    align-items: start;
    gap: 1.25rem;
    color: #2c2c2c;
}

.approach-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.approach-num,
.approach-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.approach-line {
    height: 1px;
    width: 100%;
    margin-top: 0.9rem;
    background: #2c2c2c;
}
.approach-desc {
    font-size: 1.15rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 1.25rem;
}
.team-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.65rem;
}
.team-photo {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 18.9375rem;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}
.team-card:hover .team-photo img {
    transform: scale(1.05);
}
.team-role {
    display: inline-flex;
    justify-content: center;
    font-size: 0.9rem;
    color: #2c2c2c;
    padding: 0.7rem 1.25rem;
    border-radius: 6.25rem;
    border: 1px solid #2c2c2c;
}
.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.service-card {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    background: #f1f2f4;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #2c2c2c;
    padding: 1rem;
}
.service-card-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 55%;
}
.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}
.service-card-desc {
    font-size: 0.9rem;
}
.service-card-right {
    position: relative;
    width: 45%;
    flex-shrink: 0;
}
.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0.65rem;
}
.service-card-arrow {
    position: absolute;
    bottom: 0.65rem;
    right: 0.65rem;
    width: 2.15rem;
    height: 2.15rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.service-card-arrow img {
    width: 1.05844rem;
    height: 0.84675rem;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}
.service-card:hover .service-card-arrow img {
    transform: rotate(0deg);
}

.book-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.book-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}
.book-txt {
    display: flex;
    flex-direction: column;
    /*gap: 1.25rem;*/
    color: #2c2c2c;
}
.book-txt span {
    font-weight: 600;
}
.book-img {
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
}
.book-btns {
    display: flex;
    gap: 1rem;
}

/* Advantages */
.advantages .section-title {
    margin-bottom: 2rem;
}
.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.adv-card {
    border-radius: 1.25rem;
    overflow: hidden;
    height: 17rem;
    position: relative;
    padding: 1.625rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #2c2c2c;
}
.adv-card--light {
    background: #f1f2f4;
}
.adv-card--stroke {
    border: 1px solid #2c2c2c;
}
.adv-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.adv-card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Solutions section */
.solutions-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.solutions-img-box img {
    width: 100%;
    height: 23.75rem;
    display: block;
    border-radius: 1.25rem;
    object-fit: cover;
}
.solutions-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
}
.solutions-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}
.solutions-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
}
.solutions-text {
    color: #2c2c2c;
}
.section-btn {
    width: 23.5rem;
}

/* Product Page */
.product-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.25rem;
    align-items: start;
}

/* Галерея */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: sticky;
    top: 6rem;
}
.product-gallery-main {
    border-radius: 1.25rem;
    overflow: hidden;
    height: 33.625rem;
    border: 1px solid #f1f2f4;
}
.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.25s ease;
}
.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.35rem;
}
.product-thumb {
    border-radius: 0.625rem;
    overflow: hidden;
    height: 5.375rem;
    cursor: pointer;
    border: 1px solid transparent;
    opacity: 0.7;
    transition: all 0.25s ease;
}
.product-thumb:hover {
    opacity: 1;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-thumb.active {
    border-color: #2c2c2c;
    opacity: 1;
}

/* Инфо */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.85rem;
    color: #2c2c2c;
}
.product-desc {
    margin-bottom: -1rem;
}
.no_img{
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.no_img:after{
    content: "Нет фото";
    opacity: 0.3;
}
.product-buy {
    display: flex;
    align-items: center;
    gap: 1.85rem;
    flex-wrap: wrap;
}
.product-price {
    font-size: 1.875rem;
    font-weight: 600;
    white-space: nowrap;
}
.product-price.sm{
    font-size: 1.25rem;
}
.product-cart-btn {
    flex: 1;
}
.product-divider {
    height: 1px;
    background: #2c2c2c;
    opacity: 0.3;
}

/* Табы */
.product-tabs {
    color: #2c2c2c;
}
.product-tab-nav {
    display: flex;
    gap: 0;
    justify-content: space-between;
}
.product-tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 0.25rem;
    position: relative;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.product-tab-btn::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2c2c2c;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.product-tab-btn.active::after {
    opacity: 1;
}
.product-tab-content {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.25rem;
    color: #2c2c2c;
}
.product-tab-content.active {
    display: flex;
}
.product-tab-subtitle {
    font-weight: 700;
}
.product-tab-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-left: 1rem;
    list-style: none;
}
.product-tab-list li::before {
    content: "· ";
    color: #2c2c2c;
    font-weight: 700;
}
.product-tab-list li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

/* Характеристики */
.product-chars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-char-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #2c2c2c20;
    gap: 1rem;
    color: #2c2c2c;
}
.product-char-row:last-child {
    border-bottom: unset;
}
.product-char-val {
    text-align: right;
}

.product-tab-alert {
    background-color: #f1f2f4;
    color: #2c2c2c;
    padding: 0.75rem 1.5rem;
    border-radius: 20rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.product-tab-alert span {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.product-tab-link {
    color: #2c2c2c;
    text-decoration-line: underline !important;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.product-tab-link:hover {
    text-decoration: none !important;
}
.product-tab-list li {
    align-items: flex-start;
}
.product-tab-list li::before {
    margin-top: 0.15rem;
}

.catalog-lil-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* === Catalog Layout === */
.catalog-layout {
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: 2rem;
    align-items: start;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.25rem;
}
.filter-groups {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.filter-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 1.75rem;
}
.filter-group-body {
    display: none;
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 0.6rem;
    padding-left: 1.5rem;
}
.filter-group-body.open {
    display: flex;
}

/* Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    user-select: none;
    line-height: 1;
}
.filter-checkbox input[type="checkbox"] {
    display: none;
}
.filter-checkbox-box {
    width: 1.15rem;
    height: 1.15rem;
    border: 1.5px solid #aaa;
    border-radius: 0.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.2s;
}
.filter-checkbox input:checked ~ .filter-checkbox-box {
    background: #2c2c2c;
    border-color: #2c2c2c;
}
.filter-checkbox input:checked ~ .filter-checkbox-box::after {
    content: "";
    display: block;
    width: 0.3rem;
    height: 0.55rem;
    border: 1.75px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-2px);
}
.filter-checkbox-label {
    color: #2c2c2c;
}

/* Chevron toggle button */
.filter-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    /* width: 1.25rem;
    height: 1.25rem; */
    flex: 1;
}
.filter-toggle::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1.75px solid #2c2c2c;
    border-bottom: 1.75px solid #2c2c2c;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
}
.filter-toggle.active::after {
    transform: rotate(-135deg) translateY(-2px);
}

/* Toggle switch */
.filter-toggle-switch {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    user-select: none;
    margin-top: 0.15rem;
}
.filter-toggle-switch input {
    display: none;
}
.filter-switch-track {
    width: 2.125rem;
    height: 1.2rem;
    background: #ccc;
    border-radius: 6.25rem;
    position: relative;
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.filter-switch-track::after {
    content: "";
    position: absolute;
    top: 0.175rem;
    left: 0.175rem;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.filter-toggle-switch input:checked ~ .filter-switch-track {
    background: #2c2c2c;
}
.filter-toggle-switch input:checked ~ .filter-switch-track::after {
    transform: translateX(0.9rem);
}
.filter-switch-label {
    color: #2c2c2c;
}

/* Pag buttons text */
.pag-btn {
    width: 2.25rem;
    height: 2.25rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #888;
    transition: background 0.2s;
}
.pag-btn:hover {
    background: #f0f0f0;
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Пагинация */
.catalog-pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.65rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.catalog-shown {
    color: #888;
}
.catalog-pagination {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.pag-btn {
    width: 2.25rem;
    height: 2.25rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.pag-btn:hover {
    background: #f0f0f0;
}
.pag-btn img {
    width: 1rem;
    height: 1rem;
}
.pag-pages {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.pag-dots {
    color: #2c2c2c;
    padding: 0 0.25rem;
}
.pag-page {
    padding: 0.35rem 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    border-radius: 6.25rem;
    transition: all 0.2s;
}
.pag-page:hover {
    background: #f0f0f0;
}
.pag-page.active {
    background: #2c2c2c;
    color: #fff;
}

.order-title {
    font-size: 1.5rem;
    color: #2c2c2c;
    font-weight: 600;
}
.order-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 1.25rem;
}
.order-items .cart-item-bottom {
    align-items: center;
}
.order-items .cart-item-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.cart-item-ul {
    list-style: none;
    opacity: 0.5;
}
.order-items .cart-item-info {
    gap: 2rem;
}
/* === Checkout === */
.checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.checkout-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.checkout-block-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}
.checkout-form-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.checkout-field {
    width: 100%;
}
.checkout-input {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 6.25rem;
    padding: 0.875rem 1.25rem;
    color: #2c2c2c;
    transition: box-shadow 0.2s ease;
}
.checkout-input::placeholder {
    color: #777777;
}
.checkout-input:focus {
    box-shadow: 0 0 0 2px rgba(44, 44, 44, 0.15);
}
.checkout-form-card.first {
    background: #f1f2f4;
    border-radius: 1.25rem;
    padding: 1.25rem 1rem;
}
/* Radio options */
.checkout-delivery-opts {
    background: #f1f2f4;
    border-radius: 1.25rem;
    padding: 1.25rem 1rem;
}
.checkout-radio {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    user-select: none;
    background: white;
    border-radius: 10rem;
}
.checkout-radio input[type="radio"] {
    display: none;
}
.checkout-radio-circle {
    width: 1rem;
    height: 1rem;
    border: 1.75px solid #aaa;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}
.checkout-radio input:checked ~ .checkout-radio-circle,
.checkout-radio-circle--checked {
    border-color: #2c2c2c;
    background: #000;
}
.checkout-radio-label {
    color: #2c2c2c;
}
.checkout-radio-addr {
    margin-left: auto;
    color: #888;
    text-align: right;
}

/* Delivery wrap */
.checkout-delivery-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.checkout-delivery-wrap .delivery-card {
    margin: 0;
}
/* Address row */
.checkout-address-row {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}
.checkout-field--grow {
    flex: 1;
}
.checkout-field--sm {
    width: 50%;
    flex-shrink: 0;
}
.delivery-second {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-card.second {
    padding: 1.25rem 1rem;
}
/* .delivery-row-top {
    display: flex;
    gap: 0.85rem;
    flex: 1;
    align-items: flex-end;
} */
.field-address-row {
    display: flex;
    gap: 0.85rem;
    flex: 1;
}
/* === Checkout Payment & Summary === */
.checkout-payment-iban {
    font-size: 0.875rem;
    color: #888;
    margin-left: 0.5rem;
}

/* Summary card */
.checkout-summary-card {
    gap: 1.25rem;
}
.checkout-comment {
    border-radius: 1rem;
    resize: none;
    font-size: 1rem;
    min-height: 2rem;
    padding: 0.75rem 1.25rem;
}
.checkout-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2c2c2c;
    font-size: 1.15rem;
}
.checkout-summary-val {
    font-weight: 600;
}
.checkout-summary-divider {
    height: 1px;
    background: #e0e0e0;
}
.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}
.checkout-summary-total-val {
    font-size: 1.5rem;
    font-weight: 600;
}
.checkout-summary-card.last {
    padding: 1rem 1.125rem;
    border-radius: 1.25rem;
    background: #f1f2f4;
}

.projects-lil-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* === Case Detail === */
.case-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.case-detail-inner.with-back {
    background: #f1f2f4;
    border-radius: 1.25rem;
    padding: 1.5rem;
    overflow: hidden;
}
.case-detail-photo {
    height: 100%;
    overflow: hidden;
    border-radius: 0.625rem;
    flex-shrink: 0;
}
.case-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.case-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    height: 100%;
}
.case-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.35rem;
    border-radius: 6.25rem;
    border: 1px solid #2c2c2c;
    color: #2c2c2c;
    width: fit-content;
}
.case-section {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.case-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}
.case-section-text {
    color: #2c2c2c;
}
.case-detail-btns {
    display: flex;
    gap: 0.65rem;
}
.case-detail-btns .black {
    width: 17rem;
}
.case-detail-btns .stroke2 {
    flex: 1;
}

/* === Results === */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.results-head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.875rem;
}
.results-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}
.results-card {
    border-radius: 1.25rem;
    padding: 1.625rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 13rem;
}
.results-card--border {
    background: transparent;
    border: 1px solid #2c2c2c;
}
.results-card--gray {
    background: #f1f2f4;
    border: none;
}
.results-card--photo {
    padding: 0;
    overflow: hidden;
    border-radius: 1.25rem;
}
.results-card--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.results-card-title {
    font-size: 1.5rem;
    font-weight: 600;
}
.results-card-desc {
    color: #2c2c2c;
}
.about-top .section-title{
    line-height: 1;
}
.about-top .about-sub{
    line-height: 1.1;
}
.about-top .content *{
    line-height: 1.4;
}
.about-top .content p:last-child{
    margin-bottom: 0;
}
.white_page {
    padding-top: 8rem;
}
.white_page .breadcrumb{
    margin-bottom: 2.7rem;
}
.site-header.white{
    background: black;
}

.content h1{
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.content h2{
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.content h3{
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.content h4{
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.content h5{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.content h6{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.case-detail-inner.reverse {
    direction: rtl;
}

.case-detail-inner.reverse > * {
    direction: ltr;
}
.btn.disabled{
    background: black!important;
    filter: grayscale(1)!important;
    opacity: 0.4!important;
    cursor: not-allowed!important;
}
.catalog-empty-box{
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}
.catalog-empty-box img{
    width: 7rem;
}

.form-control{
    width: 100%;
    border-radius: 30px;
    border: 1px solid #d3d2d2;
    height: 3.3rem;
    padding: 0 1.2rem;
    transition: all 0.35s;
}
.form-control:focus{
    border-color: black;
}
.form-control::placeholder{
    color: rgba(0,0,0,0.5);
}
.form-group{
    margin-bottom: 1rem;
}
.modal_text{
    margin-bottom: 1rem;
}