* {
    margin: 0;
    padding: 0;
}

.offices-hidden {
    visibility: hidden;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    background-color: #ffffff;
    color: #000B24;
    font-family: 'Montserrat';
    font-weight: 400;
    letter-spacing: 0.5px !important;
    overflow-x: hidden;
}

button,
a {
    letter-spacing: 0.5px !important;
}

.fs-100 {
    font-size: 100px;
}

.fs-140 {
    font-size: 140px;
}

.fs-75 {
    font-size: 75px;
}

.fs-40 {
    font-size: 40px;
}

.fs-32 {
    font-size: 32px;
}

.fs-28 {
    font-size: 28px;
}

.fs-26 {
    font-size: 26px;
}

.fs-24 {
    font-size: 24px;
}

.fs-25 {
    font-size: 25px;
}

.fs-22 {
    font-size: 22px;
}

.fs-20 {
    font-size: 20px;
}

.fs-19 {
    font-size: 19px;
}

.fs-18 {
    font-size: 18px;
}

.fs-17 {
    font-size: 17px;
}

.fs-16 {
    font-size: 16px;
}

.fs-15 {
    font-size: 15px;
}

.fs-14 {
    font-size: 14px;
}

.fs-13 {
    font-size: 13px;
}

.fs-12 {
    font-size: 12px;
}

.fs-11 {
    font-size: 11px;
}

.fs-10 {
    font-size: 10px;
}

.fs-9 {
    font-size: 9px;
}

.fs-8 {
    font-size: 8px;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

#zoom-modal .modal-dialog .modal-content {
    border-radius: 16px;
    overflow: hidden;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: #dee2e6;
}

.btn:focus {
    box-shadow: none;
    outline: none;
}

.br-16 {
    border-radius: 16px !important;
}

.br-8 {
    border-radius: 8px !important;
}

.btn {
    border-radius: 8px !important;
}

.sidebar {
    position: fixed;
    width: 0;
    height: 100vh;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.3);
    transition-duration: 0.3s;
    overflow: hidden;
}

.sidebar .side-menu {
    width: 280px;
    height: 100%;
    padding: 12px 5px 12px 20px !important;
    background: #fff;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.4);
    overflow: hidden scroll;
}

.sidebar .side-menu .nav-item {
    width: 100%;
    display: flex;
}

.sidebar .side-menu .nav-item a i {
    font-size: 24px;
    width: 24px;
    text-align: center;
}

.text-primary {
    color: #000B24 !important;
}

.text-secondary {
    color: #E4AA00 !important;
}

.text-accent {
    color: #40A497 !important;
}

.bg-primary {
    background-color: #000B24 !important;
}

.bg-secondary {
    background-color: #E4AA00 !important;
}

.bg-accent {
    background-color: #40A497 !important;
}

.btn-primary {
    background-color: #40A497 !important;
    color: #000B24 !important;
}

.bg-pastel {
    background: #FDFAF5;
}

.side-menu .nav-contacts a {
    text-decoration: none;
    color: #000B24 !important;
}

.contacts .card a {
    text-decoration: none;
    color: #fff !important;
}

hr {
    margin: 8px 0;
    background-color: #ddd;
    opacity: 1;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    color: #fff;
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: #FF3D00;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {

    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

.ws-nowrap {
    white-space: nowrap;
}

.cart .delivery-form .form-floating {
    padding: 0 20px;
}

.cart .delivery-form input.form-check-input:focus {
    box-shadow: none;
    outline: none;
}

.cart .delivery-form .form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    border-bottom: 1.5px solid #40A497;
    padding: 25px 4px 0;
    height: 70px;
    font-size: 15px;
}

.nav-link.fab-cart-container {
    padding: 0px;
}

.fab-cart {
    width: 54px;
    height: 54px;
    z-index: 111;
    background: coral;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 28px;
    cursor: pointer;
    text-decoration: none;
}

.fab-cart i {
    font-size: 28px;
}

.fab-cart .badge {
    position: absolute;
    border-radius: 50%;
    margin-top: -26px;
    margin-left: 30px;
    width: 20px;
    height: 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000B24;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 0 2px #666;
}

.cart .select2-container {
    width: 100% !important;
}

/*.contacts, .cart, .product {*/
/*    background-image: url(/images/paw.png);*/
/*    background-size: 110%;*/
/*    background-position: center;*/
/*}*/
.cart .products-list {
    min-height: 400px;
}

.cart .cart-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 0 !important;
}

.cart .quantity-input {
    width: 60px;
}

.cart .checkout-button {
    line-height: 35px;
}

