:root {
    --primary: #2c5aa0;
    --primary-dark: #1e3d72;
    --secondary: #4CAF50;
    --accent: #FF9800;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Rubik', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

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

/* Стили для шапки */
header {
    background-color: #3CB05E;
    margin-bottom: -3px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    text-decoration: none;
}
.price-container tbody tr:nth-child(even) {
    background-color: #eee;
}
input,
textarea {
    font-family: 'Rubik', 'Arial', sans-serif;
}
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 8px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary);
}
.header-actions {
    display: flex;
    align-items: center;
}
.header-actions nav ul {
    margin-right: 100px;
}
.header-actions nav ul a {
    color: #fff;
    display: inline-block;
    padding: 3px 13px;
}
.header-actions nav ul .active a,
.header-actions nav ul a:hover {
    background-color: #fff;
    border-radius: 10px;
    color: #3CB05E;
}
.basket span {
    border-radius: 50%;
    background-color: #fff;
    color: #3CB05E;
    text-align: center;
    width: 19px;
    display: inline-block;
    height: 19px;
    font-size: 12px;
    margin-left: -12px;
}
.minimal-price-wrap {
    display: flex;
    justify-content: space-between;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Стили для герой-секции */
.hero {
    color: white;
    position: relative;
    height: 459px;
}
.hero:before {
    width: 50%;
    content: '';
    background: #46a87c;
    height: 462px;
    display: block;
    position: absolute;
}
.hero:after {
    width: 50%;
    right: 0;
    top: 0;
    content: '';
    background: #46a87c;
    height: 458px;
    background: #569dac;
    display: block;
    position: absolute;
}
.hero-contenteiner {
    height: 604px;
    padding: 80px 0;
    background: url('../img/slide-back.jpg') 0 -4px;
    max-width: 1430px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 2;
    max-width: 820px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    position: absolute;
    top: -77px;
    left: -150px;
}
.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    background-color: white;
    color: var(--primary);
}

.hero-buttons .btn:hover {
    background-color: var(--light);
}

.hero-buttons .btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.hero-buttons .btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

