/*
Theme Name: Crocs
Theme URI: https://example.com
Author: R^squared
Author URI: https://example.com
Description: Интернет-магазин обуви Crocs
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crocs
*/

/* WooCommerce Star Rating - Global Styles */
html a {
    text-decoration: none !important;
}
.star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: sans-serif;
    font-weight: 400;
}

.star-rating::before {
    content: "★★★★★";
    color: #E5E5E5;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    letter-spacing: 0.1em;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 0;
}

.star-rating span::before {
    content: "★★★★★";
    top: 0;
    position: absolute;
    left: 0;
    color: #F5B423;
    letter-spacing: 0.1em;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #000000;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.page {
    width: 100%;
    max-width: 100vw;
    background: #FFFFFF;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: clip;
    overflow-x: hidden;
}

/* Header */
.header {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    flex-shrink: 0;
}

.header__top {
    width: 100%;
    position: relative;
}

.header__top-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 5px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #ccc;
}

.header__social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header__social-link:hover {
    opacity: 0.7;
}

.header__social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.header__social-icon:last-child {
    width: 24px;
    height: 24px;
}

.header__social-link svg path,
.header__social-link svg g path {
    transition: fill 0.3s;
}

.header__social-link:not(:nth-child(3)):hover svg path,
.header__social-link:hover svg g path {
    fill: #47B400;
}

.header__social-link:nth-child(3):hover svg .youtube-bg {
    fill: #47B400;
}

.header__social-link:nth-child(3) svg .youtube-logo,
.header__social-link:nth-child(3):hover svg .youtube-logo {
    fill: white !important;
}

.header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 52.9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #47B400;
    text-decoration: none;
    width: 300px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.header__logo-link:hover {
    opacity: 0.8;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 16.73px;
}

.header__action {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    width: 24px;
    height: 24px;
    transition: color 0.3s;
}

.header__action:hover {
    color: #47B400;
}

.header__action svg path {
    transition: fill 0.3s;
}

.header__action:hover svg path {
    fill: #47B400;
}

.header__action-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: currentColor;
}

.header__bottom {
    width: 100%;
    height: 77.59px;
    position: relative;
    background: #FFFFFF;
}

.header__container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.header__burger-line {
    width: 100%;
    height: 3px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__burger--active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header__burger--active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

body.menu-open {
    overflow: hidden;
}

.header__menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.header__menu-overlay--active {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header__container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(114, 113, 116, 0.2);
}

.menu {
    display: flex;
    align-items: center;
    gap: 46px;
    height: 15.06px;
}

.header__menu {
    transition: transform 0.3s ease;
}

.menu__item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.219;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5.25px;
    transition: color 0.3s;
    white-space: nowrap;
}

.menu__item--active {
    color: #47B400;
}

.menu__item:hover {
    color: #47B400;
}

.menu__item--dropdown {
    cursor: pointer;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.menu__dropdown-header {
    display: flex;
    align-items: center;
    gap: 5.25px;
    position: relative;
}

.menu__dropdown-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.219;
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5.25px;
    white-space: nowrap;
    transition: color 0.3s;
}

.menu__dropdown-link:hover {
    color: #47B400;
}

.menu__item--dropdown.menu__item--active .menu__dropdown-link {
    color: #47B400;
}

.menu__arrow {
    width: 9.74px;
    height: 5.79px;
    flex-shrink: 0;
}

.menu__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    position: absolute;
    left: 100%;
}

.menu__item--dropdown .menu__arrow {
    transition: transform 0.3s ease;
}

.menu__item--dropdown.menu__item--open .menu__arrow {
    transform: rotate(180deg);
}

.menu__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 50;
}

.menu__item--dropdown:hover .menu__submenu,
.menu__item--dropdown:focus-within .menu__submenu,
.menu__item--dropdown.menu__item--open .menu__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu__submenu-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.menu__submenu-link:hover,
.menu__submenu-link--active {
    color: #47B400;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 840px;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    max-height: 840px;
    overflow: hidden;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide--active {
    opacity: 1;
}

.hero__bullets {
    position: absolute;
    bottom: 700px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.hero__bullet {
    width: 40px;
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero__bullet:hover {
    background: rgba(0, 0, 0, 0.5);
}

.hero__bullet-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.1s linear;
}

.hero__bullet--active {
    background: rgba(0, 0, 0, 0.3);
}

.hero__bullet--active .hero__bullet-progress {
    animation: progressBar 3s linear forwards;
}

@keyframes progressBar {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.hero__slide-index {
    display: none;
}

.hero__slide-current {
    font-weight: 900;
}

.hero__slide-separator {
    opacity: 0.5;
}

.hero__slide-total {
    opacity: 0.5;
}

.hero__container {
    max-width: 1627px;
    width: 100%;
    margin: 0 auto;
    padding: 280px 16% 0;
    position: relative;
    z-index: 2;
    min-height: 840px;
}

.hero__content {
    position: relative;
    width: 100%;
    z-index: 3;
}

.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 1.219;
    color: #FFF4F4;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
}

.hero__title-line {
    display: block;
}

.hero__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.219;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 49px;
    max-width: 536px;
}

.hero__subtitle-continue {
    display: block;
    margin-top: 7px;
}

.hero__button {
    margin-bottom: 88px;
}

.hero__cards {
    position: relative;
    z-index: 3;
    width: 1300px;
    max-width: 100%;
    margin: 60px auto 0;
    box-shadow: 0px 20px 80px rgba(193, 199, 212, 0.7);
    background: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    min-height: 568.15px;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.hero__cards-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 568.15px;
    background: #FFFFFF;
    z-index: 1;
}

.hero__card {
    position: relative;
    z-index: 2;
}

.hero__card--right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 568.15px;
}

.hero__card-image {
    width: 646px;
    height: 568.15px;
    background-image: url('images/hero-card.png');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.hero__card--left {
    width: 500px;
    flex-shrink: 0;
    padding: 116.44px 0 0 70px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero__card-button-wrapper {
    width: 217px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__card-button {
    width: 210px;
    height: 60.23px;
    font-size: 18px;
    padding: 19.07px 27px;
    margin: 0;
}

.hero__card-button-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.219;
    color: #000000;
    margin: 0;
    width: 187px;
}

.hero__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.219;
    color: #000000;
    margin: 0;
    width: 443px;
}

.hero__card-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #504E4A;
    margin: 0;
    width: 425px;
}

.hero__card-note {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #504E4A;
    margin: 0;
    width: 500px;
}

/* Button */
.button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.219;
    color: #FFFFFF;
    background: #47B400;
    border: none;
    cursor: pointer;
    padding: 19px 51px;
    border-radius: 0;
    transition: background 0.3s;
    height: 60.23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 300px;
}

.button:hover {
    background: #3A9300;
}

/* Category Menu */
.category-menu {
    width: 100%;

    position: relative;
}

.category-menu__wrapper {
    width: 100%;
    max-width: 632px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.category-menu__container {
    width: 100%;
    max-width: 632px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-height: 109.06px;
    box-sizing: border-box;
    overflow-x: visible;
    overflow-y: visible;
}

/* Градиенты для индикации свайпа на мобильных */
.category-menu__gradient-left,
.category-menu__gradient-right {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
    height: 109.06px;
}

.category-menu__gradient-left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.category-menu__gradient-right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.category-menu__gradient-left.category-menu__gradient--visible,
.category-menu__gradient-right.category-menu__gradient--visible {
    opacity: 1;
}

.category-menu__gradient-left.category-menu__gradient--hidden,
.category-menu__gradient-right.category-menu__gradient--hidden {
    opacity: 0;
}

/* Анимация пульсации для подсказки о свайпе */
@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.category-menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12.058823585510254px;
    width: 106px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-menu__item:hover {
    transform: translateY(-5px);
}

.category-menu__icon {
    width: 82px;
    height: 82px;
    border: 1px solid #000000;
    border-radius: 50%;
    background: #D9D9D9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-menu__item:hover .category-menu__icon {
    transform: scale(1.1);
    border-color: #47B400;
    box-shadow: 0 8px 20px rgba(71, 180, 0, 0.3);
    background: #FFFFFF;
}

.category-menu__icon-inner {
    width: 72px;
    height: 72px;
    background-size: cover;
    background-position: center;
    background-color: #D9D9D9;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category-menu__item:hover .category-menu__icon-inner {
    transform: scale(1.05);
}

.category-menu__item:nth-child(1) .category-menu__icon-inner {
    background-image: url('images/category-men.png');
}

.category-menu__item:nth-child(2) .category-menu__icon-inner {
    background-image: url('images/category-women.png');
}

.category-menu__item:nth-child(3) .category-menu__icon-inner {
    background-image: url('images/category-unisex.png');
}

.category-menu__item:nth-child(4) .category-menu__icon-inner {
    background-image: url('images/category-accessories.png');
}

.category-menu__item:nth-child(5) .category-menu__icon-inner {
    background-image: url('images/category-kids.png');
}

.category-menu__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1em;
    color: #000000;
    text-align: center;
    width: auto;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.category-menu__item:hover .category-menu__text {
    color: #47B400;
    font-weight: 700;
}

/* Section */
.section {
    width: 100%;
    padding: 80px 0;
    margin-bottom: 0;
}

.section__container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.219;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}

.section__title--small {
    font-size: 19px;
    text-align: left;
    margin-bottom: 52px;
}

.section__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #504E4A;
    margin-bottom: 60px;
    text-align: center;
}

.section__grid {
    display: grid;
    gap: 39px;
}

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

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

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

.section__grid--popular {
    grid-template-columns: repeat(4, 1fr);
    gap: 39.17px;
}

/* Top Models */
.section--top-models {
    padding-top: 80px;
}

.card--top-model {
    position: relative;
    width: 100%;
    max-width: 296px;
    height: 602.28px;
    overflow: hidden;
    margin: 0 auto;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.card--top-model:hover {
    transform: translateY(-5px);
}

.card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.card--top-model:hover .card__image {
    transform: scale(1.1);
}

.card--top-model:nth-child(1) .card__image {
    background-image: url('images/top-model-1.png');
}

.card--top-model:nth-child(2) .card__image {
    background-image: url('images/top-model-2.png');
}

.card--top-model:nth-child(3) .card__image {
    background-image: url('images/top-model-3.png');
}

.card--top-model:nth-child(4) .card__image {
    background-image: url('images/top-model-4.png');
}

.card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
}

.card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.219;
    color: #FFFFFF;
    margin-bottom: 20.15px;
}

.card__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.474;
    color: #FFFFFF;
}

/* Product Card */
.section--sale {
    padding-top: 80px;
}

.section--new {
    padding-top: 80px;
}

.product-card {
    position: relative;
    width: 100%;
    max-width: 296px;
    height: 572.16px;
    background: transparent;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.product-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 401.52px;
    flex-shrink: 0;
    overflow: visible;
    background: #FFFFFF;
}

.product-card__tag {
    position: absolute;
    top: 15.06px;
    left: 15px;
    width: 54px;
    height: 28.11px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.219;
    color: #FFFFFF;
}

.product-card__tag--sale {
    background: #47B400;
}

.product-card__tag--new {
    background: #B7E600;
    color: #FFFFFF;
}

.product-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    box-shadow: 0px 20px 80px rgba(193, 199, 212, 0.7);
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 28.1px 31px 0;
    background: transparent;
}

.section--sale .product-card:nth-child(1) .product-card__image-wrapper .product-card__image,
.section--new .product-card:nth-child(1) .product-card__image-wrapper .product-card__image {
    background-image: url('images/product-1.png');
}

.section--sale .product-card:nth-child(2) .product-card__image-wrapper .product-card__image,
.section--new .product-card:nth-child(2) .product-card__image-wrapper .product-card__image {
    background-image: url('images/product-2.png');
}

.section--sale .product-card:nth-child(3) .product-card__image-wrapper .product-card__image,
.section--new .product-card:nth-child(3) .product-card__image-wrapper .product-card__image {
    background-image: url('images/product-3.png');
}

.section--sale .product-card:nth-child(4) .product-card__image-wrapper .product-card__image,
.section--new .product-card:nth-child(4) .product-card__image-wrapper .product-card__image {
    background-image: url('images/product-4.png');
}

.product-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.219;
    color: #000000;
    margin: 0;
    text-align: center;
}

.product-card__price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.219;
    color: #504E4A;
    text-align: center;
    margin: 0;
}

.product-card__button {
    width: 234px;
    height: 40.15px;
    margin: 0;
    display: block;
    font-size: 17px;
    padding: 10px;
    text-align: center;
}

/* Banner */
.section--banner {
    padding: 80px 0;
}

.banner {
    max-width: 1308px;
    width: 100%;
    height: 411.56px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0px 20px 80px rgba(193, 199, 212, 0.7);
}

.banner__bg {
    display: flex;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.banner__image {
    width: 100%;
    height: 100%;
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.banner__overlay {
    width: 1300px;
    height: 408.54px;
    background: rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
    margin-left: 8px;
    margin-top: 0;
    align-self: flex-start;
}

.banner__container {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    padding: 29.11px 0 0 113px;
    gap: 164px;
    margin-top: -411.56px;
}

.banner__left {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.banner__discount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 223px;
    line-height: 1.219;
    color: #FFFFFF;
    margin: 0;
    width: 507px;
    height: 273.03px;
}

.banner__note {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.219;
    color: #FFFFFF;
    margin: 0;
    width: 473px;
    margin-top: -14.15px;
    margin-left: 20px;
}

.banner__right {
    display: flex;
    flex-direction: column;
    gap: 30.3px;
    align-items: flex-start;
    padding-top: 65.25px;
    padding-right: 30px;
}

.banner__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.219;
    color: #FFFFFF;
    margin: 0;
    width: 495px;
}

.banner__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #FFFFFF;
    margin: 0;
    width: 485px;
}

.banner__button {
    width: 300px;
    height: 60.23px;
}

/* Testimonials */
.section--testimonials {
    padding-top: 80px;
}

.testimonial-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    box-shadow: 0px 20px 80px rgba(193, 199, 212, 0.7);
    background: #FFFFFF;
    padding: 44.17px 87px 44.05px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.testimonial-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 1;
}

.testimonial-card__avatar {
    width: 98px;
    height: 98.37px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    margin-bottom: 42px;
}

.testimonial-card:nth-child(1) .testimonial-card__avatar {
    background-image: url('images/testimonial-1.png');
}

.testimonial-card:nth-child(2) .testimonial-card__avatar {
    background-image: url('images/testimonial-2.png');
}

.testimonial-card:nth-child(3) .testimonial-card__avatar {
    background-image: url('images/testimonial-3.png');
}

.testimonial-card__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #000000;
    text-align: center;
    margin-bottom: 42.24px;
    position: relative;
    z-index: 2;
}

.testimonial-card__author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.219;
    color: #47B400;
    position: relative;
    z-index: 2;
}

/* Popular */
.section--popular {
    padding-top: 80px;
    background: #000000;
    padding-bottom: 80px;
}

.popular-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 60px;
    padding: 10px;
}

.popular-card__image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.popular-card:nth-child(1) .popular-card__image {
    background-image: url('images/popular-1.png');
}

.popular-card:nth-child(2) .popular-card__image {
    background-image: url('images/popular-2.png');
}

.popular-card:nth-child(3) .popular-card__image {
    background-image: url('images/popular-3.png');
}

.popular-card:nth-child(4) .popular-card__image {
    background-image: url('images/popular-4.png');
}

.popular-card__content {
    flex: 1;
}

.popular-card__brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.219;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.popular-card__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.219;
    color: #FFFFFF;
}