.cart .cart-checkout-bg,
.orders .delivery-bg {
    box-shadow: 1px 0 4px #f3f3f3;
    border-color: #f3f3f3;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cart input.form-control,
.cart select.form-select {
    padding: 8px 0;
    font-size: 16px;
    border-radius: 0;
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: #ced4da !important;
    box-shadow: none !important;
}

.cart select:invalid {
    color: gray;
}

.cart .cart-empty-container {
    height: 400px;
}

.cart .cart-success-order {
    height: 400px;
}

.cart .terms-accept-container {
    margin-left: 20px;
}

.cart .terms-accept-container label {
    padding-left: 5px;
    color: #000B24 !important;
}

.cart .terms-accept-container a {
    color: #000B24 !important;
}

.cart .select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #aaa;
    height: 70px;
}

.cart .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 25px 4px 0;
    line-height: 50px;
    font-weight: 400;
    font-size: 15px;
    color: #000B24 !important;
}

.cart .offices-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 13px;
}

.cart .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 38px;
}

.cart .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #aaa transparent transparent transparent;
    border-width: 7px 5px 0 5px;
}

.cart .quantity-update-container {
    border-radius: 10px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: #005eb8 !important;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 6px 6px;
    background-color: transparent;
}

.select2-dropdown .select2-results__option {
    font-size: 14px;
    padding: 3px 6px;
}

.select2-dropdown .select2-search__field {
    border: none !important;
    outline: none;
    border-bottom: 1px solid #ddd !important;
}

.select2-results__option {
    font-size: 15px;
    color: #000B24 !important;
    font-weight: 400;
}

.select2-container--default .select2-results__option--disabled {
    color: #999 !important;
}

.select2-dropdown {
    border-radius: 8px;
}

.cart .select2-results__options {
    max-height: 150px !important;
}

.cart .cart-checkout-button-container {
    margin-top: 60px;
}

.page-products .catalog-btn {
    padding: 10px 24px;
    height: 46px;
    line-height: 24px;
}

.page-products .catalog-btn span {
    font-size: 20px;
    display: inline-block;
    margin-top: -4px;
    vertical-align: middle;
}

.card-product:hover {
    cursor: pointer;
}

#zoom-modal .modal-dialog {
    max-width: 1000px;
}

#product-modal .modal-dialog {
    max-width: 800px;
}

#zoom-modal .close,
#product-modal .close {
    color: #000;
    position: absolute;
    font-size: 40px;
    top: 0;
    height: 50px;
    width: 50px;
    display: flex;
    right: 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#product-modal .badge-item {
    display: inline-block;
    margin-top: 10px;
    margin-right: 3px;
    white-space: nowrap;
}

#product-modal .badge-item span {
    padding: 4px 12px;
    font-size: 14px;
    border-radius: 8px;
    background-color: #ebebeb;
    cursor: pointer;
}

#product-modal .badge-item.active span {
    background-color: #40A497;
    color: #fff;
}

#product-modal img {
    cursor: pointer;
}

.change-lang-item {
    flex-direction: row;
    display: flex;
    cursor: pointer;
}

.change-lang-item img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: middle;
    display: inline-block;
    margin-top: -4px;
}

.change-lang-item a {
    text-decoration: none;
    color: #000B24;
}

.add-products .image-container {
    width: 340px;
    height: 340px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #ddd;
}

#price-modal .quantity-item {
    background: #fff !important;
    font-size: 14px;
    color: #000B24;
    border-radius: 4px;
    cursor: pointer;
}

#price-modal .quantity-item.active {
    background: #40A497 !important;
}

#auth-login {
    width: 500px;
    margin-top: 50px;
}

.hp-hero>.container {
    position: relative;
    z-index: 2;
}

.cart .cart-list-container .cart-item+.cart-item {
    border-top: 1px solid #f3f3f3;
}

.cart .cart-list-container .cart-item-image-container img,
.orders .orders-item-image-container img {
    border-radius: 10px;
    margin-right: 4px;
}

.pulse-button-item::before,
.pulse-button-item::after {
    content: '';
    position: absolute;
    background: #ff7f506b;
    border-radius: 100px;
    opacity: 0;
    width: 30px;
    height: 30px;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    pointer-events: none;
}

.pulse-button-item::before {
    animation: pulseblob 1s infinite linear;
}

.pulse-button-item::after {
    animation: pulseblob 1.5s 1s infinite linear;
}

@keyframes pulseblob {
    0% {
        transform: scale(.2);
        opacity: 0
    }

    33% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(3);
        opacity: 0
    }
}

.fab-cart-container {
    position: fixed;
    bottom: 40px;
    right: 15px;
    z-index: 999;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #cfa485;
    color: #fff;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
    border: 1px solid #E8D5C4;
}