/* Стили для секции преимуществ */
.features {
    position: relative;
    margin-top: 150px;
}
.big-basket {
    width: 107px;
    height: 107px;
    background: #3CB05E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 5%;
    bottom: 165px;
    position: fixed;
    transition: background 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.big-basket:hover {
    background: #258642;
}
.big-basket span {
    border-radius: 50%;
    background-color: #fff;
    color: #3CB05E;
    text-align: center;
    width: 35px;
    display: flex;
    height: 35px;
    font-size: 16px;
    position: absolute;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-left: 60px;
    box-shadow: var(--box-shadow);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    padding: 30px 50px;
}

.feature-card {
    display: flex;
    align-items: center;
    border-right: 1px solid #E6E6E6;
    padding-left: 40px;
}
.feature-card:last-child {
    border-right: none;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.feature-card h3 {
    margin-bottom: 0;
    font-size: 25px;
}
.feature-card p {
    font-size: 25px;
    color: #5F6C72;
}

/* Стили для секции продукта */
.product {
    padding: 80px 0;
}

.product-container {
    display: flex;
    align-items: start;
    gap: 30px;
}

.product-image {
    flex: 1;
    text-align: center;
    /*padding-top: 30px;*/
}

.slider-container {
    margin: 0 auto;
}

.slider-header {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 20px;
    margin-right: 20px;
}

.slider-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #9BDBAD;
}

.slider-btn:hover {
    background: #3CB05E;
}
/* Slider */
/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 35px;
    list-style: none;
    text-align: center;
    padding-right: 20px;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li.slick-active button {
    width: 52px;
    background: #46B466;
    border-radius: 15px;
}
.slick-dots li button
{
    display: block;
    width: 9px;
    height: 9px;
    cursor: pointer;
    border: 0;
    outline: none;
    background: #E2E2E2;
    font-size: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.product-card {
    margin-right: 24px;
}

.product-card .product-image {
    width: 287px;
    height: 328px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card .product-image img {
    width: 287px;
    height: 328px;
    object-fit: contain;
}

.product-info {
    padding-top: 20px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    height: 46px;
    font-weight: 500;
    line-height: 1.2;
}

.product-price {
    font-size: 22px;
    font-weight: 500;
    color: #46B466;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    color: #ffc107;
    margin-right: 5px;
}

.rating-count {
    font-size: 12px;
    color: #999;
}
.price-and-card {
    display: flex;
    justify-content: space-between;
}
.add-to-cart {
    width: 51px;
    min-width: 51px;
    min-height: 51px;
    height: 51px;
    background: #3CB05E;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: -35px;
}
.add-to-cart svg:last-child {
    display: none;
}
.add-to-cart.added {
    background: #9BDBAD;
}
.add-to-cart.added svg:first-child {
    display: none;
}
.add-to-cart.added svg:last-child {
    display: inline;
}
.add-to-cart:hover {
    background: #258642;
}

/* Стили для Slick Slider */
.slick-prev, .slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    color: #333;
}

.slick-dots {
    bottom: -40px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .slick-prev, .slick-next {
        display: none !important;
    }
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.product-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.product-info {
    flex: 1;
}

.product-info h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 20px;
}
.product-info .product-info-links a {
    margin-right: 30px;
}
.product-info .product-info-links a:hover {
    opacity: 0.8;
}
.product-info p {
    margin-bottom: 20px;
    color: var(--gray);
}

.product-features {
    margin: 30px 0;
}
.price-container {
    margin-top: 88px;
}
.tabs {

    display: flex;
    align-items: center;
    justify-content: center;
}
.tabs nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.tabs nav ul li {
    margin-left: 0;
}
.tabs nav ul a {
    color: #3CB05E;
    display: inline-block;
    padding: 6px 14px;
    font-size: 32px;
    border-radius: 10px;
}
.tabs nav ul a.active,
.tabs nav ul a:hover {
    background-color: #fff;
    border-radius: 10px;
    color: #fff;
    background-color: #3CB05E;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #3CB05E;
    font-size: 32px;
    padding: 6px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.checkbox-label:hover {
    background-color: rgba(60, 176, 94, 0.1);
}
.checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #3CB05E;
}
.checkbox-label input[type="checkbox"]:checked + span {
    font-weight: 600;
}
.checkbox-label:has(input[type="checkbox"]:checked) {
    background-color: #3CB05E;
    color: #fff;
}
.price-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}
.price-container table tr.hidden {
    display: none;
}
.price-container thead {
    background: #3CB05E;
    color: white;
}
.price-container th {
    padding: 16px 0;
    text-align: center;
    font-weight: 600;
    font-size: 25px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    width: 33%;
}
.price-container td {
    padding: 30px 0;
    text-align: center;
    border-left: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    font-size: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.price-container td:last-child {
    border-right: 1px solid #E6E6E6;
}
.price-container .section-title {
    margin-bottom: 40px;
}
.price-container table button {
    color: #fff;
    background-color: #3CB05E;
    border: none;
    outline: none;
    text-align: center;
    padding: 16px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    margin: 0 auto;
    align-items: center;
    white-space: nowrap;
}
.price-container table button svg:last-child {
    display: none;
}
.price-container table button.added svg {
    display: none;
}
.price-container table button.added {
    background: #9BDBAD;
}
.price-container table button:hover {
    background: #258642;
}
.price-container table button svg {
    margin-left: 15px;
}
.minimal-price-line {
    font-size: 18px;
    color: #5F6C72;
    margin-top: 40px;
}
.info-block {
    margin-top: 88px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    display: flex;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 35px 20px;
}

.info-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 73px;
}

.info-card h3 {
    margin-bottom: 0;
    font-size: 18px;
    margin-bottom: 16px;
}
.info-card p {
    font-size: 18px;
    color: #5F6C72;
}
.photos {
    margin-top: 68px;
}
.photos .container,
.products .container {
    padding-left: 20px;
    padding-right: 0;
}
.photos .slider-header {
    justify-content: center;
}
.photos .section-title {
    margin-bottom: 0;
    margin-right: 24px;
    padding-top: 20px;
}
.info-club-links {
    margin-top: 58px;
}
.info-club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
}