/* Footer */
.footer {
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.footer__popular-section {
    width: 100%;
    min-height: 192px;
    background: #000000 url('images/footer_bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}

.footer__popular-bg {
    width: 100%;
    min-height: 192px;
    background-image: url('images/footer-lines.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    flex-shrink: 0;
    margin-top: -192px;
}

.footer__popular-container {
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 40px 202.5px;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.footer__main {
    width: 100%;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

.footer__container {
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 0;
    display: flex;
    flex-direction: column;
}

.footer__popular-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.219;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 40px;
}

.footer__popular-cards {
    display: flex;
    gap: 67.17px;
    flex-wrap: nowrap;
}

.footer__popular-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: auto;
    min-height: 60px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__popular-card:hover {
    opacity: 0.8;
}

.footer__popular-card-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

.footer__popular-cards .footer__popular-card:nth-child(1) .footer__popular-card-image {
    background-image: url('images/popular-1.png');
}

.footer__popular-cards .footer__popular-card:nth-child(2) .footer__popular-card-image {
    background-image: url('images/popular-2.png');
}

.footer__popular-cards .footer__popular-card:nth-child(3) .footer__popular-card-image {
    background-image: url('images/popular-3.png');
}

.footer__popular-cards .footer__popular-card:nth-child(4) .footer__popular-card-image {
    background-image: url('images/popular-4.png');
}

.footer__popular-card-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer__popular-card-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.219;
    color: #FFFFFF;
    margin: 0;
}

.footer__popular-card-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.219;
    color: #FFFFFF;
    margin: 0;
    display: none;
}

.footer__columns {
    display: flex;
    gap: 97px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

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

.footer__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.219;
    color: #000000;
    margin-bottom: 42px;
    margin-top: 0;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.footer__item {
    margin-bottom: 30px;
}

.footer__item:last-child {
    margin-bottom: 0;
}

.footer__link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.219;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__link:hover {
    color: #47B400;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.footer__contact-item:first-child {
    margin-bottom: 21px;
}

.footer__contact-item:nth-child(2) {
    margin-bottom: 30px;
}

.footer__contact-item:nth-child(3) {
    margin-bottom: 26px;
}

.footer__contact-item:last-child {
    margin-bottom: 0;
}

.footer__icon {
    flex-shrink: 0;
    fill: #000000;
}

.footer__icon--clock {
    width: 27px;
    height: 27px;
}

.footer__icon--location {
    width: 20px;
    height: 24px;
}

.footer__icon--email {
    width: 24px;
    height: 18px;
}

.footer__icon--phone {
    width: 24px;
    height: 24px;
}

.footer__contact-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.219;
    color: #000000;
    padding-top: 2px;
}

.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    padding: 60px 20px 44px;
    max-width: 1700px;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer__copyright,
.footer__developer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.219;
    color: rgba(0, 0, 0, 0.35);
    margin: 0;
}

/* Responsive */
@media (max-width: 1899px) {
    .hero__content {
        max-width: 817px;
        margin-left: max(0px, calc((100% - 1300px) / 2));
    }
}

@media (min-width: 1025px) {
    .hero__container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero__cards {
        width: 1300px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1024px) {
    .hero__container {
        padding-left: 10%;
        padding-right: 10%;
    }
    
    .section {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .footer__container {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 1440px) {
    .section__grid--top-models,
    .section__grid--products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section__grid--testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner__content {
        padding-left: 50%;
    }
    
    .banner__discount {
        font-size: 150px;
    }
}

@media (max-width: 1440px) {
    .menu {
        margin-left: 0;
        justify-content: center;
    }
    
    .header__top-container {
        padding: 50px 20px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .section__grid--top-models,
    .section__grid--products,
    .section__grid--popular {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


@media (max-width: 1024px) {
    .hero__cards {
        width: 100%;
        padding: 0 20px;
        min-height: 284px;
    }
    
    .hero__cards-bg {
        height: 284px;
    }
    
    .hero__card--left {
        width: 50%;
        flex: 1;
        padding: 60px 20px 0 20px;
    }
    
    .hero__card--right {
        width: 50%;
        flex: 1;
    }
    
    .hero__card-image {
        width: 100%;
        height: 100%;
        min-height: 284px;
    }
    
    .hero__card-title {
        width: 100%;
        max-width: 100%;
        font-size: 32px;
    }
    
    .hero__card-text {
        width: 100%;
        max-width: 100%;
        font-size: 15px;
    }
    
    .hero__card-note {
        width: 100%;
        max-width: 100%;
    }
    
    .hero__container {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .banner__container {
        gap: 80px;
    }
    
    .footer__popular-container {
        padding-left: 50px;
    }
    
    .footer__columns {
        padding-left: 50px;
    }
}

/* Mobile and Tablet Menu */
@media (max-width: 992px) {
    .header__top {
        position: relative;
    }
    
    .header__top-container {
        position: relative;
    }
    
    .header__burger {
        display: flex !important;
        position: absolute !important;
        right: 20px !important;
        top: 20px !important;
        z-index: 1002 !important;
    }
    
    .header__burger-line {
        background: #000000 !important;
    }
    
    .header__bottom {
        display: none;
    }
    
    .header__container {
        justify-content: flex-end;
    }
    
    
    .header__bottom {
        display: block;
        position: static;
        height: auto;
        background: transparent;
    }
    
    .header__container {
        display: block;
    }
    
    .header__menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .header__menu--active {
        transform: translateX(0);
    }
    
    .menu__item {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .menu__item--dropdown {
        gap: 0;
    }

    .menu__dropdown-header {
        width: 100%;
        justify-content: space-between;
    }

    .menu__dropdown-link {
        width: 100%;
        white-space: normal;
		font-size: 16px;
    }

    .menu__dropdown-toggle {
        width: 32px;
        height: 32px;
    }

    .menu__submenu {
        position: static;
        padding: 0;
        margin-top: 0;
        border: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        width: 100%;
    }

    .menu__item--dropdown.menu__item--open .menu__submenu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        margin-top: 15px;
        pointer-events: auto;
    }

    .menu__submenu-link {
        width: 100%;
        padding: 4px 0;
        white-space: normal;
    }
    
    .header__container::after {
        display: none;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .section__title {
        font-size: 28px;
    }
    
    .hero__container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .banner__container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .banner__left {
        padding-left: 0;
    }
    
    .banner__right {
        padding-left: 0;
    }
    
    .hero__cards {
        gap: 20px;
    }
    
    .category-menu {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .category-menu__wrapper {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .category-menu__container {
        padding: 0 20px;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
}

@media (max-width: 767px) {
    .section__grid--top-models,
    .section__grid--products,
    .section__grid--testimonials,
    .section__grid--popular {
        grid-template-columns: 1fr;
    }
    
    .hero__slide {
        background-position: 994px;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .hero__cards {
        flex-direction: column;
        width: 100%;
        min-height: auto;
        padding-bottom: 20px;
    }
    
    .hero__cards-bg {
        height: 150px;
    }
    
    .hero__card--right {
        width: 100%;
        min-height: 150px;
        justify-content: center;
    }
    
    .hero__card-image {
        width: 100%;
        max-width: 100%;
        height: 150px;
    }
    
    .hero__card-button-wrapper {
        width: 100%;
        max-width: 217px;
        margin-top: 20px;
    }
    
    .hero__card--left {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        gap: 20px;
    }
    
    .hero__card-title {
        width: 100%;
        font-size: 28px;
    }
    
    .hero__card-text,
    .hero__card-note {
        width: 100%;
        font-size: 14px;
    }
    
    .banner {
        height: auto;
        min-height: 400px;
        position: relative;
    }
    
    .banner__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 400px;
    }
    
    .banner__image {
        display: block;
        min-height: 400px;
    }
    
    .banner__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    
    .banner__container {
        position: relative;
        z-index: 2;
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
        margin-top: 0;
    }
    
    .banner__discount,
    .banner__note,
    .banner__title,
    .banner__text {
        color: #FFFFFF !important;
    }
    
    .banner__left {
        width: 100%;
        position: static;
    }
    
    .banner__right {
        width: 100%;
        position: static;
        padding-top: 0;
    }
    
    .banner__note {
        position: static;
        margin-top: 20px;
        margin-left: 0;
    }
    
    .footer__popular-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer__popular-title {
        font-size: 24px;
    }
    
    .footer__popular-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer__columns {
        flex-direction: column;
        padding-left: 20px;
        gap: 40px;
    }
    
    .banner__discount {
        font-size: 80px;
        width: auto;
        height: auto;
    }
    
    .banner__right {
        padding-top: 0;
        padding-right: 0;
    }
    
    .banner__title {
        font-size: 28px;
        width: 100%;
    }
    
    .banner__text {
        font-size: 15px;
        width: 100%;
    }
    
    .banner__note {
        position: static;
        margin-top: 20px;
        margin-left: 0;
        width: 100%;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__popular-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer__columns {
        padding-left: 20px;
        flex-direction: column;
        gap: 40px;
    }
    
    .category-menu__wrapper {
        max-width: 100% !important;
        padding: 0 !important;
        width: 100% !important;
        overflow: visible !important;
        margin: 0 !important;
        position: relative;
    }
    
    .category-menu__container {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 40px !important;
        padding: 0 20px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        scroll-snap-type: x proximity !important;
        scrollbar-width: none !important; /* Firefox */
        -ms-overflow-style: none !important; /* IE and Edge */
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        touch-action: pan-x !important;
        -webkit-tap-highlight-color: transparent !important;
        height: auto !important;
        position: relative !important;
        display: flex !important;
        padding-top: 20px !important;
    }
    
    .category-menu__container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .category-menu__item {
        width: 80px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        flex-basis: 80px !important;
        scroll-snap-align: start !important;
        touch-action: manipulation !important;
        min-width: 80px !important;
        max-width: 80px !important;
        gap: 8px !important;
    }
    
    .category-menu__icon {
        width: 90px;
        height: 90px;
    }
    
    .category-menu__icon-inner {
        width: 80px;
        height: 80px;
    }
    
    .category-menu__text {
        font-size: 12px;
    }
    
    /* Показываем градиенты на мобильных */
    .category-menu__gradient-left,
    .category-menu__gradient-right {
        display: block;
        height: 100%;
        min-height: 120px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section__container {
        padding: 0 20px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .header__top-container {
        padding: 15px 20px;
    }
    
    .header__social {
        gap: 15px;
    }
    
    .header__actions {
        gap: 15px;
    }
    
    .header__logo-link {
        font-size: 18px;
        width: auto;
    }
    
    .hero__container {
        padding: 180px 5% 0;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card__text {
        font-size: 14px;
    }
    
    .testimonial-card__author {
        font-size: 14px;
    }
    
    .popular-card {
        flex-direction: column;
        text-align: center;
    }
    
    .popular-card__image {
        margin: 0 auto;
    }
    
    .card--top-model {
        width: 100%;
        max-width: 100%;
    }
    
    .card__image {
        height: 100%;
    }
    
    .section__subtitle {
        font-size: 14px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer__popular-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer__popular-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }
    
    .hero__card-title {
        font-size: 24px;
    }
    
    .section__title {
        font-size: 24px;
    }
    
    .banner__discount {
        font-size: 60px;
    }
    
    .banner__title {
        font-size: 24px;
    }
    
    .footer__popular-title {
        font-size: 18px;
    }
    
    .footer__title {
        font-size: 14px;
    }
    
    .header__top {
        height: auto;
        min-height: 60px;
        position: relative;
    }
    
    .header__burger {
        display: flex !important;
        position: absolute !important;
        right: 20px !important;
        top: 20px !important;
        z-index: 1001 !important;
    }
    
    .header__logo {
        position: static;
        transform: none;
    }
    
    .header__top-container {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        padding-top: 60px;
    }
    
    .header__social {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .header__actions {
        order: 2;
    }
    
    .banner__container {
        padding: 30px 15px;
        margin-top: 0;
    }
    
    .footer__popular-container {
        padding: 30px 15px;
    }
    
    .footer__columns {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* About Page */
.about-hero {
    width: 100%;
    height: 554px;
    position: relative;
    overflow: hidden;
}

.about-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.about-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 211px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
}

.about-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.219;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.about-hero__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #E9E9ED;
    max-width: 586px;
    text-align: center;
}

/* Features Section */
.section--features {
    padding: 100px 0 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 65px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    max-width: 256px;
    margin: 0 auto;
}

.feature-card__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.219;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 0;
    max-width: 256px;
    text-align: center;
    width: 100%;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #000000;
    text-align: center;
    margin: 0;
    max-width: 256px;
}

/* New Arrivals Section */
.section--new-arrivals {
    padding: 0;
}

.section--new-arrivals .section__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 0;
}

.new-arrivals {
    display: flex;
    align-items: flex-start;
    gap: 42px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.new-arrivals__content {
    flex: 0 0 643px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 643px;
}

.new-arrivals__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.219;
    color: #000000;
    margin-bottom: 49px;
    margin-top: 0;
    width: 585px;
}

.new-arrivals__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.411764705882353;
    color: #504E4A;
    margin-bottom: 48px;
    margin-top: 0;
    width: 643px;
}

.new-arrivals__button {
    width: 200px;
    height: 61px;
    margin-top: 0;
    align-self: flex-start;
}

.new-arrivals__image {
    width: 615px;
    height: 352px;
    flex-shrink: 0;
    background-image: url('images/hero-card.png');
    background-size: cover;
    background-position: center;
    border-radius: 0;
}

/* Testimonials in About Page */
.testimonials-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 0;
}

.testimonials-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.219;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #504E4A;
    text-align: center;
    margin-bottom: 60px;
    width: 156px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    justify-items: center;
}

.testimonials-grid .testimonial-card {
    width: 420px;
    height: 337.27px;
    margin: 0;
}

.testimonial-card:nth-child(1) .testimonial-card__avatar {
    background-image: url('images/testimonial-1.png');
}

.testimonial-card:nth-child(2) .testimonial-card__avatar {
    background-image: url('images/testimonial-2.png');
}

.testimonial-card:nth-child(3) .testimonial-card__avatar {
    background-image: url('images/testimonial-3.png');
}

/* Responsive for About Page */
@media (max-width: 1440px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 20px;
    }
    
    .section--new-arrivals .section__container {
        padding: 80px 20px 0;
    }
    
    .new-arrivals {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .new-arrivals__content {
        flex: 1;
        width: 100%;
        max-width: 643px;
    }
    
    .new-arrivals__title {
        width: 100%;
        max-width: 585px;
    }
    
    .new-arrivals__text {
        width: 100%;
        max-width: 643px;
    }
    
    .new-arrivals__image {
        width: 100%;
        max-width: 615px;
    }
    
    .testimonials-wrapper {
        padding-top: 0;
    }
    
    .testimonials-title {
        width: 100%;
        max-width: 660px;
    }
    
    .testimonials-subtitle {
        width: 100%;
        max-width: 156px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid .testimonial-card {
        width: 100%;
        max-width: 420px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        height: 400px;
    }
    
    .about-hero__title {
        font-size: 36px;
    }
    
    .about-hero__text {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .section--new-arrivals .section__container {
        padding: 60px 20px 0;
    }
    
    .new-arrivals {
        margin-bottom: 40px;
    }
    
    .new-arrivals__title {
        font-size: 28px;
        width: 100%;
    }
    
    .new-arrivals__text {
        font-size: 15px;
        width: 100%;
    }
    
    .new-arrivals__image {
        height: 250px;
    }
    
    .testimonials-title {
        font-size: 28px;
        width: 100%;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
        width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .testimonial-card {
        width: 100%;
        max-width: 420px;
    }
}

/* Contact Page */
.contact-hero {
    width: 100%;
    height: 554px;
    position: relative;
    overflow: hidden;
}

.contact-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/contcts_hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.contact-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 211px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
}

.contact-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.219;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.contact-hero__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #E9E9ED;
    max-width: 425px;
    text-align: center;
}

/* Contact Section */
.section--contact {
    padding: 80px 0;
}

.contact-wrapper {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 109px;
    align-items: stretch;
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: start;
    width: 100%;
    max-width: 1319px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}

.contact-card__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
}

.contact-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
}

.contact-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.219;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: center;
    width: 100%;
}

.contact-card__content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
    align-items: center;
}

.contact-card__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #000000;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
}

.contact-card--messengers .contact-card__text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
}

.contact-card--messengers .contact-card__text span:first-child {
    flex-shrink: 0;
}

.contact-card--messengers .contact-card__text span:last-child {
    text-align: right;
    flex: 1;
}


/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 627px 1fr;
    width: 100%;
    max-width: 1319px;
    height: 701px;
    gap: 0;
    margin: 0 auto;
    overflow: hidden;
}

.contact-form__bg {
    width: 100%;
    height: 100%;
    background-image: url('images/contact_form.png');
    background-size: cover;
    background-position: center;
    grid-column: 1;
    grid-row: 1;
}

.contact-form {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    padding: 40px 30px 0 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    grid-column: 2;
    grid-row: 1;
    gap: 20px;
    overflow: hidden;
    min-width: 0;
}

.contact-form__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.219;
    color: #000000;
    margin: 0;
    width: 100%;
    height: 30px;
    flex-shrink: 0;
    padding-top: 0;
    margin-top: 0;
    box-sizing: border-box;
    min-width: 0;
}

.contact-form__description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #000000;
    margin: 0;
    width: 100%;
    height: 21px;
    flex-shrink: 0;
    margin-top: 0;
    box-sizing: border-box;
    min-width: 0;
}

.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.contact-form__field--name {
    width: 100%;
    height: 74px;
    flex-shrink: 0;
}

.contact-form__field--email {
    width: 100%;
    height: 74px;
    flex-shrink: 0;
}

.contact-form__field--subject {
    width: 100%;
    height: 74px;
    flex-shrink: 0;
}

.contact-form__field--textarea {
    width: 100%;
    height: 149px;
    flex-shrink: 0;
}

.contact-form__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.219;
    color: #000000;
    margin: 0 0 8px 0;
    height: 22px;
}

.contact-form__field--name .contact-form__label {
    width: 111px;
}

.contact-form__field--email .contact-form__label {
    width: 113px;
}

.contact-form__field--subject .contact-form__label {
    width: 61px;
}

.contact-form__field--textarea .contact-form__label {
    width: 128px;
}

.contact-form__input,
.contact-form__textarea {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #000000;
    border: 2px solid #47B400;
    background: rgba(255, 255, 255, 0.5);
    padding: 0 15px;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
    opacity: 0.5;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    opacity: 1;
}

.contact-form__field--name .contact-form__input {
    width: 100%;
    height: 44px;
    margin-top: 8px;
}

.contact-form__field--email .contact-form__input,
.contact-form__field--subject .contact-form__input {
    width: 100%;
    height: 44px;
    margin-top: 8px;
}

.contact-form__textarea {
    width: 100%;
    height: 119px;
    resize: none;
    padding: 12px 15px;
    margin-top: 8px;
}


.contact-form__submit {
    width: auto;
    min-width: 90px;
    height: 40px;
    margin-top: 0;
    margin-left: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.219;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive for Contact Page */
@media (max-width: 1440px) {
    .contact-wrapper {
        padding: 0 20px;
    }
    
    .contact-content {
        gap: 60px;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .contact-card {
        width: 100%;
    }
    
    .contact-form-wrapper {
        width: 100%;
        max-width: 1319px;
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .contact-form__title,
    .contact-form__description,
    .contact-form__form {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form__field--name,
    .contact-form__field--email,
    .contact-form__field--subject,
    .contact-form__field--textarea {
        width: 100%;
    }
    
    .contact-form__field--name .contact-form__input,
    .contact-form__field--email .contact-form__input,
    .contact-form__field--subject .contact-form__input,
    .contact-form__textarea {
        width: 100%;
    }
    
    .contact-form__submit {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        height: 400px;
    }
    
    .contact-hero__title {
        font-size: 36px;
    }
    
    .contact-hero__text {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        width: 100%;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        width: 100%;
        height: auto;
    }
    
    .contact-form__bg {
        display: none;
    }
    
    .contact-form {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }
    
    .contact-form__title {
        font-size: 20px;
        width: 100%;
    }
    
    .contact-form__description {
        font-size: 15px;
        width: 100%;
    }
    
    .contact-form__form {
        width: 100%;
    }
    
    .contact-form__field--name,
    .contact-form__field--email,
    .contact-form__field--subject,
    .contact-form__field--textarea {
        width: 100%;
    }
    
    .contact-form__field--name .contact-form__input,
    .contact-form__field--email .contact-form__input,
    .contact-form__field--subject .contact-form__input,
    .contact-form__textarea {
        width: 100%;
    }
    
    .contact-form__label {
        font-size: 16px;
    }
    
    .contact-form__input,
    .contact-form__textarea {
        font-size: 15px;
    }
    
    .contact-form__submit {
        margin-left: 0;
    }
}

/* Delivery Page */
.delivery-hero {
    width: 100%;
    height: 554px;
    position: relative;
    overflow: hidden;
}

.delivery-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/delivery_hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.delivery-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.4;
    z-index: 2;
}

.delivery-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.delivery-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.219;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.delivery-hero__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #E9E9ED;
    max-width: 586px;
    text-align: center;
}

/* Delivery Section */
.section--delivery {
    padding: 150px 0 80px;
}

.delivery-content {
    max-width: 1279px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 51px;
}

.delivery-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.delivery-block__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.219;
    color: #000000;
    margin: 0;
}

.delivery-block__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.delivery-block__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.412;
    color: #504E4A;
    margin: 0 0 20px 0;
}

.delivery-block__text:last-child {
    margin-bottom: 0;
}

.delivery-block__text strong {
    font-weight: 700;
}

/* Responsive for Delivery Page */
@media (max-width: 1440px) {
    .section--delivery {
        padding: 100px 20px 60px;
    }
    
    .delivery-content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .delivery-hero {
        height: 400px;
    }
    
    .delivery-hero__title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .delivery-hero__text {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .section--delivery {
        padding: 60px 20px 40px;
    }
    
    .delivery-block__title {
        font-size: 28px;
    }
    
    .delivery-block__text {
        font-size: 15px;
    }
    
    .delivery-content {
        gap: 40px;
    }
    
    .delivery-block {
        gap: 20px;
    }
}

/* WooCommerce Single Product Card */
.single-product-card {
    width: 100%;
    padding: 50px 0;
}

.single-product-card__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 200px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.single-product-card__images {
    flex: 0 0 645px;
    width: 645px;
    height: 860px;
    position: relative;
}

.single-product-card__sale-badge {
    position: absolute;
    top: 16px;
    left: 15px;
    z-index: 10;
    background: #47B400;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.219;
    padding: 6px 10.75px;
    border-radius: 0;
    text-transform: uppercase;
}

.woocommerce span.onsale {
    display: none;
}

/* WooCommerce Product Gallery */
.woocommerce-product-gallery {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.woocommerce-product-gallery__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.woocommerce-product-gallery__image {
    width: 100%;
    height: 100%;
    position: relative;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Flexslider viewport для WooCommerce */
.woocommerce-product-gallery .flex-viewport {
    width: 100% !important;
    height: 860px !important;
}

/* Zoom image aspect ratio */
.zoomImg {
    width: 645px !important;
    height: 860px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
}

/* Дополнительные правила для обеспечения правильных размеров */
.single-product-card__images .woocommerce-product-gallery {
    max-width: 645px;
    max-height: 860px;
}

.single-product-card__images .woocommerce-product-gallery__image > a,
.single-product-card__images .woocommerce-product-gallery__image > img {
    display: block;
    width: 100%;
    height: 100%;
}

.woocommerce div.product div.images {
    width: 100%;
    height: 100%;
}

.single-product-card__summary {
    flex: 1;
    max-width: 686px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.single-product-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 12px 0;
}

/* Рейтинг */
.single-product-card__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
    overflow: visible;
}

/* Все прямые дочерние элементы должны быть блочными */
.single-product-card__rating > * {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Звезды рейтинга - возвращаем отображение, но без наезжания */
.single-product-card__rating .star-rating {
    display: inline-block;
    margin: 0 12px 0 0;
    padding: 0;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    width: 5.4em;
    min-width: 5.4em;
    max-width: 5.4em;
    height: 1em;
    vertical-align: middle;
    box-sizing: border-box;
    display: none;
}

/* Пустые звезды - фон */
.single-product-card__rating .star-rating::before {
    content: "★★★★★";
    color: #E5E5E5;
    position: absolute;
    left: 0;
    top: 0;
    width: 5.4em;
    height: 1em;
    line-height: 1;
    letter-spacing: 0.1em;
    white-space: nowrap;
    display: block;
}

/* Заполненные звезды в span */
.single-product-card__rating .star-rating span {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    height: 1em;
    padding-top: 0;
    width: 5.4em;
    max-width: 5.4em;
    box-sizing: border-box;
}

.single-product-card__rating .star-rating span::before {
    content: "★★★★★";
    color: #F5B423;
    position: absolute;
    left: 0;
    top: 0;
    height: 1em;
    width: 5.4em;
    line-height: 1;
    letter-spacing: 0.1em;
    white-space: nowrap;
    display: block;
}

/* Элемент с классом rating - заполненные звезды */
.single-product-card__rating .rating {
    display: inline-block;
    margin: 0 12px 0 0;
    padding: 0;
    font-size: 16px;
    line-height: 1;
    position: relative;
    overflow: hidden;
    width: 5.4em;
    min-width: 5.4em;
    max-width: 5.4em;
    height: 1em;
    vertical-align: middle;
    box-sizing: border-box;
    flex-shrink: 0;
}

.single-product-card__rating .rating::before {
    content: "★★★★★";
    color: #F5B423;
    position: absolute;
    left: 0;
    top: 0;
    width: 5.4em;
    height: 1em;
    line-height: 1;
    letter-spacing: 0.1em;
    white-space: nowrap;
    display: block;
}

/* Если rating внутри star-rating */
.single-product-card__rating .star-rating .rating {
    position: absolute;
    left: 0;
    top: 0;
    width: 5.4em;
    min-width: 5.4em;
    max-width: 5.4em;
    height: 1em;
    margin: 0;
}

.single-product-card__reviews-count {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    white-space: nowrap;
}

.single-product-card__reviews-count:hover {
    color: #47B400;
    text-decoration: underline;
}

/* Цена */
.single-product-card__summary .price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
}

.single-product-card__summary .price del .woocommerce-Price-amount,
.single-product-card__summary .price del {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #999999;
    text-decoration: line-through;
}

.single-product-card__summary .price ins {
    text-decoration: none;
}

.single-product-card__summary .price ins .woocommerce-Price-amount,
.single-product-card__summary .price > .woocommerce-Price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

/* Артикул */
.single-product-card__meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}

.single-product-card__meta .sku_wrapper {
    display: block;
}

.single-product-card__meta .sku {
    color: #000000;
    font-weight: 500;
}

/* Описание */
.woocommerce-product-details__short-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 28px;
}

.woocommerce-product-details__short-description p {
    margin: 0 0 12px 0;
}

.woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}

/* Вариации товара (размер, цвет) */
.variations_form .variations {
    margin-bottom: 28px;
}

.variations_form .variations tbody {
    display: block;
}

.variations_form .variations tr {
    display: block;
    margin-bottom: 24px;
}

.variations_form .variations td, 
.variations_form .variations th {
    display: block;
    padding: 0;
    border: none;
    text-align: left;
}

.variations_form .variations .label label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    display: block;
}

.variations_form .variations .value {
    display: block;
}

/* Кастомный селектор размеров - кнопки */
/* Скрываем стандартные метки для кастомных селекторов */
.variations_form .variations tr:has(.crocs-size-selector) .label,
.variations_form .variations tr:has(.crocs-color-selector) .label {
    display: none;
}

.crocs-size-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.crocs-size-button {
    height: 44px;
    padding: 10px 12px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px !important;
}

.crocs-size-button:hover {
    border-color: #47B400;
    background: #F5FFF0;
}

.crocs-size-button.selected {
    border-color: #47B400;
    font-weight: 600;
}

.crocs-size-button.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.crocs-size-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Кастомный селектор цветов - миниатюры */
.crocs-color-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.crocs-color-button {
    width: 100px;
    aspect-ratio: 1;
    padding: 0;
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.crocs-color-button:hover {
    border-color: #47B400;
    transform: scale(1.05);
}

.crocs-color-button.selected {
    border-color: #47B400;
    border-width: 1px;
    box-shadow: 0 0 0 2px rgba(71, 180, 0, 0.2);
}

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

.crocs-color-button--text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 4px;
}

.crocs-color-button--text span {
    line-height: 1.2;
    word-break: break-word;
}

.crocs-color-button.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.crocs-color-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Скрытые стандартные select'ы */
.crocs-hidden-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Стандартный select для других атрибутов */
.variations_form .variations select {
    width: 100%;
    max-width: 400px;
    height: 48px;
    padding: 12px 16px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #000000;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.variations_form .variations select:hover,
.variations_form .variations select:focus {
    border-color: #47B400;
    outline: none;
}

/* Кнопка сброса вариации */
.variations_form .reset_variations {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: #666666;
    text-decoration: underline;
}

.variations_form .reset_variations:hover {
    color: #47B400;
}

/* Форма добавления в корзину */
.variations_form .cart,
.simple-product-form .cart {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.variations_form .quantity,
.simple-product-form .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #47B400;
    overflow: hidden;
    height: 50px;
    background: #FFFFFF;
}

/* Общие стили для всех quantity блоков */
.quantity {
    position: relative;
    display: flex;
    align-items: center;
}

.variations_form .quantity,
.simple-product-form .quantity {
    width: fit-content;
    height: 48px;
    margin-right: 50px;
}

.variations_form .quantity input[type="number"],
.simple-product-form .quantity input[type="number"] {
    width: 60px;
    height: 48px;
    border: 1px solid #47B400;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    -moz-appearance: textfield;
    appearance: textfield;
}

.variations_form .quantity input[type="number"]::-webkit-outer-spin-button,
.variations_form .quantity input[type="number"]::-webkit-inner-spin-button,
.simple-product-form .quantity input[type="number"]::-webkit-outer-spin-button,
.simple-product-form .quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.variations_form .quantity input[type="number"]:focus,
.simple-product-form .quantity input[type="number"]:focus {
    outline: none;
    border-color: #47B400;
}

.variations_form .quantity .qty-minus,
.variations_form .quantity .qty-plus,
.simple-product-form .quantity .qty-minus,
.simple-product-form .quantity .qty-plus {
    width: 45px;
    height: 48px;
    border: none;
    background: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.variations_form .quantity .qty-minus,
.simple-product-form .quantity .qty-minus {
    border-right: none;
}

.variations_form .quantity .qty-plus,
.simple-product-form .quantity .qty-plus {
    border-left: none;
}

.variations_form .quantity .qty-minus:hover,
.variations_form .quantity .qty-plus:hover,
.simple-product-form .quantity .qty-minus:hover,
.simple-product-form .quantity .qty-plus:hover {
    background: #F5F5F5;
    color: #47B400;
}

/* Кнопка В корзину */
.variations_form .single_add_to_cart_button,
.simple-product-form .single_add_to_cart_button,
.cart .single_add_to_cart_button {
    height: 50px;
    background: #47B400 !important;
    color: #FFFFFF !important;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0 32px;
    min-width: 200px;
}

.variations_form .single_add_to_cart_button:hover,
.simple-product-form .single_add_to_cart_button:hover,
.cart .single_add_to_cart_button:hover {
    background: #3D9900 !important;
}

.variations_form .single_add_to_cart_button:disabled,
.simple-product-form .single_add_to_cart_button:disabled,
.cart .single_add_to_cart_button:disabled {
    background: #CCCCCC !important;
    cursor: not-allowed;
}

/* Сообщение о выборе вариации */
.woocommerce-variation-add-to-cart-disabled {
    margin-top: 12px;
    font-size: 14px;
    color: #666666;
}

/* Вкладки описания/отзывов */
.woocommerce-tabs {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.woocommerce-tabs .tabs {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
    margin-bottom: 30px;
}

.woocommerce-tabs .tabs li {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.woocommerce-tabs .tabs li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #666666;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.woocommerce-tabs .tabs li a:hover {
    color: #000000;
}

.woocommerce-tabs .tabs li.active a {
    color: #000000;
    border-bottom-color: #47B400;
}

.woocommerce-tabs .panel {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

/* Отзывы - звезды и рейтинг */
#reviews .woocommerce-Reviews {
    margin: 0;
}

#reviews .woocommerce-Reviews-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 30px 0;
}

#reviews .comment-reply-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 30px 0 20px 0;
}

/* Список отзывов */
#reviews .commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

#reviews .commentlist .comment {
    margin: 0 0 30px 0;
    padding: 20px;
    background: #F9F9F9;
    border-radius: 8px;
    list-style: none;
}

#reviews .commentlist .comment_container {
    position: relative;
}