.hp-hero-subtitle {
    font-weight: 400 !important;
    line-height: 1.75 !important;
    color: #000B24;
    max-width: 440px;
    margin-bottom: 32px;
}

.hp-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hp-btn-primary {
    background: #000B24 !important;
    color: #fff !important;
    padding: 13px 32px !important;
    border-radius: 50px !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    box-shadow: 0 6px 20px rgba(0, 11, 36, 0.2);
    display: inline-block;
}

.hp-btn-primary:hover {
    background: #40A497 !important;
    color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.hp-btn-outline {
    color: #000B24 !important;
    border: 1.5px solid #000B24 !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    background: transparent !important;
    display: inline-block;
}

.hp-btn-outline:hover {
    background: #000B24 !important;
    color: #fff !important;
    text-decoration: none;
}

.hp-hero-stats {
    display: flex;
    gap: 42px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.hp-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #40A497;
    line-height: 1.1;
}

.hp-stat-label {
    color: #888;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

/* ----- Ticker ----- */
.hp-ticker {
    background: #000B24;
    color: #fff;
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
}

.hp-ticker-inner {
    display: inline-flex;
    animation: hpTicker 26s linear infinite;
}

.hp-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hp-ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #40A497;
    flex-shrink: 0;
}

@keyframes hpTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ----- Section Common ----- */
.hp-section {
    padding: 80px 0;
}

.hp-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}

.hp-section-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #40A497;
    margin-bottom: 6px;
}

.hp-section-title {
    color: #000B24;
    line-height: 1.25 !important;
}

.hp-section-link {
    color: #40A497;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.hp-section-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* ----- Product Tabs ----- */
.hp-product-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    background: #eeeae2;
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
}

.hp-tab-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s;
    background: transparent;
    color: #888;
    letter-spacing: 0.3px;
}

.hp-tab-btn.active {
    background: #fff;
    color: #000B24;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hp-tab-btn:hover:not(.active) {
    color: #000B24;
}

/* ----- Product Grid ----- */
.hp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hp-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.hp-card-price {
    font-size: 20px;
    font-weight: 700;
    color: #000B24;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: absolute;
    right: 10px;
    bottom: 65px;
}

.hp-card-currency {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    margin-left: -2px;
}

.pd-price-currency {
    margin-left: -5px;
}

.hp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 11, 36, 0.10);
    cursor: pointer;
}

.hp-card-img {
    overflow: hidden;
    background: #eeeae2;
    position: relative;
}

.hp-card-img img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.hp-product-card:hover .hp-card-img img {
    transform: scale(1.06);
}

.hp-card-body {
    padding: 15px 16px 17px;
}

.hp-card-name {
    font-size: 15px;
    color: #000B24;
    margin-bottom: 3px;
    line-height: 1.3;
}

.hp-card-sizes {
    margin-bottom: 12px;
}

.hp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
}

.hp-card-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #40A497;
    font-weight: 600;
}

.hp-card-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #40A497;
    flex-shrink: 0;
}

.hp-card-btn {
    background: #40A497;
    color: #fff !important;
    border: none;
    padding: 10px 14px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none !important;
    letter-spacing: 0.3px;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.hp-card-btn:hover {
    background: #2e8a7d;
}

/* ----- USP Strip ----- */
.hp-usp-strip {
    padding: 48px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.hp-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.hp-usp-item {
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid #e8e8e8;
}

.hp-usp-item:last-child {
    border-right: none;
}

.hp-usp-icon {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1;
}

.hp-usp-title {
    color: #000B24;
    margin-bottom: 6px;
}

/* ----- Categories ----- */
.hp-categories {
    padding: 80px 0;
}

.hp-cat-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 14px;
}

.hp-cat-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.28s;
    display: block;
    text-decoration: none !important;
}

.hp-cat-card:hover {
    transform: scale(0.975);
}

.hp-cat-featured {
    grid-row: span 2;
}

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

.hp-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 11, 36, 0.65) 0%, transparent 58%);
}

.hp-cat-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
}

.hp-cat-title {
    margin-bottom: 4px;
}

.hp-cat-meta {
    opacity: 0.85;
}

/* ----- Hero ----- */
.hp-hero {
    min-height: 700px;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: #FDFAF5;
}

.hp-bg-image {
    margin-right: -100px;
}

.hp-hero-title {
    font-size: clamp(26px, 3vw, 43px) !important;
    line-height: 1.18 !important;
    color: #000B24;
    margin-bottom: 18px;
    max-width: 600px;
}

/* ============================================================
   HOMEPAGE REDESIGN – Materials Section
   ============================================================ */

.hp-materials-section {
    padding: 80px 0;
}

.hp-materials-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hp-materials-intro {
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 15px;
}