.info-club-card {
    display: flex;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    justify-content: space-between;
    text-align: center;
    height: 265px;
    position: relative;
}
.info-club-link {
    text-align: left;
    margin-top: 80px;
    margin-left: 32px;
}
.info-club-image {
    position: absolute;
    right: 0;
    top: -2px;
}
.info-club-image .mobile-image {
    display: none;
}
.info-club-link h3 {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}
.info-club-link a {
    font-size: 16px;
    display: inline-block;
    text-transform: uppercase;
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 25px;
}
.info-club-link a:hover {
    box-shadow: var(--box-shadow);
}
.info-club-card:first-child a {
    color: #435EBA;
}
.info-club-card:last-child a {
    color: #47A97A;
}
.info-club-card:first-child {
    background: #6E8CF3;
    background: linear-gradient(86deg, rgba(72, 97, 190, 1) 0%, rgba(110, 140, 243, 1) 100%);
}
.info-club-card:last-child {
    background: #3EAF60;
    background: linear-gradient(86deg, rgba(62, 175, 96, 1) 0%, rgba(99, 148, 209, 1) 100%);
}
.digits {
    margin-top: 88px;
}
.digits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    padding: 24px 0;
}
.digits-card {
    display: flex;
    align-items: center;
    border-right: 1px solid #E6E6E6;
    flex-wrap: wrap;
    text-align: center;
}
.digits-card:last-child {
    border-right: none;
}
.digits-card h3 {
    font-size: 60px;
    color: #46B466;
    font-weight: 400;
    width: 100%;
}
.digits-card p {
    font-size: 25px;
    color: #5F6C72;
    width: 100%;
}
.question {
    margin-top: 88px;
    margin-bottom: 50px;
}
.question-form {
    background: #3EAF60;
    background: linear-gradient(86deg, rgba(62, 175, 96, 1) 0%, rgba(99, 148, 209, 1) 100%);
    border-radius: 20px;
    padding: 40px;
}
.question-form h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 32px;
}
.question-form p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 32px;
}
.form-and-image {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form-and-image form {
    width: 60%;
}
.form-and-image .input-field {
    display: inline-block;
    width: 300px;
    margin-right: 15px;
    margin-bottom: 24px;
}
.form-and-image .input-field span,
.form-and-image .input-text span {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}
.form-and-image input[type="text"],
.form-and-image textarea {
    outline: none;
    width: 100%;
    padding: 20px;
    background-color: #a3d4bc;
    border-radius: 10px;
    border: none;
}
.form-and-image input[type="email"],
.form-and-image textarea {
    outline: none;
    width: 100%;
    padding: 20px;
    background-color: #a3d4bc;
    border-radius: 10px;
    border: none;
}
.form-and-image textarea {
    resize: none;
    height: 167px;
    margin-bottom: 32px;
}
.form-and-image .input-text {
    width: 90%;
}
.form-and-image input[type="submit"] {
    border-radius: 20px;
    background: #fff;
    width: 242px;
    text-align: center;
    color: #46B466;
    outline: none;
    cursor: pointer;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
}
.form-and-image img {
    position: relative;
    top: -95px;
}
/* Стили для подвала */
footer {
    background-color: #3CB05E;
    color: white;
    padding: 57px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer-column {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
    display: inline-block;
    margin-left: 80px;
}
.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}
.footer-column:last-child {
    text-align: right;
    justify-content: end;
}
.footer-column .social {
    width: 100%;
    padding-top: 10px;
}
.footer-column .social a {
    display: inline-block;
    margin-right: 15px;
    margin-top: 10px;
}
.footer-column:last-child a {
    font-size: 20px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .section-title h2 {
        font-size: 28px;
    }
    .product-card .product-image {
        width: 100%;
        height: 200px;
    }
    .product-card .product-image img {
        width: 100%;
        height: 100%;
    }
    .hero h1 {
        font-size: 35px;
        text-align: left;
    }
    .hero-image img {
        width: 327px;
        top: 35px;
        left: -420px;
    }
    .hero-text {
        margin-bottom: 40px;
        flex: none;
        max-width: 100%;
    }

    .product-container {
        flex-direction: column;
    }
    .features-grid {
        padding: 30px 5px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 5px;
    }
    .feature-card {
        padding-left: 10px;
    }
    .feature-card h3,
    .feature-card p {
        font-size: 22px;
    }
    .product-container {
        gap: 5px;
    }
    .product-image {
        order: 2;
        padding-top: 0;
    }
    .product-info h2 {
        text-align: center;
        font-size: 28px;
    }
    .product-info p {
        font-size: 16px;
    }
    .tabs nav ul {
        gap: 16px;
    }
    .tabs nav ul a {
        font-size: 28px;
        padding: 6px 12px;
    }
    .price-container th {
        font-size: 20px;
    }
    .price-container td {
        font-size: 16px;
    }
    .price-container table button {
        font-size: 14px;
    }
    .minimal-price-line {
        font-size: 16px;
    }
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }
    .photos .section-title {
        margin: 0 auto;
    }
    .digits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }
    .form-and-image img {
        display: none;
    }
    .form-and-image form {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .form-and-image .input-field {
        width: 44%;
    }
    .form-and-image .input-text {
        width: 98%;
    }
    .footer-column ul li {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .tabs {
        margin-left: -15px;
    }
    .product-card .product-image {
        width: 100%;
        height: 180px;
    }
    .product-card .product-image img {
        width: 100%;
        height: 100%;
    }
    .mobile-menu-btn {
        display: block;
    }
    .feature-icon {
        margin-right: 10px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    .slider-controls {
        display: none;
    }
}
@media (max-width: 600px) {
    .tabs nav ul {
        gap: 10px;
    }
    .tabs nav ul a {
        font-size: 20px;
        padding: 6px 10px;
    }
}
@media (max-width: 440px) {
    .product-card .product-image {
        width: 100%;
        height: 100%;
    }
    .product-card .product-image img {
        width: 100%;
        height: 100%;
    }
    .big-basket {
        width: 87px;
        height: 87px;
    }
    a.logo {
        width: 160px;
    }
    .logo img {
        width: 100%;
    }
    .header-actions nav ul {
        margin-right: 10px;
    }
    .hero h1 {
        font-size: 25px;
    }
    .hero-contenteiner {
        padding: 40px 0;
        background-position: -340px -4px;
    }
    .hero-image img {
        top: 75px;
        left: -340px;
    }
    .features {
        margin-top: 140px;
    }
    .features-grid {
        padding: 0 15px;
    }
    .feature-card {
        border-bottom: 1px solid #E6E6E6;
        border-right: none;
        justify-content: center;
        padding: 30px;
    }
    .feature-card:last-child {
        border-bottom: none;
    }
    .feature-icon {
        margin-right: 40px;
    }
    .section-title {
        margin-bottom: 20px;
    }
    .product {
        padding: 10px 0;
    }
    .product-title {
        font-size: 16px;
    }
    .price-container th {
        font-size: 16px;
        white-space: normal;
    }
    .price-container th:first-child {
        width: 40%;
    }
    .price-container th:nth-child(2) {
        width: 30%;
    }
    .price-container th:last-child {
        width: 30%;
    }
    .price-container td {
        font-size: 14px;
        width: 33%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .price-container tr td:first-child {
        text-align: left;
        padding-left: 10px;
        width: 45%;
    }
    .price-container tr td:nth-child(2) {
        width: 30%;
    }
    .price-container tr td:last-child {
        width: 30%;
    }
    .price-container table button {
        font-size: 0;
        padding: 10px;
        text-align: center;
        border-radius: 50%;
    }
    .price-container table button svg {
        margin-left: 0;
    }
    .price-container table button.added {
        padding: 12px 9px;
        width: 40px;
    }
    .price-container table button.added svg:last-child {
        display: inline;
    }
    .info-card p {
        font-size: 16px;
    }
    .info-club-link h3 {
        font-size: 19px;
    }
    .info-club-image img {
        display: none;
        max-width: 100%;
    }
    .info-club-image .mobile-image {
        display: block;
    }
    .info-club-image {
        top: 20px;
        width: 170px;
    }
    .digits-card {
        border-bottom: 1px solid #E6E6E6;
        border-right: none;
        max-width: 220px;
    }
    .digits-card:last-child {
        border-bottom: none;
    }
    .digits-card h3 {
        font-size: 50px;
        font-weight: 500;
    }
    .digits-card p {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .digits-grid {
        width: 100%;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
    .form-and-image .input-field {
        width: 100%;
        margin-right: 0;
    }
    .form-and-image .input-text {
        width: 100%;
    }
    .form-and-image input[type="submit"] {
        width: 100%;
    }
    .footer-column:last-child {
        justify-content: flex-start;
        text-align: left;
    }
    .footer-column ul li {
        margin-left: 0;
        width: 100%;
    }
    .info-club-grid {
        display: flex;
        flex-wrap: wrap;
    }
    .info-club-card {
        width: 100%;
        height: 220px;
    }
    .info-club-link {
        margin-top: 50px;
    }
}
@media (max-width: 335px) {
    .logo img {
        width: 150px;
    }
    .header-actions nav ul {
        margin-right: 0;
    }
    nav ul li {
        margin-left: 0;
    }
    .header-actions nav ul a {
        padding: 2px 6px;
        font-size: 14px;
    }
}