#reviews .comment-text {
    margin: 0;
    border: none;
    padding: 0;
}

#reviews .star-rating {
    float: right;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: sans-serif;
    font-weight: 400;
}

#reviews .star-rating::before {
    content: "★★★★★";
    color: #E5E5E5;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    letter-spacing: 0.1em;
}

#reviews .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 0;
}

#reviews .star-rating span::before {
    content: "★★★★★";
    top: 0;
    position: absolute;
    left: 0;
    color: #F5B423;
    letter-spacing: 0.1em;
}

#reviews .comment-text .meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

#reviews .comment-text .meta strong {
    font-weight: 600;
    color: #000000;
}

#reviews .comment-text .meta .woocommerce-review__dash {
    margin: 0 5px;
}

#reviews .comment-text .meta time {
    color: #666666;
}

#reviews .comment-text .description p {
    margin: 10px 0 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

/* Форма добавления отзыва */
#review_form_wrapper {
    margin-top: 40px;
}

#review_form #respond {
    margin: 0;
    border: none;
    padding: 0;
}

#review_form #respond .comment-form {
    margin: 0;
}

#review_form #respond p {
    margin: 0 0 15px 0;
}

#review_form #respond label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 5px;
}

#review_form #respond input[type="text"],
#review_form #respond input[type="email"],
#review_form #respond textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333333;
    transition: border-color 0.2s ease;
}