.hp-materials-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.hp-material-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 18px 16px;
    transition: background 0.25s;
}

.hp-material-icon {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1;
}

.hp-material-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.hp-material-desc {
    font-size: 13px;
    line-height: 1.6;
}

.hp-materials-visual img {
    height: 700px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* ============================================================
   HOMEPAGE REDESIGN – Testimonials Section
   ============================================================ */

.hp-testimonials {
    padding: 80px 0;
    background: #fff;
}

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

.hp-testimonial-card {
    background: #FDFAF5;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.hp-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 11, 36, 0.09);
}

.hp-testimonial-quote {
    font-size: 48px;
    line-height: 0.8;
    color: #40A497;
    font-family: Georgia, serif;
    font-weight: 700;
}

.hp-testimonial-stars {
    color: #E4AA00;
    font-size: 15px;
    letter-spacing: 2px;
}

.hp-testimonial-text {
    color: #333;
    font-size: 14px;
    line-height: 1.75;
    flex: 1;
    margin: 0;
}

.hp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 11, 36, 0.08);
}

.hp-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #40A497;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.hp-author-name {
    color: #000B24;
    font-size: 14px;
}

.hp-author-pet {
    color: #888;
    font-size: 12px;
}

/* ============================================================
   HOMEPAGE REDESIGN – CTA Section
   ============================================================ */

.hp-cta {
    background: linear-gradient(135deg, #40A497 0%, #000B24 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hp-cta::before {
    content: '🐾';
    font-size: 200px;
    position: absolute;
    top: 20px;
    right: 60px;
    opacity: 0.20;
    transform: rotate(20deg);
    pointer-events: none;
    line-height: 1;
}

.hp-cta::after {
    content: '🐾';
    font-size: 150px;
    position: absolute;
    bottom: -20px;
    left: 40px;
    opacity: 0.15;
    transform: rotate(-12deg);
    pointer-events: none;
    line-height: 1;
}

.hp-cta>.container {
    position: relative;
    z-index: 1;
}

.hp-cta-title {
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.18;
    color: #fff;
    margin-bottom: 16px;
}

.hp-cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hp-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hp-cta-btn-primary {
    background: #fff;
    color: #000B24;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.hp-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.20);
    color: #000B24;
    text-decoration: none;
}

.hp-cta-btn-ghost {
    border: 2px solid rgba(255, 255, 255, 0.70);
    color: #fff;
    padding: 13px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    display: inline-block;
}

.hp-cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   REDESIGNED HEADER / NAV  (hp-header)
   ============================================================ */

.hp-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 11, 36, 0.08);
    box-shadow: 0 2px 16px rgba(0, 11, 36, 0.06);
}

.hp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.hp-header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hp-header-logo img {
    display: block;
}

/* Nav links */
.hp-header-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    padding-left: 24px;
}

.hp-header-links li a {
    display: block;
    padding: 6px 14px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.01em;
}

.hp-header-links li a:hover {
    color: #40A497;
    background: rgba(64, 164, 151, 0.07);
}

/* Right side: lang + CTA */
.hp-header-end {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.hp-header-lang {
    display: flex;
    align-items: center;
}

.hp-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.hp-lang-btn:hover {
    background: rgba(0, 11, 36, 0.05);
    color: #000B24;
}

.hp-lang-btn img {
    border-radius: 2px;
}

/* CTA button in header */
.hp-header-cta {
    background: #000B24;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.hp-header-cta:hover {
    background: #40A497;
    transform: translateY(-1px);
}

.contacts .hp-header-cta {
    padding: 12px 30px;
}

.contacts .contact-form .form-floating,
.contacts .contact-form .form-group,
.cart .delivery-form .form-floating {
    padding: 0 20px;
}

.contacts .contact-form label {
    padding-left: 20px;
    opacity: 1 !important;
}

.contacts .contact-form label.form-check-label {
    padding-left: 0;
    margin-top: 2px;
    vertical-align: middle;
}

.contacts .contact-form input.form-check-input:checked {
    background-color: #40A497;
    border-color: #40A497;
}

.contacts .contact-form input.form-check-input:focus,
.cart .delivery-form input.form-check-input:focus {
    box-shadow: none;
    outline: none;
}

.contacts .contact-form .form-control,
.cart .delivery-form .form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    border-bottom: 1.5px solid #40A497;
    padding: 25px 4px 0;
    height: 70px;
    font-size: 15px;
}

.contacts .contact-form textarea.form-control {
    height: 160px;
    padding-top: 40px;
}

.contacts #map {
    height: 400px;
    width: calc(100% - 24px);
    margin: 0 12px;
    border-radius: 16px;
}

