a {
    -webkit-tap-highlight-color: transparent; /* Убирает подсветку при нажатии на iOS */
    line-height: normal;
    text-decoration: none;
    color: #fff;
}
a:not([class]){
    text-decoration: underline;

}
.grecaptcha-badge{
    display: none;
}

.interest-block{
    margin: 40px 0;
}
.products-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}
.interest-block h2 {
    font-weight: 600;
    font-size: 30px;
    color: #DBA42C;
}
.products-card {
    overflow: hidden;
    background-color: #FFFFFF0D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.products-card:hover {
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.badge-guarantee {
    background: #DD9A08;
    color: white;
}

.badge-production {
    background: #f8f8f8;
    color: #333;
    border: 1px solid #DD9A08;
}

.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.availability {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body .card-title a {
    color: #DBA42C !important;
    text-decoration: none;
}

.card-title a:hover {
    color: #DD9A08;
}

.manufacturer {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.card-preview {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #DD9A08 !important;
}

.detail-link {
    background: #DD9A08;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.detail-link:hover {
    background: #c68a07;
}

@media (max-width: 1024px) {
    .products-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .products-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .card-body {
        padding: 15px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-image {
        height: 160px;
    }
}
.similar-articles-block h3{
    font-weight: 600;
    font-size: 30px;
    color: #DBA42C;
}

.similar-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    padding: 20px;
}

.similar-article-card {
    background: #FFFFFF0D;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}


.similar-article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
}

.similar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.similar-article-title {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    color: #DBA42C !important;
    font-size: 18px;
    font-weight: 700;
}

.similar-article-title h3 a{
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
}

.similar-article-title a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.similar-article-title a:hover {
    color: #DD9A08;
}

@media (max-width: 1024px) {
    .similar-articles {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .similar-articles {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .similar-article-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .similar-article-title {
        padding: 15px;
    }

    .similar-article-title h3 {
        font-size: 15px;
    }

    .similar-article-image {
        height: 160px;
    }
}