#review_form #respond input[type="text"]:focus,
#review_form #respond input[type="email"]:focus,
#review_form #respond textarea:focus {
    outline: none;
    border-color: #47B400;
}

#review_form #respond textarea {
    min-height: 120px;
    resize: vertical;
}

/* Рейтинг в форме отзыва */
#review_form #respond .comment-form-rating {
    margin-bottom: 20px;
}

#review_form #respond .comment-form-rating label {
    display: inline-block;
    margin-right: 10px;
}

#review_form #respond .comment-form-rating .stars {
    display: inline-block;
    position: relative;
}

#review_form #respond .comment-form-rating .stars a {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    text-decoration: none;
    position: relative;
    font-size: 1.2em;
    line-height: 1;
    text-indent: -9999px;
    overflow: hidden;
}

#review_form #respond .comment-form-rating .stars a::before {
    content: "★";
    font-family: sans-serif;
    color: #E5E5E5;
    transition: color 0.2s ease;
    position: absolute;
    left: 0;
    top: 0;
    text-indent: 0;
}

#review_form #respond .comment-form-rating .stars a.active::before {
    color: #F5B423;
}

#review_form #respond .comment-form-rating .stars.selected a.active::before,
#review_form #respond .comment-form-rating .stars.selected a.active ~ a.active::before {
    color: #F5B423;
}

#review_form #respond .comment-form-rating .stars.selected a.active ~ a:not(.active)::before {
    color: #E5E5E5;
}

#review_form #respond .form-submit {
    margin: 20px 0 0 0;
}

#review_form #respond .form-submit input[type="submit"] {
    background: #47B400;
    color: #FFFFFF;
    border: none;
    padding: 14px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

#review_form #respond .form-submit input[type="submit"]:hover {
    background: #3D9900;
}


.single-product-card__price-current {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.219;
    color: #504E4A;
}

.single-product-card__meta {
    margin-bottom: 36px;
}

.single-product-card__sku {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.203;
    color: #727174;
}

.single-product-card__sku strong {
    font-weight: 400;
}

.single-product-card__short-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #504E4A;
    margin-bottom: 33px;
}

/* Скрываем статичные блоки атрибутов без data-attribute */
.single-product-card__attribute:not([data-attribute]) {
    display: none !important;
}

.single-product-card__attribute {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #504E4A;
    margin-bottom: 16px;
}

.single-product-card__attribute strong {
    font-weight: 700;
    margin-right: 8px;
}

.single-product-card__attribute .selected-value {
    font-weight: 400;
}

/* Блоки атрибутов внутри формы вариаций */
.variations_form .value .single-product-card__attribute {
    margin-bottom: 12px;
}

.single-product-card__meta .single-product-card__attribute:last-child {
    margin-bottom: 80px;
}

/* Скрываем дублирующую цену, описание и наличие вариации */
.single_variation_wrap .single_variation .woocommerce-variation-price,
.single_variation_wrap .single_variation .woocommerce-variation-description,
.single_variation_wrap .single_variation .woocommerce-variation-availability {
    display: none !important;
}

/* Скрываем миниатюры галереи */
.woocommerce-product-gallery .flex-control-thumbs,
.woocommerce-product-gallery ol.flex-control-nav {
    display: none !important;
}

/* Всплывающая мини-корзина */
.crocs-mini-cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.crocs-mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.crocs-mini-cart-popup {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.crocs-mini-cart-overlay.active .crocs-mini-cart-popup {
    right: 0;
}

.crocs-mini-cart-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: #000000;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.crocs-mini-cart-close:hover {
    color: #47B400;
}

.crocs-mini-cart-content {
    padding: 80px 30px 30px;
    overflow-y: auto;
    height: 100%;
}

.crocs-mini-cart-content .woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px 20px 0;
    border-bottom: 1px solid #E5E5E5;
    position: relative;
}

/* Первый столбец - изображение товара */
.crocs-mini-cart-content .woocommerce-mini-cart-item .product-image-link,
.crocs-mini-cart-content .woocommerce-mini-cart-item > a:first-child {
    flex-shrink: 0;
    text-decoration: none;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Второй столбец - блок с названием и ценой */
.crocs-mini-cart-content .woocommerce-mini-cart-item .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item .product-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    line-height: 1.4;
    margin: 0;
    display: block;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item a.product-name:hover {
    color: #000000;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item .product-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #47B400;
    line-height: 1.4;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item .product-price .amount,
.crocs-mini-cart-content .woocommerce-mini-cart-item .product-price .woocommerce-Price-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #47B400;
}

/* Третий столбец - выбор количества */
.crocs-mini-cart-content .woocommerce-mini-cart-item .quantity-selector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #47B400;
    border-radius: 4px;
    padding: 8px 12px;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item .quantity-selector .qty-btn {
    background: transparent;
    border: none;
    color: #47B400;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item .quantity-selector .qty-btn:hover {
    color: #3A9100;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item .quantity-selector .qty-value {
    min-width: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 20px;
    right: 0;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    color: #999999 !important;
    text-decoration: none;
    font-size: 20px;
    grid-column: 3;
}

.crocs-mini-cart-content .woocommerce-mini-cart-item .remove:hover {
    color: #FF0000 !important;
}

.crocs-mini-cart-content .woocommerce-mini-cart__total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #47B400;
}

.crocs-mini-cart-content .woocommerce-mini-cart__total strong {
    display: none;
}

.crocs-mini-cart-content .woocommerce-mini-cart__total .amount,
.crocs-mini-cart-content .woocommerce-mini-cart__total .woocommerce-Price-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #47B400;
}

.crocs-mini-cart-content .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
}

.crocs-mini-cart-content .woocommerce-mini-cart__buttons a,
.crocs-mini-cart-content .woocommerce-mini-cart__buttons .button {
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #47B400 !important;
    color: #FFFFFF !important;
    border: none !important;
}

.crocs-mini-cart-content .woocommerce-mini-cart__buttons a:hover,
.crocs-mini-cart-content .woocommerce-mini-cart__buttons .button:hover {
    background: #3A9100 !important;
}

@media (max-width: 768px) {
    .crocs-mini-cart-popup {
        width: 100%;
        right: -100%;
    }
}

.single-product-card__add-to-cart {
    display: flex;
    align-items: center;
    gap: 50px;
}

.single-product-card__quantity-wrapper {
    flex: 0 0 130px;
}

.single-product-card__quantity-wrapper .quantity {
    position: relative;
    width: 130px;
    height: 55px;
}

.single-product-card__quantity-wrapper .quantity input[type="number"] {
    width: 100%;
    height: 100%;
    border: 1px solid #D9D9D9;
    background: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.219;
    color: #707070;
    text-align: center;
    padding: 0 40px;
    -moz-appearance: textfield;
    appearance: textfield;
}

.single-product-card__quantity-wrapper .quantity input[type="number"]::-webkit-outer-spin-button,
.single-product-card__quantity-wrapper .quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product-card__quantity-wrapper .quantity .qty-minus,
.single-product-card__quantity-wrapper .quantity .qty-plus {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 100%;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.219;
    color: #707070;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.3s ease;
    user-select: none;
}

.single-product-card__quantity-wrapper .quantity .qty-minus:hover,
.single-product-card__quantity-wrapper .quantity .qty-plus:hover {
    color: #47B400;
}

.single-product-card__quantity-wrapper .quantity .qty-minus {
    left: 0;
}

.single-product-card__quantity-wrapper .quantity .qty-plus {
    right: 0;
}

.single-product-card__add-to-cart-button {
    flex: 1;
    max-width: 470px;
    height: 55px;
    background: #47B400;
    color: #FFFFFF;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.219;
    cursor: pointer;
    transition: background 0.3s ease;
}

.single-product-card__add-to-cart-button:hover {
    background: #3a9300;
}

.single-product-card__tabs {
    max-width: 1348px;
    margin: 80px auto 0;
    padding: 0 200px;
}

.single-product-card__tabs-list {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #47B400;
    padding-bottom: 20px;
}

.single-product-card__tab-item {
    margin: 0;
    padding: 0;
}

.single-product-card__tab-item:first-child {
    margin-right: auto;
}

.single-product-card__tab-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.219;
    color: #000000;
    text-decoration: none;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.single-product-card__tab-item--active .single-product-card__tab-link {
    color: #000000;
}

.single-product-card__tab-link:hover {
    color: #47B400;
}

.single-product-card__tab-content {
    display: none;
    padding-top: 39px;
}

.single-product-card__tab-content--active {
    display: block;
}

.single-product-card__tab-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #504E4A;
    margin: 0 0 20px 0;
}

.single-product-card__tab-content p:last-child {
    margin-bottom: 0;
}

/* Звезды и отзывы во вкладках */
.single-product-card__tab-content .woocommerce-Reviews {
    margin: 0;
}

.single-product-card__tab-content .woocommerce-Reviews-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 30px 0;
}

.single-product-card__tab-content .comment-reply-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 30px 0 20px 0;
}

.single-product-card__tab-content .commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-product-card__tab-content .commentlist .comment {
    margin: 0 0 30px 0;
    padding: 20px;
    background: #F9F9F9;
    border-radius: 8px;
    list-style: none;
}

.single-product-card__tab-content .comment-text {
    margin: 0;
    border: none;
    padding: 0;
}

.single-product-card__tab-content .star-rating {
    float: right;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: sans-serif;
    font-weight: 400;
}

.single-product-card__tab-content .star-rating::before {
    content: "★★★★★";
    color: #E5E5E5;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    letter-spacing: 0.1em;
}

.single-product-card__tab-content .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 0;
}

.single-product-card__tab-content .star-rating span::before {
    content: "★★★★★";
    top: 0;
    position: absolute;
    left: 0;
    color: #F5B423;
    letter-spacing: 0.1em;
}

.single-product-card__tab-content .comment-text .meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.single-product-card__tab-content .comment-text .meta strong {
    font-weight: 600;
    color: #000000;
}

.single-product-card__tab-content .comment-text .meta .woocommerce-review__dash {
    margin: 0 5px;
}

.single-product-card__tab-content .comment-text .meta time {
    color: #666666;
}

.single-product-card__tab-content .comment-text .description p {
    margin: 10px 0 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

.single-product-card__tab-content #review_form_wrapper {
    margin-top: 40px;
}

.single-product-card__tab-content #review_form #respond {
    margin: 0;
    border: none;
    padding: 0;
}

.single-product-card__tab-content #review_form #respond .comment-form {
    margin: 0;
}

.single-product-card__tab-content #review_form #respond p {
    margin: 0 0 15px 0;
}

.single-product-card__tab-content #review_form #respond label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 5px;
}

.single-product-card__tab-content #review_form #respond input[type="text"],
.single-product-card__tab-content #review_form #respond input[type="email"],
.single-product-card__tab-content #review_form #respond textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333333;
    transition: border-color 0.2s ease;
}

.single-product-card__tab-content #review_form #respond input[type="text"]:focus,
.single-product-card__tab-content #review_form #respond input[type="email"]:focus,
.single-product-card__tab-content #review_form #respond textarea:focus {
    outline: none;
    border-color: #47B400;
}

.single-product-card__tab-content #review_form #respond textarea {
    min-height: 120px;
    resize: vertical;
}

.single-product-card__tab-content #review_form #respond .comment-form-rating {
    margin-bottom: 20px;
    display: flex;
  margin-top: 40px;
}

.single-product-card__tab-content #review_form #respond .comment-form-rating label {
    display: inline-block;
    margin-right: 10px;
}

.single-product-card__tab-content #review_form #respond .comment-form-rating .stars {
    display: inline-block;
    position: relative;
}

.single-product-card__tab-content #review_form #respond .comment-form-rating .stars a {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    text-decoration: none;
    position: relative;
    font-size: 1.2em;
    line-height: 1;
    text-indent: -9999px;
    overflow: hidden;
}

.single-product-card__tab-content #review_form #respond .comment-form-rating .stars a::before {
    content: "★";
    font-family: sans-serif;
    color: #E5E5E5;
    transition: color 0.2s ease;
    position: absolute;
    left: 0;
    top: 0;
    text-indent: 0;
}

.single-product-card__tab-content #review_form #respond .comment-form-rating .stars a.active::before {
    color: #F5B423;
}

.single-product-card__tab-content #review_form #respond .comment-form-rating .stars.selected a.active::before,
.single-product-card__tab-content #review_form #respond .comment-form-rating .stars.selected a.active ~ a.active::before {
    color: #F5B423;
}

.single-product-card__tab-content #review_form #respond .comment-form-rating .stars.selected a.active ~ a:not(.active)::before {
    color: #E5E5E5;
}

.single-product-card__tab-content #review_form #respond .form-submit {
    margin: 20px 0 0 0;
}

.single-product-card__tab-content #review_form #respond .form-submit input[type="submit"] {
    background: #47B400;
    color: #FFFFFF;
    border: none;
    padding: 14px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.single-product-card__tab-content #review_form #respond .form-submit input[type="submit"]:hover {
    background: #3D9900;
}

/* Responsive */
@media (max-width: 1440px) {
    .single-product-card__container {
        padding: 0 100px;
    }
    
    .single-product-card__tabs {
        padding: 0 100px;
    }
}

@media (max-width: 1024px) {
    .single-product-card__container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .single-product-card__images {
        flex: 1;
        width: 100%;
        height: auto;
        aspect-ratio: 645 / 860;
    }
    
    .woocommerce-product-gallery .flex-viewport {
        height: auto !important;
        aspect-ratio: 645 / 860;
    }
    
    .single-product-card__summary {
        max-width: 100%;
    }
    
    .single-product-card__tabs {
        padding: 0 20px;
    }
    
    /* Адаптив для заголовка */
    .single-product-card__title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    /* Адаптив для рейтинга */
    .single-product-card__rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    /* Адаптив для цены */
    .single-product-card__summary .price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .single-product-card__summary .price ins .woocommerce-Price-amount,
    .single-product-card__summary .price > .woocommerce-Price-amount {
        font-size: 24px;
    }
    
    .single-product-card__summary .price del .woocommerce-Price-amount,
    .single-product-card__summary .price del {
        font-size: 18px;
    }
    
    /* Адаптив для вариаций */
    .variations_form .variations select {
        max-width: 100%;
    }
    
    /* Адаптив для кастомных селекторов */
    .crocs-size-selector {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .crocs-size-button {
        height: 40px;
        font-size: 13px;
        padding: 8px 10px;
    }
    
    .crocs-color-selector {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    /* Адаптив для формы добавления в корзину */
    .variations_form .cart,
    .simple-product-form .cart {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .variations_form .quantity,
    .simple-product-form .quantity {
        width: 100%;
        justify-content: center;
    }
    
    .variations_form .single_add_to_cart_button,
    .simple-product-form .single_add_to_cart_button,
    .cart .single_add_to_cart_button {
        width: 100%;
        min-width: auto;
    }
    
    .single-product-card__quantity-wrapper {
        width: 100%;
        max-width: 130px;
    }
    
    .single-product-card__add-to-cart-button {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .single-product-card {
        padding: 30px 0;
    }
    
    
    .single-product-card__tabs-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .single-product-card__tab-item:first-child {
        margin-right: 0;
    }
}

/* Category Page Styles */
.category-hero {
    width: 100%;
    height: 554px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
}

.category-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.category-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.category-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    justify-content: center;
}

.category-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 1.219;
    color: #FFF4F4;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
}

.category-hero__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.219;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    max-width: 536px;
    text-align: left;
}

/* Category Content */
.category-content {
    width: 100%;
    max-width: 100vw;
    padding: 40px 0 20px 0;
    box-sizing: border-box;
    flex: 1 0 auto;
    position: relative;
    overflow: visible;
}

.category-content__container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    box-sizing: border-box;
    min-height: 0;
    overflow: visible;
    position: relative;
}