/* Mobile hamburger */
.hp-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    color: #000B24;
    font-size: 22px;
    transition: background 0.2s;
}

.hp-hamburger:hover {
    background: rgba(0, 11, 36, 0.06);
}

/* ============================================================
   REDESIGNED FOOTER  (hp-footer)
   ============================================================ */

.hp-footer {
    background: #fff;
    padding: 72px 0 0;
    position: relative;
    z-index: 111;
    box-shadow: 0px 0px 4px #ebebeb;
}

.hp-footer-logo {
    display: block;
    margin-bottom: 20px;
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid #ddd;
}

.hp-footer-desc {
    font-size: 13px;
    color: #000;
    line-height: 1.8;
    margin: 0;
    max-width: 360px;
}

.hp-footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.hp-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #000;
    line-height: 1.5;
}

.hp-footer-col ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.hp-footer-col ul li a:hover {
    color: #40A497;
}

.hp-footer-icon {
    font-size: 14px;
    color: #40A497;
    flex-shrink: 0;
    margin-top: 1px;
}

.hp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 12px;
    color: #000;
    flex-wrap: wrap;
    gap: 8px;
}

.hp-footer-bottom a {
    color: #000B24;
    text-decoration: none;
    transition: color 0.2s;
}
/* ============================================================
   ABOUT US PAGE  (ab- prefix)
   ============================================================ */

/* ----- Hero ----- */
.ab-hero {
    padding: 80px 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Paw watermark */
.ab-hero::before {
    content: '🐾';
    font-size: 200px;
    position: absolute;
    top: 0;
    right: 10px;
    opacity: 0.07;
    transform: rotate(20deg);
    pointer-events: none;
    line-height: 1;
}

.ab-hero::after {
    content: '🐾';
    font-size: 140px;
    position: absolute;
    bottom: -20px;
    left: 30px;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
    line-height: 1;
}

.ab-hero>.container {
    position: relative;
    z-index: 1;
}

.ab-hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #40A497;
    margin-bottom: 16px;
}

.ab-hero-title {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.ab-hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

/* ----- Mission ----- */
.ab-mission {
    background: #fff;
    padding: 80px 0;
}

.ab-two-col {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

.ab-col-text .hp-section-tag {
    display: block;
    margin-bottom: 12px;
}

.ab-body {
    line-height: 1.8;
}

.ab-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.ab-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eeeae2;
    color: #000B24;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.ab-col-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 56px rgba(0, 11, 36, 0.10);
}

/* ----- Story / Inspiration ----- */
.ab-story {
    padding: 80px 0;
}

.ab-story-header {
    margin-bottom: 48px;
}

.ab-story-header .hp-section-tag {
    display: block;
    margin-bottom: 12px;
}

.ab-story-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ab-story-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    position: sticky;
    top: 90px;
}

.ab-story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab-story-text p {
    font-size: 15px;
    line-height: 1.85;
    margin: 0;
}

.ab-story-closing {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    border-left: 3px solid #40A497;
    color: #000B24 !important;
    font-weight: 500;
    box-shadow: 0 0 4px #eeeeee;
}

#map {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 11, 36, 0.10);
}

/* =====================================================
   PRODUCT CATALOG  (pl-)
   ===================================================== */

/* Hero override — smaller than ab-hero on other pages */
.pl-hero.ab-hero {
    padding: 56px 0 48px;
}

/* ----- Filter Bar ----- */
.pl-filter-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0, 11, 36, 0.08);
    box-shadow: 0px 1px 2px #ebebeb;
    padding: 0;
    position: sticky;
    top: 64px;
    z-index: 40;
}

.pl-filter-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 18px 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pl-filter-scroll::-webkit-scrollbar {
    display: none;
}

.pl-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 11, 36, 0.14);
    font-size: 13px;
    font-weight: 500;
    color: #444;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    flex-shrink: 0;
}

.pl-filter-pill:hover {
    border-color: #40A497;
    color: #40A497;
}

.pl-filter-pill.active {
    background: #000B24;
    border-color: #000B24;
    color: #fff;
}

/* ----- Grid Section ----- */
.pl-grid-section {
    padding: 48px 0 80px;
    background: #fafaf8;
}

.pl-product-count {
    font-size: 13px;
    color: #888;
}

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

.pl-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ----- Product Card ----- */
.pl-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 11, 36, 0.07);
    box-shadow: 0 4px 16px rgba(0, 11, 36, 0.05);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}

.pl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 11, 36, 0.12);
    text-decoration: none;
}

.pl-card-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f5f4f0;
}

.pl-card-img-wrap img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.pl-card:hover .pl-card-img-wrap img {
    transform: scale(1.04);
}