/* Sidebar Filters */
.category-sidebar {
    align-self: start;
    position: relative;
}

.category-sidebar.is-sticky {
    position: fixed;
    top: 20px;
    z-index: 10;
}

.category-sidebar.is-bottom {
    position: absolute;
    bottom: 0 !important;
    top: auto !important;
    left: 0;
}

.category-sidebar-placeholder {
    display: none;
    grid-column: 1;
}

.category-sidebar__inner {
    display: flex;
    flex-direction: column;
}

.category-sidebar__close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s ease;
}

.category-sidebar__close:hover {
    opacity: 0.7;
}

.category-sidebar__close-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
}

.category-sidebar__close-icon::before,
.category-sidebar__close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #000000;
    transform-origin: center;
}

.category-sidebar__close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.category-sidebar__close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.category-filter {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 0;
}
.category-filter.category-filter--open.category-filter--price {
    border-bottom: 1px solid #E5E5E5;
  }

.category-filter__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.219;
    color: #000000;
    margin: 0;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    transition: background 0.3s ease;
    user-select: none;
}

.category-filter__title:hover {
    background: #F9F9F9;
}

.category-filter__title-text {
    flex: 1;
}

.category-filter__arrow {
    width: 12px;
    height: 12px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.category-filter--open .category-filter__arrow {
    transform: rotate(-135deg);
}

.category-filter__content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #FFFFFF;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-filter--open .category-filter__content {
    max-height: 1800px;
    padding: 0 20px 20px 20px;
}

.category-filter__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-filter__item {
    margin: 0;
}

.category-filter__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    color: #666666;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.category-filter__label:hover {
    color: #000000;
}

.category-filter__label:hover .category-filter__count {
    border-color: #47B400;
}

.category-filter__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.category-filter__checkbox-custom {
    display: none;
}

.category-filter__label-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-filter__label-text::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #D9D9D9;
    border-radius: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-filter__checkbox:checked ~ .category-filter__label-text::before {
    background: #47B400;
    border-color: #47B400;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" viewBox="0 0 12 10"><path d="M1 5L4 8L11 1" stroke="white" stroke-width="2" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.category-filter__count {
    min-width: 32px;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #999999;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

/* Price Filter */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-filter__inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-filter__input {
    flex: 1;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    text-align: center;
    transition: border-color 0.3s ease;
}

.price-filter__input:focus {
    outline: none;
    border-color: #47B400;
    color: #000000;
}

.price-filter__separator {
    color: #D9D9D9;
    font-size: 16px;
    font-weight: 300;
}

.price-filter__button {
    width: 100%;
    height: 40px;
    background: #47B400;
    color: #FFFFFF;
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: none;
    /* Скрываем кнопку, т.к. фильтр цены теперь работает через AJAX автоматически */
    display: none;
}

.price-filter__button:hover {
    background: #3D9900;
}

.category-filter__reset {
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    color: #666666;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter__reset:hover {
    background: #F9F9F9;
    color: #000000;
    border-color: #47B400;
}

.category-filter--reset {
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 0;
}

.category-filter--reset .category-filter__reset {
    margin-top: 0;
}

/* Mobile Apply Button */
.category-filter--apply-mobile {
    display: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 10px;
}

.category-filter__apply-mobile {
    width: 100%;
    height: 50px;
    background: #47B400;
    color: #FFFFFF;
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.category-filter__apply-mobile:hover {
    background: #3D9900;
}

/* Products Grid */
.category-products {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-self: start;
    position: relative;
    overflow: visible;
    min-height: 0;
}

.category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
}

.category-toolbar__results {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #666666;
}

.category-toolbar__ordering {
    display: flex;
    align-items: center;
    gap: 15px;
}

.woocommerce-ordering select,
.category-toolbar__ordering select {
    height: 40px;
    padding: 0 35px 0 15px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    background: #FFFFFF url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path d="M1 1L5 5L9 1" stroke="%23000000" stroke-width="1.5" fill="none"/></svg>') no-repeat right 12px center;
    background-size: 10px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.woocommerce-ordering select:hover,
.category-toolbar__ordering select:hover,
.woocommerce-ordering select:focus,
.category-toolbar__ordering select:focus {
    border-color: #47B400;
    outline: none;
}

/* Products Loop */
.woocommerce ul.products,
ul.products,
.category-products ul.products,
.category-products .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    min-height: 0;
    grid-auto-rows: auto;
    box-sizing: border-box;
}

.woocommerce ul.products li.product,
ul.products li.product,
.category-products ul.products li.product,
.category-products .products li.product {
    position: relative;
    background: transparent;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    min-width: 0;
}

.woocommerce ul.products li.product a,
ul.products li.product a,
.category-products ul.products li.product a,
.category-products .products li.product a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Product Image Wrapper для позиционирования бейджей */
.product__image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.woocommerce ul.products li.product a img,
ul.products li.product a img,
.woocommerce ul.products li.product img,
ul.products li.product img {
    width: 100%;
    height: auto;
    aspect-ratio: 296 / 399;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    box-shadow: 0px 20px 28px rgba(193, 199, 212, 0.7);
    transition: transform 0.3s ease;
    background: #FFFFFF;
}

/* Placeholder изображения для товаров без фото */
.woocommerce ul.products li.product img.woocommerce-placeholder,
ul.products li.product img.woocommerce-placeholder {
    background: #F5F5F5;
    object-fit: contain;
    padding: 20px;
}

.woocommerce ul.products li.product:hover a img,
ul.products li.product:hover a img,
.woocommerce ul.products li.product:hover img,
ul.products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2,
.category-products ul.products li.product .woocommerce-loop-product__title,
.category-products ul.products li.product h2,
.category-products .products li.product .woocommerce-loop-product__title,
.category-products .products li.product h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.219;
    color: #000000;
    margin: 0 0 10px 0;
    height: 55px;
    max-height: 68px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    box-sizing: border-box;
}

.woocommerce ul.products li.product .price,
ul.products li.product .price,
.category-products ul.products li.product .price,
.category-products .products li.product .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.219;
    color: #504E4A;
    margin-bottom: 0;
    display: block;
    margin-top: auto;
    padding-bottom: 15px;
}

.woocommerce ul.products li.product .price del,
ul.products li.product .price del {
    color: #999999;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 10px;
}

.woocommerce ul.products li.product .price ins,
ul.products li.product .price ins {
    text-decoration: none;
    color: #47B400;
}

.woocommerce ul.products li.product .button,
ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart,
ul.products li.product .added_to_cart,
.category-products ul.products li.product .button,
.category-products .products li.product .button,
.category-products ul.products li.product .added_to_cart,
.category-products .products li.product .added_to_cart {
    width: 100%;
    max-width: 234px;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    background: #47B400;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: auto auto 0 auto;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    box-sizing: border-box;
}

.woocommerce ul.products li.product .button:hover,
ul.products li.product .button:hover,
.woocommerce ul.products li.product .added_to_cart:hover,
ul.products li.product .added_to_cart:hover,
.category-products ul.products li.product .button:hover,
.category-products .products li.product .button:hover,
.category-products ul.products li.product .added_to_cart:hover,
.category-products .products li.product .added_to_cart:hover {
    background: #3D9900;
}

/* Дополнительные селекторы для кнопок WooCommerce */
.woocommerce ul.products li.product a.button,
ul.products li.product a.button,
.woocommerce ul.products li.product button.button,
ul.products li.product button.button,
.woocommerce ul.products li.product .add_to_cart_button,
ul.products li.product .add_to_cart_button,
.category-products ul.products li.product a.button,
.category-products .products li.product a.button,
.category-products ul.products li.product button.button,
.category-products .products li.product button.button,
.category-products ul.products li.product .add_to_cart_button,
.category-products .products li.product .add_to_cart_button {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.woocommerce ul.products li.product .onsale,
ul.products li.product .onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: #47B400;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.219;
    padding: 6px 10.75px;
    border-radius: 0;
    text-transform: uppercase;
    margin: 0;
}

/* Product Tags */
.product__tags {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

/* Если есть бейдж Sale, смещаем метки вниз */
.product__image-wrapper .onsale + .product__tags {
    top: 51px; /* 15px (top) + 21px (высота Sale) + 15px (gap) */
}

.product__tag {
    display: inline-block;
    background: #47B400;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.219;
    padding: 6px 10.75px;
    border-radius: 0;
    text-transform: uppercase;
    margin: 0;
    box-shadow: none;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination,
nav.woocommerce-pagination {
    margin-top: 40px;
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 0;
    border-top: 1px solid #E5E5E5;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers,
nav.woocommerce-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.woocommerce nav.woocommerce-pagination ul li,
nav.woocommerce-pagination ul li,
.woocommerce nav.woocommerce-pagination .page-numbers li,
nav.woocommerce-pagination .page-numbers li {
    margin: 0;
    border: none;
    box-sizing: border-box;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
nav.woocommerce-pagination ul li a,
nav.woocommerce-pagination ul li span,
nav.woocommerce-pagination .page-numbers li a,
nav.woocommerce-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
nav.woocommerce-pagination ul li a:hover,
nav.woocommerce-pagination .page-numbers li a:hover {
    border-color: #47B400;
    background: #47B400;
    color: #FFFFFF;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
nav.woocommerce-pagination ul li span.current,
nav.woocommerce-pagination .page-numbers li .current {
    background: #47B400;
    border-color: #47B400;
    color: #FFFFFF;
}

/* Mobile Filters Toggle Button */
.category-filters-toggle {
    display: none;
    width: 100%;
    height: 50px;
    background: #47B400;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
    position: relative;
    z-index: 10;
    flex-direction: row;
}

.category-filters-toggle:hover {
    background: #3D9900;
}

.category-filters-toggle__icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
}

.category-filters-toggle__icon::before,
.category-filters-toggle__icon::after {
    content: '';
    position: absolute;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.category-filters-toggle__icon::before {
    width: 18px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0 -6px 0 #FFFFFF, 0 6px 0 #FFFFFF;
}

.category-sidebar--open .category-filters-toggle__icon::before {
    transform: translateY(-50%) rotate(45deg);
    box-shadow: none;
}

.category-sidebar--open .category-filters-toggle__icon::after {
    width: 18px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
}

.category-filters-toggle__text {
    display: inline-block;
}

/* Mobile Sidebar Overlay */
.category-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-sidebar-overlay--active {
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 1024px) {
    .category-sidebar {
        z-index: 1000 !important;
    }
    
    .category-sidebar-overlay {
        z-index: 999 !important;
    }
}

/* Prevent body scroll when sidebar is open on mobile */
@media (max-width: 1024px) {
    body.category-sidebar-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* Responsive for Category Page */
@media (max-width: 1440px) {
    .category-content__container {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .category-sidebar.is-sticky {
        width: 280px !important;
    }
}

@media (max-width: 1200px) {
    .woocommerce ul.products,
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }
}

@media (min-width: 1025px) {
    .category-hero__container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1899px) {
    .category-hero__container {
        max-width: 817px;
        margin-left: max(0px, calc((100% - 1300px) / 2));
    }
}

@media (max-width: 1024px) {
    body {
        margin: 0;
        padding: 0;
    }
    
    .category-hero {
        height: 400px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .category-hero__container {
        padding-left: 10%;
        padding-right: 10%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .category-hero__title {
        font-size: 36px;
        margin-bottom: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .category-hero__text {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .category-content {
        padding: 30px 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .category-content__container {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }
    
    .category-filters-toggle {
        display: flex;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .category-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 320px !important;
        max-width: 85vw;
        max-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        background: #FFFFFF;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-sidebar.is-sticky,
    .category-sidebar.is-bottom {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 320px !important;
        max-height: 100vh;
        z-index: 1000 !important;
        background: #FFFFFF;
        z-index: 1000 !important;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-sidebar__close {
        display: none;
    }
    
    .category-sidebar.category-sidebar--open,
    .category-sidebar--open {
        left: 0 !important;
    }
    
    .category-sidebar-overlay {
        display: block;
    }
    
    .category-sidebar__inner {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .category-filter {
        border-bottom: 1px solid #E5E5E5;
    }
    
    .category-filter--apply-mobile {
        display: block;
    }
    
    .category-toolbar {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .category-toolbar__results {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    html, body {
        margin: 0;
        padding: 0;
    }
    
    .category-hero {
        height: 300px;
        min-height: 300px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .category-hero__container {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .category-hero__title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .category-hero__text {
        font-size: 14px;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .category-content {
        padding: 20px 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .category-content__container {
        padding: 0 15px !important;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .category-filters-toggle {
        height: 45px;
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .category-sidebar {
        width: 100% !important;
        max-width: 100vw;
        left: -100%;
        box-sizing: border-box;
        position: fixed !important;
        z-index: 1000 !important;
        top: 0;
        max-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        background: #FFFFFF;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-sidebar.category-sidebar--open,
    .category-sidebar--open {
        left: 0 !important;
    }
    
    .category-sidebar__inner {
        padding: 15px;
        gap: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .category-filter {
        width: 100% !important;
        border-bottom: 1px solid #E5E5E5;
    }
    
    .category-filter__title {
        padding: 15px;
        font-size: 15px;
    }
    
    .category-filter__content {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 15px;
    }
    
    .category-filter--open .category-filter__content {
        padding: 0 15px 15px 15px;
    }
    
    .category-filter__label {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .price-filter {
        gap: 12px;
    }
    
    .price-filter__values {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .price-filter__slider {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .price-filter__button {
        height: 45px;
        font-size: 15px;
    }
    
    .category-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .category-toolbar__results {
        width: 100%;
        font-size: 13px;
        text-align: left;
    }
    
    .category-toolbar__ordering {
        width: 100%;
    }
    
    .woocommerce-ordering select,
    .category-toolbar__ordering select {
        width: 100%;
        height: 45px;
        font-size: 14px;
    }
    
    .woocommerce ul.products,
    ul.products,
    .category-products ul.products,
    .category-products .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product h2,
    ul.products li.product h2,
    .category-products ul.products li.product .woocommerce-loop-product__title,
    .category-products .products li.product .woocommerce-loop-product__title,
    .category-products ul.products li.product h2,
    .category-products .products li.product h2 {
        font-size: 16px;
        height: auto;
        min-height: 38px;
        max-height: 76px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 8px;
    }
    
    .woocommerce ul.products li.product .price,
    ul.products li.product .price,
    .category-products ul.products li.product .price,
    .category-products .products li.product .price {
        font-size: 17px;
        padding-bottom: 12px;
    }
    
    .woocommerce ul.products li.product a img,
    ul.products li.product a img,
    .woocommerce ul.products li.product img,
    ul.products li.product img,
    .category-products ul.products li.product a img,
    .category-products .products li.product a img,
    .category-products ul.products li.product img,
    .category-products .products li.product img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto 15px !important;
    }
    
    .woocommerce ul.products li.product .button,
    ul.products li.product .button,
    .category-products ul.products li.product .button,
    .category-products .products li.product .button {
        max-width: 100% !important;
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        font-size: 15px;
    }
    
    .woocommerce ul.products li.product .onsale,
    ul.products li.product .onsale {
        top: 10px;
        left: 10px;
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .woocommerce nav.woocommerce-pagination,
    nav.woocommerce-pagination {
        margin-top: 30px;
    }
    
    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span,
    nav.woocommerce-pagination ul li a,
    nav.woocommerce-pagination ul li span {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .category-hero {
        height: 250px;
        min-height: 250px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .category-hero__title {
        font-size: 24px;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .category-hero__text {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .category-content {
        padding: 15px 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .category-content__container {
        padding: 0 12px !important;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .category-filters-toggle {
        height: 42px;
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .category-sidebar {
        width: 100% !important;
        max-width: 100vw;
        box-sizing: border-box;
        position: fixed !important;
        z-index: 1002 !important;
        top: 0;
        max-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        background: #FFFFFF;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-sidebar.category-sidebar--open,
    .category-sidebar--open {
        left: 0 !important;
		overflow-y: scroll;
    }
    
    .category-sidebar__inner {
        padding: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .category-filter__title {
        padding: 12px;
        font-size: 14px;
    }
    
    .category-filter__content {
        padding: 0 12px;
    }
    
    .category-filter--open .category-filter__content {
        padding: 0 12px 12px 12px;
    }
    
    .category-filter__label {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .category-filter__count {
        min-width: 28px;
        height: 22px;
        padding: 0 6px;
        font-size: 12px;
    }
    
    .price-filter__values {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .price-filter__button {
        height: 42px;
        font-size: 14px;
    }
    
    .category-toolbar {
        margin-bottom: 25px;
        padding-bottom: 12px;
        gap: 10px;
    }
    
    .category-toolbar__results {
        font-size: 12px;
    }
    
    .woocommerce-ordering select,
    .category-toolbar__ordering select {
        height: 42px;
        font-size: 13px;
    }
    
    .woocommerce ul.products,
    ul.products,
    .category-products ul.products,
    .category-products .products {
        grid-template-columns: 1fr !important;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product h2,
    ul.products li.product h2,
    .category-products ul.products li.product .woocommerce-loop-product__title,
    .category-products .products li.product .woocommerce-loop-product__title,
    .category-products ul.products li.product h2,
    .category-products .products li.product h2 {
        font-size: 15px;
        min-height: 34px;
        max-height: 68px;
        margin-bottom: 6px;
    }
    
    .woocommerce ul.products li.product .price,
    ul.products li.product .price,
    .category-products ul.products li.product .price,
    .category-products .products li.product .price {
        font-size: 16px;
        padding-bottom: 10px;
    }
    
    .woocommerce ul.products li.product a img,
    ul.products li.product a img,
    .woocommerce ul.products li.product img,
    ul.products li.product img,
    .category-products ul.products li.product a img,
    .category-products .products li.product a img,
    .category-products ul.products li.product img,
    .category-products .products li.product img {
        margin: 0 auto 12px !important;
    }
    
    .woocommerce ul.products li.product .button,
    ul.products li.product .button,
    .category-products ul.products li.product .button,
    .category-products .products li.product .button {
        height: 36px !important;
        min-height: 36px !important;
        max-height: 36px !important;
        font-size: 14px;
    }
    
    .woocommerce ul.products li.product .onsale,
    ul.products li.product .onsale {
        top: 8px;
        left: 8px;
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .woocommerce nav.woocommerce-pagination,
    nav.woocommerce-pagination {
        margin-top: 25px;
    }
    
    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span,
    nav.woocommerce-pagination ul li a,
    nav.woocommerce-pagination ul li span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        padding: 0 8px;
    }
}

/* AJAX Loading Styles */

.category-products--loading {
    opacity: 0.5;
    pointer-events: none;
}

.category-products__loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth transitions for filter changes */
.category-products .products,
.category-toolbar {
    transition: opacity 0.3s ease;
}

/* Price Range Slider Styles */
.price-filter__values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.price-filter__value {
    color: #000000;
}

.price-filter__separator {
    margin: 0 10px;
    color: #999999;
}

.price-filter__slider {
    position: relative;
    height: 1px;
    margin-bottom: 30px;
    cursor: pointer;
    padding: 10px 0;
    margin-top: -10px;
}

.price-filter__slider-track {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000000;
    border-radius: 1px;
    top: 10px;
}

.price-filter__slider-range {
    position: absolute;
    height: 1px;
    background: #47B400;
    border-radius: 1px;
    top: 10px;
    z-index: 1;
    pointer-events: none;
}

.price-filter__slider-input {
    position: absolute;
    width: 100%;
    height: 1px;
    top: 10px;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}

.price-filter__slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-filter__slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.price-filter__slider-input::-webkit-slider-thumb:active {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.price-filter__slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-filter__slider-input::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.price-filter__slider-input::-moz-range-thumb:active {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.price-filter__slider-input--max {
    z-index: 3;
}

/* Remove old price filter input styles */
.price-filter__inputs {
    display: none;
}

bdi {
    color: #504E4A;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
  }
  .woocommerce-breadcrumb {
    display: none;
  }
  .woocommerce div.product div.images.woocommerce-product-gallery {
    width: 100%;
    height: auto;
    aspect-ratio: 645 / 860;
  }
  .single_add_to_cart_button.button.alt {
    border-radius: 0px;
  }
  .woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    width: 100px;
  }

/* ============================================
   Smart Search Modal Styles
   ============================================ */

/* Prevent body scroll when modal is open */
body.search-modal-open {
    overflow: hidden;
}

/* Modal Container */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.search-modal.active {
    display: flex;
}

/* Overlay */
.search-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content */
.search-modal__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    margin-top: 60px;
    max-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.search-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid #E5E5E5;
}

.search-modal__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.search-modal__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666666;
}

.search-modal__close:hover {
    background: #F5F5F5;
    color: #000000;
}

.search-modal__close svg {
    width: 24px;
    height: 24px;
}

/* Body */
.search-modal__body {
    padding: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Search Form */
.search-modal__form {
    margin-bottom: 20px;
}

.search-modal__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-modal__search-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #999999;
    pointer-events: none;
    z-index: 1;
}

.search-modal__input {
    width: 100%;
    height: 54px;
    padding: 0 50px 0 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000000;
    background: #F8F8F8;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.search-modal__input:focus {
    outline: none;
    background: #FFFFFF;
    border-color: #47B400;
}

.search-modal__input::placeholder {
    color: #999999;
}

.search-modal__clear {
    position: absolute;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    color: #999999;
}

.search-modal__clear.visible {
    opacity: 1;
    visibility: visible;
}

.search-modal__clear:hover {
    background: #F5F5F5;
    color: #000000;
}

/* Results Container */
.search-modal__results {
    flex: 1;
    overflow-y: auto;
    margin: 0 -10px;
    padding: 0 10px;
}

.search-modal__results::-webkit-scrollbar {
    width: 8px;
}

.search-modal__results::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 10px;
}

.search-modal__results::-webkit-scrollbar-thumb {
    background: #CCCCCC;
    border-radius: 10px;
}

.search-modal__results::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

/* Placeholder */
.search-modal__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.search-modal__placeholder svg {
    margin-bottom: 20px;
}

.search-modal__placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #999999;
    margin: 0;
}

/* Message */
.search-modal__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.search-modal__message svg {
    margin-bottom: 20px;
}

.search-modal__message p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Results List */
.search-results__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.search-results__header {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    padding: 12px 16px;
    background: #F8F8F8;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* View All Icon Button in Search Input */
.search-modal__view-all-icon {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    background: #47B400;
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.search-modal__view-all-icon:hover {
    background: #3D9900;
    transform: translateY(-50%) scale(1.1);
}

.search-modal__view-all-icon svg {
    width: 20px;
    height: 20px;
}

/* Search Result Item */
.search-result__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.search-result__item:hover {
    background: #F8F8F8;
    border-color: #47B400;
}

.search-result__image {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #F5F5F5;
}

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

.search-result__badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 4px 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    background: #FF4444;
    border-radius: 4px;
    text-transform: uppercase;
}

.search-result__content {
    flex: 1;
    min-width: 0;
}

.search-result__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.search-result__sku {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #999999;
    margin-bottom: 6px;
}

.search-result__price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #47B400;
    margin-bottom: 6px;
}

.search-result__price del {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    margin-right: 8px;
}

.search-result__stock {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.search-result__stock.in-stock {
    color: #47B400;
}

.search-result__stock.out-of-stock {
    color: #FF4444;
}

.search-result__arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F5F5F5;
    color: #666666;
    transition: all 0.2s ease;
}

.search-result__item:hover .search-result__arrow {
    background: #47B400;
    color: #FFFFFF;
    transform: translateX(4px);
}

/* Loader */
.search-modal__loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    justify-content: center;
}

.search-modal__loader.visible {
    display: flex;
}

.search-modal__spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #F5F5F5;
    border-top-color: #47B400;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .search-modal {
        padding: 0;
        align-items: stretch;
    }

    .search-modal__container {
        border-radius: 0;
        margin-top: 0;
        max-height: 100vh;
        height: 100%;
    }

    .search-modal__header {
        padding: 20px;
    }

    .search-modal__title {
        font-size: 20px;
    }

    .search-modal__body {
        padding: 20px;
    }

    .search-result__item {
        padding: 12px;
        gap: 12px;
    }

    .search-result__image {
        width: 60px;
        height: 60px;
    }

    .search-result__title {
        font-size: 14px;
    }

    .search-result__price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .search-modal__input {
        font-size: 14px;
        height: 48px;
        padding: 0 45px 0 45px;
    }

    .search-result__sku {
        display: none;
    }

    .search-modal__view-all-icon {
        width: 36px;
        height: 36px;
        right: 45px;
    }
}
ul.products::before {
    display: none !important;
  }

/* ===========================
   WooCommerce My Account
   =========================== */
body.woocommerce-account,
.woocommerce-account #main,
.woocommerce-account .site-main,
.woocommerce-account .content-area,
.woocommerce-account .site-content {
    background: #f6f7fb;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.woocommerce-account .woocommerce {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    background: transparent;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
    display: none;
}

.crocs-account-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 0px;
    font-family: 'Montserrat', sans-serif;
}

.crocs-account-page,
.crocs-account-page * {
    border-radius: 0 !important;
}

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    background: #47b400;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 18px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 18px 30px rgba(71, 180, 0, 0.25);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
    background: #3a9300;
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(58, 147, 0, 0.35);
}

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:focus-visible {
    outline: 2px solid #3a9300;
    outline-offset: 3px;
}

.crocs-account-page a:not(.crocs-btn):not(.crocs-btn--primary):not(.crocs-btn--ghost):not(.crocs-btn-action):not(.crocs-btn-shop):not(.woocommerce-button):not(.button) {
    color: #030712;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(3, 7, 18, 0.15);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.crocs-account-page a:not(.crocs-btn):not(.crocs-btn--primary):not(.crocs-btn--ghost):not(.crocs-btn-action):not(.crocs-btn-shop):not(.woocommerce-button):not(.button):hover {
    color: #47b400;
    border-bottom-color: #47b400;
}

.crocs-account-page a:not(.crocs-btn):not(.crocs-btn--primary):not(.crocs-btn--ghost):not(.crocs-btn-action):not(.crocs-btn-shop):not(.woocommerce-button):not(.button):focus-visible {
    outline: none;
    border-bottom-color: #47b400;
}

.crocs-account-hero {
    background: transparent;
    border: 1px solid #47b400;
    border-radius: 40px;
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.crocs-account-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 40px;
    pointer-events: none;
}

.crocs-account-hero__text {
    position: relative;
    z-index: 1;
}

.crocs-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(71,180,0,0.1);
    color: #1f7a00;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.crocs-account-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin: 20px 0 12px;
    color: #030712;
    font-weight: 800;
}

.crocs-account-hero p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #5f6570;
}

.crocs-account-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.crocs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.crocs-btn--primary {
    background: #47b400;
    color: #fff;
    box-shadow: 0 15px 35px rgba(71,180,0,0.25);
}

.crocs-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(71,180,0,0.35);
}

.crocs-btn--ghost {
    background: transparent;
    border-color: rgba(3,7,18,0.1);
    color: #030712;
}

.crocs-btn--ghost:hover {
    border-color: #47b400;
    color: #47b400;
}

.crocs-account-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.crocs-stat-card {
    background: transparent;
    border: 1px solid #47b400;
    padding: 24px;
    border-radius: 24px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crocs-stat-card__label {
    font-size: 14px;
    color: #80879b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.crocs-stat-card__value {
    font-size: 36px;
    font-weight: 800;
    color: #030712;
}

.crocs-stat-card p {
    margin: 0;
    font-size: 14px;
    color: #5f6570;
}

.crocs-stat-card--accent {
    background: transparent;
    border: 1px solid #47b400;
    color: #000;
}

.crocs-stat-card--accent .crocs-progress-label span {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.crocs-stat-card--accent .crocs-progress-label strong {
    font-size: 20px;
    color: #000;
}

.crocs-progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 12px 0;
}

.crocs-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #84e63a, #47b400);
    border-radius: inherit;
}

.crocs-dashboard-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.crocs-quick-action {
    background: transparent;
    border: 1px solid #47b400;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.crocs-quick-action:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.crocs-quick-action__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(71,180,0,0.12);
    color: #47b400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crocs-quick-action__icon svg {
    width: 22px;
    height: 22px;
}

.crocs-quick-action__body strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.crocs-quick-action__body small {
    color: #80879b;
    font-size: 13px;
}

.crocs-dashboard-metrics {
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.crocs-dashboard-metrics li {
    background: transparent;
    border: 1px solid #47b400;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: none;
}

.crocs-dashboard-metrics .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9aa0af;
}

.crocs-dashboard-metrics strong {
    display: block;
    font-size: 20px;
    margin: 6px 0 4px;
}

.crocs-dashboard-metrics small {
    color: #80879b;
    font-size: 13px;
}

.crocs-account-wrapper {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.crocs-account-navigation {
    background: transparent;
    border: 1px solid #47b400;
    border-radius: 24px;
    padding: 18px;
    box-shadow: none;
    position: sticky;
    top: 120px;
}

.crocs-account-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crocs-account-navigation li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    color: #030712;
    transition: background 0.2s ease, color 0.2s ease;
}

.crocs-account-navigation li a:hover {
    background: rgba(71,180,0,0.08);
    color: #47b400;
}

.crocs-account-navigation li.is-active a {
border-bottom: 1px solid #47b400;
    color: #47b400;
}

.crocs-account-page .is-active a:not(.crocs-btn):not(.crocs-btn--primary):not(.crocs-btn--ghost):not(.crocs-btn-action):not(.crocs-btn-shop):not(.woocommerce-button):not(.button) {
    color: #47b400;
}


.crocs-account-nav__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(3,7,18,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crocs-account-navigation li.is-active .crocs-account-nav__icon {
    background: rgba(255,255,255,0.16);
}

.crocs-account-content {
    background: transparent;
    border: 1px solid #47b400;
    border-radius: 32px;
    padding: 40px;
    box-shadow: none;
    min-height: 520px;
}

.crocs-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.crocs-dashboard-card {
    border-radius: 24px;
    padding: 28px;
    background: transparent;
    border: 1px solid #47b400;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crocs-dashboard-card--order {
    background: transparent;
    border: 1px solid #47b400;
    color: #000;
}

.crocs-dashboard-card--order a {
    color: #000;
}

.crocs-dashboard-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crocs-dashboard-card__header h3 {
    margin: 0;
    font-size: 18px;
}

.crocs-dashboard-card__body p {
    margin: 0;
}

.crocs-dashboard-order-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.crocs-dashboard-order-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.crocs-dashboard-order-meta span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    color: rgba(255,255,255,0.6);
}

.crocs-dashboard-order-meta strong {
    display: block;
    margin-top: 6px;
    font-size: 16px;
}

.crocs-dashboard-card--loyalty {
    background: transparent;
    border: 1px solid #47b400;
    color: #000;
}

.crocs-loyalty-amount {
    font-size: 36px;
    font-weight: 700;
    margin: 12px 0;
}

.crocs-loyalty-progress {
    height: 6px;
    border-radius: 999px;
    background: rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 8px;
}

.crocs-loyalty-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #84e63a, #47b400);
}

.crocs-dashboard-card--support {
    background: transparent;
    border: 1px solid #47b400;
}

.crocs-support-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.crocs-support-actions a {
    font-weight: 600;
    color: #47b400;
    text-decoration: none;
}

.crocs-dashboard-section {
    margin-bottom: 48px;
}

.crocs-dashboard-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.crocs-dashboard-section__header h3 {
    margin: 0;
    font-size: 22px;
}

.crocs-dashboard-section__header p {
    margin: 4px 0 0;
    color: #80879b;
}

.crocs-dashboard-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.crocs-dashboard-actions a {
    background: transparent;
    border-radius: 18px;
    padding: 18px 20px;
    text-decoration: none;
    color: #030712;
    border: 1px solid #47b400;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.crocs-dashboard-actions a strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.crocs-dashboard-actions a span {
    font-size: 14px;
    color: #80879b;
}

.crocs-dashboard-actions a:hover {
    border-color: #47b400;
    background: transparent;
}

.crocs-dashboard-actions__alert {
    border-color: #47b400 !important;
    background: transparent !important;
}

.crocs-dashboard-orders-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.crocs-dashboard-order-card {
    border-radius: 20px;
    padding: 20px;
    background: transparent;
    border: 1px solid #47b400;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crocs-dashboard-order-card__top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #80879b;
}

.crocs-dashboard-order-card__body h4 {
    margin: 0;
    font-size: 20px;
}

.crocs-dashboard-order-card__footer a {
    font-weight: 600;
    color: #47b400;
    text-decoration: none;
}

.crocs-dashboard-note {
    margin-top: 24px;
    font-size: 14px;
    color: #80879b;
}

.crocs-account-orders {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.crocs-account-orders-table-wrapper {
    border: 1px solid rgba(3,7,18,0.05);
    border-radius: 24px;
    overflow: hidden;
}

.crocs-account-orders-table-header,
.crocs-account-order-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    align-items: center;
}

.crocs-account-orders-table-header {
    background: #f6f7fb;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9aa0af;
    padding: 18px 24px;
}

.crocs-account-order-item {
    padding: 22px 24px;
    border-top: 1px solid rgba(3,7,18,0.06);
    transition: background 0.2s ease;
}

.crocs-account-order-item:hover {
    background: rgba(71,180,0,0.05);
}

.crocs-account-order-item a {
    color: inherit;
    font-weight: 600;
}

.crocs-order-col-status {
    font-weight: 600;
    color: #47b400;
}

.crocs-order-col-total {
    font-weight: 600;
}

.crocs-btn-action {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #030712;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-right: 8px;
    width: 182px;
    height: 46px;
    color: #fff !important;
}

.crocs-btn-action:hover {
    background: #47b400;
    transform: translateY(-2px);
}

.crocs-pagination {
    display: flex;
    justify-content: center;
}

.crocs-pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.crocs-pagination a,
.crocs-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f1f2f6;
    color: #030712;
    font-weight: 600;
}

.crocs-pagination .current {
    background: #47b400;
    color: #fff;
}

.crocs-account-no-orders {
    text-align: center;
    padding: 60px 20px;
    background: #f6f7fb;
    border-radius: 24px;
}

.crocs-account-no-orders p {
    font-size: 18px;
    margin-bottom: 20px;
}

.crocs-btn-shop {
    display: inline-flex;
    padding: 14px 26px;
    border-radius: 14px;
    background: #47b400;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.crocs-account-edit fieldset,
.crocs-account-form-section {
    border: 1px solid rgba(3,7,18,0.08);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    background: #f9fafb;
}

.crocs-account-edit legend {
    font-weight: 700;
    padding: 0 12px;
}

.woocommerce-account .woocommerce form .form-row label {
    font-weight: 600;
    color: #030712;
}

.woocommerce-account .woocommerce form .form-row input.input-text,
.woocommerce-account .woocommerce form .form-row textarea,
.woocommerce-account .woocommerce form .form-row select {
    border-radius: 14px;
    border: 1px solid rgba(3,7,18,0.1);
    padding: 14px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.woocommerce-account .woocommerce form .form-row input:focus,
.woocommerce-account .woocommerce form .form-row textarea:focus,
.woocommerce-account .woocommerce form .form-row select:focus {
    outline: none;
    border-color: #47b400;
    box-shadow: 0 0 0 3px rgba(71,180,0,0.15);
}

.crocs-account-form-submit {
    margin-top: 12px;
}

.crocs-btn-save {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    border: none;
    background: #030712;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.crocs-btn-save:hover {
    background: #47b400;
    transform: translateY(-2px);
}

.woocommerce-account table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

.woocommerce-account table thead th {
    background: #f6f7fb;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #9aa0af;
    padding: 18px;
}

.woocommerce-account table td {
    padding: 18px;
    border-top: 1px solid rgba(3,7,18,0.06);
}

.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(3,7,18,0.08);
    box-shadow: 0 15px 30px rgba(3,7,18,0.05);
}

@media (max-width: 1100px) {
    .crocs-account-hero {
        grid-template-columns: 1fr;
    }
    .crocs-account-hero__stats {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    .crocs-account-wrapper {
        grid-template-columns: 1fr;
    }
    .crocs-account-navigation {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .crocs-account-page {
        padding: 40px 16px 80px;
    }
    .crocs-account-hero {
        padding: 32px;
        border-radius: 28px;
    }
    .crocs-account-hero h1 {
        font-size: 32px;
    }
    .crocs-account-content {
        padding: 28px 22px;
        border-radius: 24px;
    }
    .crocs-account-orders-table-header,
    .crocs-account-order-item {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .crocs-order-col-actions {
        grid-column: span 2;
    }
}

@media (max-width: 540px) {
    .crocs-account-hero {
        padding: 24px;
    }
    .crocs-account-hero h1 {
        font-size: 26px;
    }
    .crocs-account-hero__actions {
        flex-direction: column;
    }
    .crocs-account-navigation li a {
        padding: 12px 14px;
    }
    .crocs-account-content {
        padding: 20px 18px;
    }
    .crocs-dashboard-metrics {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Order Received Page (Thank You Page)
   ============================================ */

body.woocommerce-order-received {
    background: #F8F8F8 !important;
}

.crocs-order-received-page {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 60px 20px !important;
}

/* Hero Section for Order Received */
.crocs-order-received-hero {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    margin-bottom: 40px;
}

.crocs-order-received-hero__content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    border: 3px solid #47B400;
    border-radius: 0;
}

.crocs-order-received-hero__icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    animation: successPulse 1s ease-in-out;
}

.crocs-order-received-hero__icon svg {
    width: 80px;
    height: 80px;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.crocs-order-received-hero h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 36px !important;
    color: #000000 !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.3 !important;
}

.crocs-order-received-hero p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    margin: 0 0 30px 0 !important;
    opacity: 1;
}

.crocs-order-received-hero__actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.crocs-order-received-hero__actions .crocs-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 15px 35px !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    display: inline-block !important;
    cursor: pointer !important;
}

.crocs-order-received-hero__actions .crocs-btn--primary {
    background: #47B400 !important;
    color: #FFFFFF !important;
    border: 2px solid #47B400 !important;
}

.crocs-order-received-hero__actions .crocs-btn--primary:hover {
    background: #3A9300 !important;
    color: #FFFFFF !important;
    border-color: #3A9300 !important;
}

.crocs-order-received-hero__actions .crocs-btn--ghost {
    background: transparent !important;
    color: #47B400 !important;
    border: 2px solid #47B400 !important;
}

.crocs-order-received-hero__actions .crocs-btn--ghost:hover {
    background: #47B400 !important;
    color: #FFFFFF !important;
}

/* Order Received Content */
.crocs-order-received-content {
    padding: 0;
    margin: 0;
}

/* Dashboard Grid */
.crocs-order-received-content .crocs-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Базовые стили карточек dashboard */
.crocs-order-received-content .crocs-dashboard-card {
    border-radius: 0;
    padding: 28px;
    background: #fdfdff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 25px 50px rgba(3,7,18,0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crocs-order-received-content .crocs-dashboard-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.crocs-order-received-content .crocs-dashboard-card p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

/* Карточка с заказом (темная) */
.crocs-order-received-content .crocs-dashboard-card--order {
    background: transparent;
    border: 1px solid #47b400;
    color: #000;
}

.crocs-order-received-content .crocs-dashboard-card--order a {
    color: #000;
}

.crocs-order-received-content .crocs-dashboard-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crocs-order-received-content .crocs-dashboard-card__header h3 {
    margin: 0;
    font-size: 18px;
}

.crocs-order-received-content .crocs-dashboard-card__body p {
    margin: 0;
}

.crocs-order-received-content .crocs-dashboard-order-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.crocs-order-received-content .crocs-dashboard-order-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.crocs-order-received-content .crocs-dashboard-order-meta span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.crocs-order-received-content .crocs-dashboard-order-meta strong {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    color: #fff;
}

/* Карточка с оплатой */
.crocs-order-received-content .crocs-dashboard-card--payment {
    background: linear-gradient(135deg, #47b400, #3A9300);
    color: #fff;
}

.crocs-order-received-content .crocs-payment-method {
    font-size: 24px;
    font-weight: 700;
    margin: 16px 0;
    color: #fff;
}

.crocs-order-received-content .crocs-order-email {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.crocs-order-received-content .crocs-order-email span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.crocs-order-received-content .crocs-order-email strong {
    display: block;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

/* Карточка поддержки */
.crocs-order-received-content .crocs-dashboard-card--support {
    background: transparent;
    border: 1px solid #47b400;
}

.crocs-order-received-content .crocs-support-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.crocs-order-received-content .crocs-support-actions a {
    font-weight: 600;
    color: #47b400;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

.crocs-order-received-content .crocs-support-actions a:hover {
    color: #3A9300;
}

/* Dashboard Section */
.crocs-order-received-content .crocs-dashboard-section {
    margin-bottom: 48px;
    margin-top: 40px;
}

.crocs-order-received-content .crocs-dashboard-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.crocs-order-received-content .crocs-dashboard-section__header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #030712;
}

.crocs-order-received-content .crocs-order-details-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Order Details Section */
.crocs-order-received-content .woocommerce-order-details,
.crocs-order-received-content .woocommerce-customer-details {
    background: #fdfdff !important;
    padding: 32px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 25px 50px rgba(3,7,18,0.05) !important;
    border: 1px solid rgba(3,7,18,0.05) !important;
}

.crocs-order-received-content .woocommerce-order-details h2,
.crocs-order-received-content .woocommerce-customer-details h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #030712 !important;
    margin: 0 0 20px 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.crocs-order-received-content .woocommerce-table {
    background: #FFFFFF !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(3,7,18,0.08) !important;
    margin-top: 20px !important;
}

.crocs-order-received-content .woocommerce-table thead {
    background: #030712 !important;
}

.crocs-order-received-content .woocommerce-table thead th {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #FFFFFF !important;
    padding: 18px 20px !important;
    border: none !important;
}

.crocs-order-received-content .woocommerce-table tbody td {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    color: #030712 !important;
    padding: 18px 20px !important;
    border-bottom: 1px solid rgba(3,7,18,0.06) !important;
}

.crocs-order-received-content .woocommerce-table tfoot {
    background: rgba(71,180,0,0.04) !important;
}

.crocs-order-received-content .woocommerce-table tfoot th,
.crocs-order-received-content .woocommerce-table tfoot td {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #030712 !important;
    padding: 16px 20px !important;
    border-top: 1px solid rgba(3,7,18,0.1) !important;
    border-bottom: none !important;
}

.crocs-order-received-content .woocommerce-table tfoot .order-total th,
.crocs-order-received-content .woocommerce-table tfoot .order-total td {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #47B400 !important;
}

/* Customer Details - Адреса в плитках */
.crocs-order-received-content .woocommerce-customer-details {
    display: block !important;
}

.crocs-order-received-content .woocommerce-customer-details > h2 {
    grid-column: 1 / -1;
    margin-bottom: 20px !important;
}

.crocs-order-received-content .woocommerce-customer-details .woocommerce-columns {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    margin: 0 !important;
}

.crocs-order-received-content .woocommerce-customer-details .woocommerce-column {
    background: #f6f7fb !important;
    padding: 24px !important;
    border-radius: 0 !important;
    border: 1px solid rgba(3,7,18,0.05) !important;
    margin: 0 !important;
}

.crocs-order-received-content .woocommerce-customer-details .woocommerce-column h2 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #030712 !important;
    margin: 0 0 16px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid rgba(71,180,0,0.2) !important;
}

.crocs-order-received-content .woocommerce-customer-details address {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #030712 !important;
    font-style: normal !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.crocs-order-received-content .woocommerce-customer-details address p {
    margin: 0 0 8px 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.crocs-order-received-content .woocommerce-customer-details address p:last-child {
    margin-bottom: 0 !important;
}

/* ============================================
   Responsive Styles for Order Received
   ============================================ */

@media (max-width: 992px) {
    .crocs-order-received-page {
        padding: 40px 20px !important;
    }
    
    .crocs-order-received-hero {
        padding: 40px 30px;
    }
    
    .crocs-order-received-content .crocs-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .crocs-order-received-page {
        padding: 30px 15px !important;
    }
    
    .crocs-order-received-hero__content {
        padding: 30px 20px;
    }
    
    .crocs-order-received-hero__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .crocs-order-received-hero h1 {
        font-size: 28px !important;
    }
    
    .crocs-order-received-hero p {
        font-size: 16px !important;
    }
    
    .crocs-order-received-hero__actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .crocs-order-received-hero__actions .crocs-btn {
        width: 100%;
        text-align: center;
    }
    
    .crocs-order-received-content .crocs-dashboard-grid {
        grid-template-columns: 1fr !important;
    }
    
    .crocs-order-received-content .crocs-dashboard-card {
        padding: 24px;
    }
    
    .crocs-order-received-content .crocs-dashboard-order-number {
        font-size: 28px;
    }
    
    .crocs-order-received-content .crocs-dashboard-order-meta {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .crocs-order-received-content .crocs-dashboard-order-meta li {
        padding: 12px;
        background: rgba(255,255,255,0.05);
        border-radius: 0;
    }
    
    .crocs-order-received-content .crocs-payment-method {
        font-size: 20px;
    }
    
    .crocs-order-received-content .crocs-dashboard-section__header h3 {
        font-size: 20px;
    }
    
    .crocs-order-received-content .woocommerce-order-details,
    .crocs-order-received-content .woocommerce-customer-details {
        padding: 24px 20px !important;
        border-radius: 0 !important;
    }
    
    .crocs-order-received-content .woocommerce-customer-details .woocommerce-columns {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .crocs-order-received-content .woocommerce-customer-details .woocommerce-column {
        padding: 20px !important;
        border-radius: 0 !important;
    }
    
    .crocs-order-received-content .woocommerce-customer-details .woocommerce-column h2 {
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .crocs-order-received-content .woocommerce-customer-details address {
        font-size: 14px !important;
    }
    
    .crocs-order-received-content .woocommerce-table thead th,
    .crocs-order-received-content .woocommerce-table tbody td {
        padding: 12px 15px !important;
        font-size: 13px !important;
    }
    
    .crocs-order-received-content .woocommerce-table tfoot th,
    .crocs-order-received-content .woocommerce-table tfoot td {
        padding: 12px 15px !important;
        font-size: 14px !important;
    }
}
.crocs-account-view-order {
    line-height: 2;
}

/* ===================================
   CHECKOUT PAGE STYLES
   =================================== */

/* Main Checkout Sections */
.crocs-checkout-billing,
.crocs-checkout-shipping,
.wc-block-checkout__contact-fields,
.wc-block-checkout__billing-fields,
.wc-block-checkout__shipping-fields,
.wc-block-checkout__shipping-method,
.wc-block-checkout__payment-method {
    background: transparent !important;
    padding: 25px !important;
    border-radius: 0 !important;
    border: 1px solid #47b400 !important;
    margin-bottom: 20px !important;
}

/* Checkout Review Order */
.woocommerce-checkout-review-order,
.wc-block-components-order-summary {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}

/* Checkout Items */
.crocs-checkout-item,
.wc-block-components-order-summary-item {
    display: grid !important;
    grid-template-columns: 70px 1fr auto !important;
    gap: 15px !important;
    align-items: center !important;
    padding: 12px !important;
    background: transparent !important;
    border-radius: 0 !important;
}

/* Payment Methods */
.wc_payment_method,
.wc-block-components-radio-control-accordion-option {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 15px 0 !important;
    transition: border-color 0.2s ease !important;
    cursor: pointer !important;
}

.wc_payment_method.wc-payment-method-selected,
.wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked {
    border-color: #47B400 !important;
    background: transparent !important;
}

.payment_box,
.wc-block-components-radio-control-accordion-content {
    margin-top: 15px !important;
    padding: 15px !important;
    background: transparent !important;
    border: 1px solid #47b400 !important;
    border-radius: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #666666 !important;
    line-height: 1.6 !important;
}

/* Terms and Conditions */
.woocommerce-terms-and-conditions-wrapper,
.wc-block-checkout__terms {
    margin-bottom: 20px !important;
    padding: 15px !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: 1px solid #47b400 !important;
}

/* Coupon Form */
.checkout_coupon,
.wc-block-components-totals-coupon {
    background: transparent !important;
    padding: 20px !important;
    border-radius: 0 !important;
    margin-bottom: 20px !important;
}

/* Create Account */
.woocommerce-account-fields,
.wc-block-checkout__add-note {
    background: transparent !important;
    padding: 20px !important;
    border-radius: 0 !important;
    border: 1px solid #47b400 !important;
    margin-top: 20px !important;
}

/* Additional Notes */
.woocommerce-additional-fields {
    background: transparent !important;
    padding: 25px !important;
    border-radius: 0 !important;
    border: 1px solid #47b400 !important;
    margin-top: 20px !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
    border: 1px solid #47b400 !important;
    border-radius: 0 !important;
}

/* Additional Checkout Elements - Remove Border Radius */
.woocommerce-billing-fields input,
.woocommerce-billing-fields select,
.woocommerce-billing-fields textarea,
.woocommerce-shipping-fields input,
.woocommerce-shipping-fields select,
.woocommerce-shipping-fields textarea,
.woocommerce-additional-fields input,
.woocommerce-additional-fields textarea,
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea textarea {
    border-radius: 0 !important;
}

.crocs-checkout-submit,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button,
button.button,
button.wc-forward {
    border-radius: 0 !important;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    border-radius: 0 !important;
}

.crocs-checkout-item-image,
.wc-block-components-order-summary-item__image {
    border-radius: 0 !important;
}
.wc-block-components-totals-wrapper {
    border: none;
}
.wc-block-components-form .wc-block-components-text-input input:autofill, .wc-block-components-form .wc-block-components-text-input.is-active input[type="email"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="number"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="password"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="tel"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="text"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="url"], .wc-block-components-text-input input:autofill, .wc-block-components-text-input.is-active input[type="email"], .wc-block-components-text-input.is-active input[type="number"], .wc-block-components-text-input.is-active input[type="password"], .wc-block-components-text-input.is-active input[type="tel"], .wc-block-components-text-input.is-active input[type="text"], .wc-block-components-text-input.is-active input[type="url"] {
    border: 1px solid #47b400 !important;
}
.wp-block-woocommerce-checkout-order-summary-coupon-form-block.wc-block-components-totals-wrapper {
    border: none;
  }
.wc-block-components-address-card {
    border: none !important;
    padding-left: 0 !important;
}
.wc-block-components-address-card__edit.button {
    color: #FFFFFF !important;
    background: #47B400 !important;
    text-decoration: none !important;
}

.wp-block-woocommerce-checkout-order-summary-totals-block {
    border: none !important;
}


/* Shipping Rates Control - Методы доставки */
.wc-block-components-shipping-rates-control__package {
    border-radius: 0 !important;
    padding: 15px 0 !important;
    background: transparent !important;
}

.wc-block-components-radio-control {
    border: none !important;
}

.wc-block-components-radio-control__option {
    border: 1px solid #47b400 !important;
    border-radius: 0 !important;
    padding: 15px !important;
    margin-bottom: 10px !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}


.wc-block-components-radio-control__option-checked,
.wc-block-components-radio-control__option--checked-option-highlighted {
    border: 1px solid #47b400 !important;
}

/* Радиокнопки в акцентном цвете */
.wc-block-components-radio-control__input {
    accent-color: #47b400 !important;
    width: 20px !important;
    height: 20px !important;
    cursor: pointer !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.wc-block-components-radio-control__input:checked {
    accent-color: #47b400 !important;
    border: 1px solid #000 !important;
    outline: none !important;
    box-shadow: none !important;
}

.wc-block-components-radio-control__input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Убираем дефолтные обводки и подсветки */
.wc-block-components-radio-control--highlight-checked--first-selected,
.wc-block-components-radio-control--highlight-checked--last-selected,
.wc-block-components-radio-control--highlight-checked {
    border: none !important;
    box-shadow: none !important;
}

/* Стили для лейблов методов доставки */
.wc-block-components-radio-control__label {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #000000 !important;
}

.wc-block-components-radio-control__secondary-label {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: #666666 !important;
}

.wc-block-checkout__shipping-option--free {
    color: #47b400 !important;
    font-weight: 600 !important;
}
#radio-control-0-free_shipping\:1__label {
    padding-left: 40px;
  }
  .wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked.wc-block-components-radio-control__option--checked-option-highlighted {
    box-shadow: none;
  }
  .wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    box-shadow: none !important;
  }
  .wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    box-shadow: none !important;
  }
  .wc-block-components-radio-control--highlight-checked::after {
    display: none;
  }
  .wc-block-components-checkout-return-to-cart-button {
    color: #47B400;
  }

/* Изменение текста "Добавление купонов" на "Ввести промокод" */
.wc-block-components-panel__button span,
.wp-block-woocommerce-checkout-order-summary-coupon-form-block span,
button[aria-expanded] span {
    visibility: hidden !important;
    position: relative !important;
}

.wc-block-components-panel__button span::after,
.wp-block-woocommerce-checkout-order-summary-coupon-form-block span::after,
button[aria-expanded] span::after {
    content: 'Ввести промокод' !important;
    visibility: visible !important;
    position: absolute !important;
    left: 0 !important;
    font-size: 16px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    color: #000 !important;
}

/* Удаление плейсхолдера "Введите индекс" */
input[type="text"]::placeholder,
input[type="number"]::placeholder {
    color: transparent !important;
    opacity: 0 !important;
}

.wc-block-components-text-input input::placeholder {
    color: transparent !important;
    opacity: 0 !important;
}

/* Специфично для поля индекса */
input[id*="postcode"]::placeholder,
input[name*="postcode"]::placeholder {
    content: '' !important;
    color: transparent !important;
    opacity: 0 !important;
}
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
    height: 50px !important;
    padding: 0 !important;
    min-height: auto;
  }
  .woocommerce-variation-add-to-cart.variations_button {
    display: flex;
  }
  .woocommerce-product-gallery__trigger {
    display: none;
  }
  .stock.in-stock {
    display: none;
  }
  .product-card__title a {
    color: #000;
    text-decoration: none;
  }

/* ===========================
   Login Page Styles
   =========================== */

/* Login Page Body */
body.woocommerce-account:not(.logged-in),
body.woocommerce-account:not(.logged-in) #main,
body.woocommerce-account:not(.logged-in) .site-main,
body.woocommerce-account:not(.logged-in) .content-area,
body.woocommerce-account:not(.logged-in) .site-content {
    background: #FFFFFF !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

body.woocommerce-account:not(.logged-in) .woocommerce {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    background: transparent !important;
}

/* Скрываем стандартные элементы WooCommerce на странице логина */
body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper {
    max-width: 702px;
    margin: 20px auto 0;
    padding: 0 20px;
}

/* Скрываем стандартную форму WooCommerce если она есть */
body.woocommerce-account:not(.logged-in) .woocommerce-form-login:not(.crocs-login-page .woocommerce-form-login) {
    display: none !important;
}

body.woocommerce-account:not(.logged-in) .u-columns:not(.crocs-login-page .u-columns) {
    display: none !important;
}

/* Стили для уведомлений на странице логина */
.crocs-login-page .woocommerce-error,
.crocs-login-page .woocommerce-info,
.crocs-login-page .woocommerce-message {
    font-family: 'Montserrat', sans-serif;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 0;
    border-left: 4px solid;
}

.crocs-login-page .woocommerce-error {
    background: #fff5f5;
    border-left-color: #e53e3e;
    color: #742a2a;
}

.crocs-login-page .woocommerce-info {
    background: #f0f9ff;
    border-left-color: #3b82f6;
    color: #1e40af;
}

.crocs-login-page .woocommerce-message {
    background: #f0fdf4;
    border-left-color: #47B400;
    color: #166534;
}

.crocs-login-page {
    width: 100% !important;
    font-family: 'Montserrat', sans-serif !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Section */
.crocs-login-hero {
    width: 100%;
    height: 287px;
    background-image: url('images/login_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Если есть PNG изображение, оно будет использовано вместо SVG */
.crocs-login-hero.has-custom-image {
    background-image: url('images/login_hero.png');
}

.crocs-login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.crocs-login-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.crocs-login-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.219;
    color: #FFFFFF;
    margin: 0;
    text-transform: none;
}

/* Login Form Section */
.crocs-login-form-section {
    width: 100%;
    max-width: 1319px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.crocs-login-form-wrapper {
    width: 100%;
    max-width: 702px;
}

.crocs-login-form-wrapper form {
    width: 100%;
}

.crocs-login-form-wrapper .form-row {
    margin-bottom: 24px;
}

.crocs-login-form-wrapper label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.219;
    color: #000000;
    display: block;
    margin-bottom: 8px;
}

.crocs-login-form-wrapper label .required {
    color: #47B400;
}

.crocs-login-form-wrapper input[type="text"],
.crocs-login-form-wrapper input[type="password"] {
    width: 100%;
    height: 56px;
    border: 2px solid #47B400;
    background: rgba(255, 255, 255, 0.5);
    padding: 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.219;
    color: #000000;
    border-radius: 0;
    opacity: 0.5;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.crocs-login-form-wrapper input[type="text"]:focus,
.crocs-login-form-wrapper input[type="password"]:focus {
    opacity: 1;
    outline: none;
    border-color: #47B400;
}

/* Password Field with Toggle */
.crocs-password-field {
    position: relative;
}

.crocs-password-toggle {
    position: absolute;
    right: 16px;
    bottom: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    transition: color 0.3s ease;
    z-index: 10;
}

.crocs-password-toggle:hover {
    color: #47B400;
}

.crocs-password-toggle svg {
    width: 20px;
    height: 20px;
}

/* Remember Me */
.crocs-remember-row {
    margin-bottom: 32px !important;
}

.crocs-remember-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
}

.crocs-remember-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #47B400;
}

.crocs-remember-row span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.219;
    color: #000000;
}

/* Login Button */
.crocs-login-btn {
    width: 100%;
    height: 60px;
    background: #47B400;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.219;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    border-radius: 0;
    margin-bottom: 24px;
}

.crocs-login-btn:hover {
    background: #3a9300;
    transform: translateY(-2px);
}

.crocs-login-btn:active {
    transform: translateY(0);
}

/* Lost Password Link */
.crocs-lost-password {
    text-align: center;
    margin: 0;
}

.crocs-lost-password a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.219;
    color: #47B400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.crocs-lost-password a:hover {
    color: #3a9300;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .crocs-login-hero {
        height: 200px;
    }
    
    .crocs-login-hero h1 {
        font-size: 36px;
    }
    
    .crocs-login-form-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .crocs-login-hero h1 {
        font-size: 28px;
    }
    
    .crocs-login-form-wrapper label {
        font-size: 16px;
    }
    
    .crocs-login-form-wrapper input[type="text"],
    .crocs-login-form-wrapper input[type="password"] {
        height: 48px;
        font-size: 15px;
    }
    
    .crocs-login-btn {
        height: 50px;
        font-size: 16px;
    }
}
.posted_in {
    display: none;
  }
  .variations_form .reset_variations {
    display: none;
  }

  .wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title {
    color:#47B400;
  }

/* ============================================
   СТИЛИ КОРЗИНЫ - ТЕМНАЯ ТЕМА
   ============================================ */

/* Основной контейнер корзины */
.crocs-cart-page {
    background: #FFFFFF;
    padding: 40px 0;
    min-height: 60vh;
    max-width: 1300px;
    margin: auto;
    padding-bottom: 0;
}

/* Обертка таблицы корзины */
.crocs-cart-table-wrapper {
    background: #FFFFFF;
    border: none;
    margin-bottom: 30px;
}

/* Заголовки колонок */
.crocs-cart-table-header {
    display: grid;
    grid-template-columns: 120px 2fr 1fr 1fr 1fr 80px;
    gap: 20px;
    padding: 20px;
    background: #000000;
    border-bottom: 2px solid #47B400;
    margin-bottom: 0;
}

.crocs-cart-table-header > div {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Контейнер товаров */
.crocs-cart-items {
    background: #FFFFFF;
}

/* Элемент товара в корзине */
.crocs-cart-item {
    display: grid;
    grid-template-columns: 120px 2fr 1fr 1fr 1fr 80px;
    gap: 20px;
    padding: 20px;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    align-items: center;
    min-height: 120px;
}

.crocs-cart-item:last-child {
    border-bottom: none;
}

/* Изображение товара */
.crocs-cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.crocs-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crocs-cart-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Название товара */
.crocs-cart-item-name {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}

.crocs-cart-item-name a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.crocs-cart-item-name a:hover {
    color: #47B400;
}

/* Цена товара */
.crocs-cart-item-price {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.crocs-cart-item-price .amount,
.crocs-cart-item-price .woocommerce-Price-amount {
    color: #000000;
}

/* Количество товара */
.crocs-cart-item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crocs-cart-item-quantity .quantity {
    display: flex;
    align-items: center;
    gap: 0;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 0;
}

.crocs-cart-item-quantity .qty-minus,
.crocs-cart-item-quantity .qty-plus {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: none;
    border-right: 1px solid #E5E5E5;
    border-left: 1px solid #E5E5E5;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.3s ease;
}

.crocs-cart-item-quantity .qty-plus {
    border-right: none;
    border-left: 1px solid #E5E5E5;
}

.crocs-cart-item-quantity .qty-minus:hover,
.crocs-cart-item-quantity .qty-plus:hover {
    background: #F5F5F5;
}

.crocs-cart-item-quantity input[type="number"] {
    width: 60px;
    height: 40px;
    background: #FFFFFF;
    border: none;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    color: #000000;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 0;
    -moz-appearance: textfield;
}

.crocs-cart-item-quantity input[type="number"]::-webkit-outer-spin-button,
.crocs-cart-item-quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.crocs-cart-item-quantity input[type="number"]:focus {
    outline: none;
    background: #F5F5F5;
}

/* Сумма товара */
.crocs-cart-item-subtotal {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.crocs-cart-item-subtotal .amount,
.crocs-cart-item-subtotal .woocommerce-Price-amount {
    color: #000000;
}

/* Кнопка удаления */
.crocs-cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crocs-cart-item-remove .remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #47B400;
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.crocs-cart-item-remove .remove:hover {
    background: #47B400;
    color: #FFFFFF;
}

/* Иконка корзины для удаления */
.crocs-cart-item-remove .remove::before {
    content: "🗑️";
    font-size: 20px;
}

/* Кнопки действий корзины */
.crocs-cart-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #47B400;
    width: 45%;
}

.crocs-cart-actions .button {
    flex: 1;
    padding: 19px 10px;
    background: #47B400;
    color: #FFFFFF;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.219;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crocs-cart-actions .button:hover {
    background: #3A9300;
    color: #FFFFFF;
}


/* Итоги корзины */
.crocs-cart-collaterals {
    margin-top: 40px;
    width: 50%;
    position: relative;
    bottom: 100px;
    z-index: 99;
    margin-left: auto;
    background: #000;
}

.crocs-cart-totals {
    background: #000;
    padding: 30px;
    border: 1px solid #47B400;
}

.crocs-cart-totals-inner {
    background: #000;
}

.crocs-cart-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #47B400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.crocs-cart-totals-row:last-child {
    border-bottom: none;
}

.crocs-cart-totals-label {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.crocs-cart-totals-value {
    font-weight: 700;
    font-size: 18px;
    color: #000000;
}

.crocs-cart-totals-row.crocs-cart-totals-total {

}


.crocs-cart-totals-row.crocs-cart-totals-total .crocs-cart-totals-label,
.crocs-cart-totals-row.crocs-cart-totals-total .crocs-cart-totals-value {
    font-size: 20px;
    font-weight: 700;
}

/* Кнопка оформления заказа */
.crocs-cart-checkout-button {
    margin-top: 30px;
}

.crocs-cart-checkout-button .button,
.crocs-cart-checkout-button .checkout-button {
    width: 100%;
    padding: 19px 10px;
    background: #47B400;
    color: #FFFFFF;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.219;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crocs-cart-checkout-button .button:hover,
.crocs-cart-checkout-button .checkout-button:hover {
    background: #3A9300;
    color: #FFFFFF;
}

.added_to_cart.wc-forward {
    display: none;
  }

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .crocs-cart-table-header,
    .crocs-cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        display: flex;
        flex-direction: column;
        align-items: self-start;
    }
    
    .crocs-cart-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .crocs-cart-actions .button {
        width: 100%;
    }
    .crocs-cart-collaterals {
        width: 100%;
        position: unset;
      }
      .crocs-cart-table-header {
        display: none;
      }
      .crocs-cart-item-remove {
        position: absolute;
        left: 150px;
      }
      .crocs-mini-cart-content .woocommerce-mini-cart__buttons a, .crocs-mini-cart-content .woocommerce-mini-cart__buttons .button {
        width: 100% !important;
      }
}
.footer__company {
    /* общий фон/отступы блока, чтобы гармонировать с нижней частью футера */
    padding: 15px 0;

}

.footer__company-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 20px;
    font-size: 14px;
    line-height: 1.4;
	flex-direction: column;
	border-top: 1px solid #ccc;
	padding-top: 30px;
}

.footer__company-name {
    font-weight: 600;
}

.footer__company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footer__company-detail {
    opacity: 0.8;
}

/* Адаптив под мобильные, если нужно */
@media (max-width: 767px) {
    .footer__company-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