.pl-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #000B24;
    letter-spacing: 0.02em;
}

.pl-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.pl-card-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.35;
}

.pl-card-sizes {
    font-size: 12px;
    color: #888;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.pl-size-sep {
    color: #ccc;
    font-size: 10px;
}

.pl-card-footer {
    margin-top: auto;
    padding-top: 10px;
}

.pl-card-cta {
    font-size: 13px;
    font-weight: 600;
    color: #40A497;
}

/* ----- Empty State ----- */
.pl-empty {
    text-align: center;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pl-empty-icon {
    font-size: 64px;
    color: #ccc;
}

.pl-empty-text {
    font-size: 18px;
    color: #888;
    margin: 0;
}

/* =====================================================
   PRODUCT DETAIL PAGE  (pd-)
   ===================================================== */

.pd-breadcrumb {
    background: #fafaf8;
    border-bottom: 1px solid rgba(0, 11, 36, 0.02);
    padding: 12px 0;
}

.pd-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    flex-wrap: wrap;
}

.pd-breadcrumb-list li {
    color: #888;
}

.pd-breadcrumb-list a {
    color: #555;
    text-decoration: none;
    transition: color .2s;
}

.pd-breadcrumb-list a:hover {
    color: #40A497;
}

.pd-breadcrumb-list li[aria-current="page"] {
    color: #000B24;
    font-weight: 500;
}

.pd-main {
    padding: 56px 0 72px;
    background: #fafaf8;
}

.pd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Gallery */
.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 90px;
}

.pd-gallery-main {
    border-radius: 20px;
    overflow: hidden;
    background: #f5f4f0;
    cursor: zoom-in;
    border: 1px solid #eeeeee;
}

.pd-main-image {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.pd-gallery-main:hover .pd-main-image {
    transform: scale(1.03);
}

.pd-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pd-thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    padding: 0;
    background: #f5f4f0;
    cursor: pointer;
    transition: border-color .2s;
}

.pd-thumb.active,
.pd-thumb:hover {
    border-color: #40A497;
}

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

/* Info panel */
.pd-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #40A497;
}

.pd-title {
    font-size: clamp(22px, 3vw, 32px);
    color: #000B24;
    line-height: 1.2;
    margin: 0;
}

.pd-info-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(64, 164, 151, 0.08);
    border: 1px solid rgba(64, 164, 151, 0.20);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

.pd-info-icon {
    font-size: 20px;
    color: #40A497;
    flex-shrink: 0;
    margin-top: 1px;
}

.pd-option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-option-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #000B24;
    margin: 0;
}

.pd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-item-size {
    display: inline-block;
    cursor: pointer;
    user-select: none;
}

.badge-item-size span {
    display: block;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 8px;
    background-color: #ebebeb;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
}

.badge-item-size:hover span {
    background-color: #d4d4d4;
}

.badge-item-size.active span {
    background-color: #40A497;
    color: #fff;
}

.pd-add-to-cart {
    width: 100%;
    font-size: 15px;
    padding: 14px 24px;
}

.pd-cart-info {
    text-align: center;
    color: #aaa;
    margin: -8px 0 0;
    font-size: 12px;
}

.pd-description {
    border-top: 1px solid rgba(0, 11, 36, 0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-desc-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #aaa;
    margin: 0;
}

.pd-desc-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.pd-related {
    padding: 56px 0 72px;
    background: #fff;
}

.pd-related-title {
    font-size: 22px;
    font-weight: 700;
    color: #000B24;
    margin-bottom: 28px;
}

.clients {
    padding: 80px 0;
}

.homepage .clients {
    padding-top: 70px;
    padding-bottom: 70px;
}

.homepage .clients .item {
    height: 100px;
    overflow: hidden;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0.6);
    border-radius: 16px;
}

.homepage .clients .item:hover {
    filter: grayscale(0);
    background: rgba(255, 255, 255, 1);
    border: 1px solid #e8e8e8;
    cursor: pointer;
}

.homepage .clients .item img {
    object-fit: contain;
    width: 60%;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */

@media (min-width: 1320px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}

@media (min-width: 1500px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }
}

@media screen and (max-width: 1500px) {
    .hp-hero-title {
        font-size: clamp(26px, 3vw, 43px) !important;
        max-width: 600px;
    }

    .hp-bg-image {
        margin-right: -200px;
    }

    .hp-hero {
        padding: 90px 0 120px;
    }
}

@media screen and (max-width: 1100px) {

    .pl-grid,
    .pl-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .hp-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-cat-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .hp-cat-featured {
        grid-row: span 1;
        height: 260px;
    }

    .hp-cat-card {
        height: 200px;
    }

    .hp-materials-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hp-materials-visual {
        order: -1;
    }

    .hp-materials-visual img {
        max-height: 220px;
        width: 100%;
        margin-bottom: 12px;
    }

    .hp-testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .hp-footer-brand {
        grid-column: span 2;
    }

    .ab-two-col,
    .ab-story-body {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ab-col-image {
        order: -1;
    }

    .ab-story-image img {
        position: static;
    }
}

@media screen and (max-width: 900px) {
    .pd-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pd-gallery {
        position: static;
    }
}

@media screen and (max-width: 768px) {

    .pl-grid,
    .pl-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pl-filter-bar {
        top: 56px;
    }

    .pd-main {
        padding: 32px 0 48px;
    }
}

@media screen and (max-width: 600px) {
    .pd-related .pl-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
    }

    .pd-related .pl-grid::-webkit-scrollbar {
        display: none;
    }

    .pd-related .hp-product-card {
        flex-shrink: 0;
        width: 240px;
    }

    .pd-breadcrumb-list {
        font-size: 12px;
    }

    .pd-breadcrumb-list li:nth-child(3),
    .pd-breadcrumb-list li:nth-child(4) {
        display: none;
    }

    #auth-login {
        width: calc(100% - 30px);
        margin-top: 50px;
    }

    .change-lang-item img {
        margin-left: 0;
    }

    .cart .delivery-form {
        padding: 0;
    }

    .cart .delivery-form .form-floating {
        padding: 0;
    }

    .cart .delivery-form label {
        padding-left: 0;
    }

    .cart .terms-accept-container {
        margin-left: 0;
    }

    #zoom-modal {
        background-color: rgba(0, 0, 0, 0.8);
    }

    #product-modal .modal-dialog {
        margin: 0;
    }

    #product-modal .modal-dialog .modal-content {
        border-radius: 0;
    }

    .navbar-brand {
        padding: 0;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .fs-24 {
        font-size: 18px;
    }

    .sidebar .navbar-nav .btn {
        position: absolute;
        bottom: 20px;
    }

    .fab-cart-container {
        position: fixed;
        bottom: 40px;
        right: 15px;
        z-index: 999;
    }

    .fab-cart {
        width: 50px;
        height: 50px;
    }

    .fab-cart i {
        font-size: 28px;
    }

    .fab-cart .badge {
        position: absolute;
        border-radius: 50%;
        margin-top: -32px;
        margin-left: 32px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .cart .cart-list-container {
        margin: 0;
    }

    .cart .cart-list-container .cart-item h6 {
        font-size: 15px;
    }

    .cart .cart-list-container .cart-item small {
        font-size: 11px;
    }

    .cart .cart-list-container .cart-item-image-container img,
    .orders .orders-item-image-container img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }

    .cart .cart-list-container .cart-button {
        width: 30px;
        height: 30px;
    }

    .cart .cart-list-container .quantity-input {
        width: 40px;
    }

    .cart .row {
        margin: 0;
    }

    .cart .cart-item>div {
        padding: 0;
    }

    .cart .fs-28 {
        font-size: 25px;
    }

    .cart.min-vh-100 {
        min-height: auto !important;
    }

    .cart-list-container hr {
        margin: 8px;
    }

    .cart .products-list {
        min-height: 300px;
    }

    .cart .delivery-heading {
        text-align: center;
        display: block;
    }

    .orders .row {
        margin: 0;
    }

    .fs-32 {
        font-size: 18px;
    }

    .side-menu-open i {
        font-size: 28px;
    }

    .side-menu-close i {
        font-size: 32px;
        font-weight: 500;
    }

    .side-menu .nav-contacts {
        font-weight: 600;
        position: absolute;
        top: 330px;
        left: 15px;
        font-size: 14px;
    }

    .side-menu .nav-contacts span {
        font-size: 24px;
        font-weight: 600;
    }

    .products-list-container {
        padding: 0;
        margin: 0;
    }

    .change-lang-item {
        border-right: none !important;
    }

    .hp-hero {
        padding: 10px 0 0 !important;
        min-height: unset;
    }

    .hp-hero-actions {
        gap: 8px;
    }

    .hp-btn-primary {
        padding: 12px 8px !important;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.03em;
    }

    .hp-btn-outline {
        padding: 12px 10px !important;
        font-size: 11px;
        font-weight: 600;
    }

    .hp-hero .hp-image-col {
        z-index: 1;
        order: 1;
        background: none;
        height: 20vh;
    }

    .hp-hero .hp-image-col img {
        width: 100vw;
        top: 0px;
        left: 0;
        z-index: -1;
        margin-right: 0;
    }

    .hp-hero .hp-intro-texts {
        order: 2;
        margin-top: 80px;
        padding: 28px 16px;
    }

    .hp-hero .hp-intro-texts .hp-hero-badge {
        display: none;
    }

    .hp-stat-label {
        font-size: 11px;
    }

    .hp-stat-num {
        font-size: 22px;
    }

    .hp-tab-btn {
        padding: 8px 16px;
    }

    .hp-hero-stats {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hp-hero-title {
        font-size: 22px !important;
    }

    .hp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hp-product-tabs {
        flex-wrap: wrap;
        border-radius: 50px;
        width: 100%;
    }

    .hp-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-usp-item {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .hp-usp-item:nth-child(odd) {
        border-right: 1px solid #e8e8e8;
    }

    .hp-usp-item:last-child,
    .hp-usp-item:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }

    .hp-cat-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
    }

    .hp-cat-grid::-webkit-scrollbar {
        display: none;
    }

    .hp-cat-card {
        flex-shrink: 0;
        width: 220px;
        height: 240px;
        border: 1px solid #f3f3f3;
    }

    .hp-section {
        padding: 48px 0;
    }

    .hp-categories {
        padding: 48px 0;
    }

    .hp-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hp-materials-section {
        padding: 48px 0;
    }

    .hp-materials-list {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .hp-testimonials {
        padding: 48px 0;
    }

    .hp-testimonials-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
    }

    .hp-testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .hp-testimonial-card {
        flex-shrink: 0;
        width: 280px;
    }

    .hp-cta {
        padding: 64px 18px;
    }

    .hp-cta::before {
        font-size: 140px;
        right: 20px;
    }

    .hp-cta::after {
        font-size: 100px;
        left: 10px;
    }

    .hp-footer {
        padding: 48px 0 0;
    }

    .hp-footer-grid {
        width: 100%;
        padding: 0 20px 56px;
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .hp-footer-brand {
        grid-column: span 1;
    }

    .hp-footer-logo {
        height: 80px;
        margin-left: auto;
        margin-right: auto;
    }

    .hp-footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hp-footer-col ul {
        align-items: center;
    }

    .hp-footer-col ul li {
        justify-content: center;
        text-align: left;
        align-items: center;
    }
    .hp-footer-icon {
        font-size: 16px;
    }

    .hp-footer-col-title {
        text-decoration: underline;
        text-underline-offset: 5px;
    }

    .hp-footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        font-size: 11px;
    }

    .hp-footer-bottom p {
        margin: 0;
    }

    .hp-header-inner {
        height: 60px;
    }

    .ab-hero {
        padding: 56px 0 48px;
    }

    .ab-hero::before {
        font-size: 160px;
    }

    .ab-mission,
    .ab-story {
        padding: 48px 0;
    }

    .ab-story-header {
        margin-bottom: 28px;
    }

    #map {
        height: 280px;
    }

    .hp-usp-item {
        padding: 20px 10px;
    }
    .hp-usp-title {
        font-size: 15px;
    }
    .hp-usp-text {
        font-size: 12px;
    }
    .hp-card-btn {
        position: absolute;
        bottom: 10px;
        left: 10px;
        width: calc((100% - 20px));
        padding: 7px 14px;
        font-size: 0.775rem;
    }
    .hp-card-status {
        font-size: 11px;
    }
    .hp-card-body {
        padding: 10px 12px 40px;
    }

    .pl-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

     .pl-card-body {
        padding: 12px;
    }

    .pl-card-name {
        font-size: 13px;
    }

    .hp-card-price {
        position: static;
        font-size: 16px;
        margin-bottom: 6px;
    }

    .hp-card-name {
        font-size: 13px;
    }

    #featured-products .hp-section-header {
        margin-bottom: 16px;
    }

    #featured-products .hp-btn-outline {
        padding: 12px 30px !important;
        font-size: 13px;
    }

    .hp-section-link {
        display: none;
    }
    .fs-15, .hp-materials-intro {
        font-size: 0.900rem;
    }
    .hp-materials-intro {
        line-height: 1.5;
    }
    .hp-cta-title {
        font-size: 24px;
    }
    .hp-cta-subtitle {
        font-size: 15px;
    }
    .hp-cta a {
        font-size: 14px;
    }
    .hp-material-item {
        padding: 36px 60px 18px;
    }
    .hp-material-icon {
        font-size: 42px;
        margin-bottom: 25px;
    }
    .homepage .clients {
        padding: 40px 0 20px;
    }
    .homepage .clients .item img {
        width: 80%;
    }
    .homepage .clients .hp-section-tag {
        font-size: 0.675rem;
    }
    .pd-add-to-cart.hp-btn-primary {
        font-size: 14px;
    }
}
