/* CSS для страницы доставки и оплаты */



.header-row-1 {
    background: url('images/im-header-bg.jpg') center/cover no-repeat;
}

.header-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.header-row-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background: #2E7D32;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.header-tagline {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: #e8f5e8;
    margin: 0 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.search-btn, .login-btn {

    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.search-btn:hover, .login-btn:hover {
    background: rgba(255,255,255,0.3);
}

.nav-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: bold;
}

.hamburger {
    font-size: 20px;
}

.nav-title {
    font-style: italic;
}

.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    justify-content: center;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.nav-menu li a:hover {
    background: rgba(255,255,255,0.2);
}

.nav-menu li a img {
    height: 20px;
    width: auto;
}

/* Mobile Responsive */
@media (max-width: 770px) {
    .header-row-1 {
        background: url('images/fon-mobile 1.png') center/cover no-repeat;
    }

    .header-row-1 {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-tagline {
        margin: 0;
        order: 2;
    }

    .header-actions {
        order: 3;
        justify-content: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .nav-menu li a {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* Global Font */
body {
    font-family: Montserrat, sans-serif;
    background: #F0F0F0;
}

.page-container {
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    padding: 20px;
}

/* Delivery Page Layout */
.delivery-layout {
    display: flex;
    gap: 40px;
    font-family: Montserrat, sans-serif;
}

.main-content {
    flex: 2;
}

.sidebar {
    flex: 1;
    max-width: 300px;
}

/* Breadcrumbs */
.breadcrumbs {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #808080;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: #4CAF50;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Page Title */
.page-title {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #2D2D2D;
}

/* Content Section */
.content-section {
    margin-bottom: 40px;
}

.section-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.check-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 100%;
    height: 100%;
}

.section-content h3 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #333;
    margin-bottom: 10px;
}

.section-content p {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #666;
    margin-bottom: 10px;
}

.section-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.section-content li {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #666;
    margin-bottom: 5px;
}

/* Sidebar */
.sidebar {
    padding: 30px 20px;
    border-radius: 8px;
    height: fit-content;
}

.advantage-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 25px;
    gap: 15px;
}

.advantage-item:last-child {
    margin-bottom: 0;
}

.advantage-icon {
    width: 54px;
    height: 44px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
}

.advantage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.advantage-content h4 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #333;
}

.advantage-content p {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #666;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .delivery-layout {
        flex-direction: column;
        gap: 30px;
    }

    .sidebar {
        max-width: none;
    }

    .page-title {
        font-size: 28px;
    }

    .section-content h3 {
        font-size: 16px;
    }

    .section-content p {
        font-size: 14px;
    }

    .advantage-content h4 {
        font-size: 15px;
    }

    .advantage-content p {
        font-size: 13px;
    }
}

/* Footer Styles */
.footer {
    background: #2d2d2d;
    color: white;
    padding: 40px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    width: 100%;
    gap: 40px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-column:last-child {
    align-items: center;
}

.footer-column h3 {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.3;
    color: white;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #777e89;
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #81AE64;
}

.footer-search {
    width: 100%;
    margin-bottom: 20px;
    display: block;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    background: #414447;
    border: 1px solid #414447;
    border-radius: 4px;
    color: white;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
}

.search-input::placeholder {
    color: #777e89;
}

.contact-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 12px;
    justify-content: center;
}

.address-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
    color: #777e89;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777e89;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.address {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    text-align: center;
    color: #777e89;
}

.contact-item span:last-child {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.copyright {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.5;
    color: #777e89;
}

.payment-methods {
    display: flex;
    align-items: center;
}

.payment-icons {
    height: 30px;
    width: auto;
}

/* Tablet Footer */
@media (max-width: 1000px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column:first-child,
    .footer-column:nth-child(2) {
        flex: 1;
        display: flex;
        gap: 40px;
    }

    .footer-column:last-child {
        align-items: center;
    }

    .footer-search {
        width: 100%;
    }

    .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .address-row {
        align-items: center;
    }

    .address {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Hide payment methods on smaller screens */
@media (max-width: 720px) {
    .payment-methods {
        display: none;
    }
}

/* News Page Styles */
.news-page {
    padding: 40px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 40px 0;
    border: 1px solid #F7F7F7;
}

.news-card {
    background: white;
    border: 1px solid #F7F7F7;
    width: 326px;
    height: 475px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
}

.news-card:hover {
    background: #CFF0D7;
}

.news-image {
    position: relative;
    width: 296px;
    height: 180px;
    margin: 20px auto 0;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #299D68;
    color: white;
    padding: 8px 10px;
    border-radius: 14px;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
}

.news-category.акции {
    background: #F60001;
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 145%;
    color: #2D2D2D;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 78px;
}

.news-excerpt {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
    color: #2D2D2D;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 87px;
}

.news-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
}

.news-date {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    color: #999;
}

.news-button {
    background: #81AE64;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 25px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    opacity: 1;
    margin-top: 15px;
}

.news-button:hover {
    background: #6B8E5A;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination-btn {
    background: white;
    border: none;
    color: #2D2D2D;
    padding: 10px;
    border-radius: 4px;
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 42px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background: #CFF0D7;
}

.pagination-btn.active {
    background: #CFF0D7;
    color: #2D2D2D;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-dots {
    color: #999;
    padding: 0 5px;
}

.pagination-arrow {
    width: 8px;
    height: 15px;
}

/* Mobile News Grid */
@media (max-width: 1360px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-content {
        padding: 15px;
    }

    .news-title {
        font-size: 14px;
    }

    .news-excerpt {
        font-size: 12px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }

    .pagination-btn {
        min-width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* Article Page Mobile */
@media (max-width: 1024px) {
    .article-layout {
        flex-direction: column;
        gap: 30px;
    }

    .article-sidebar {
        flex: none;
        max-width: 600px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(336px, 1fr));
        gap: 20px;
    }

    .advertisement-card {
        width: 100%;
        max-width: 336px;
        margin: 0 auto;
    }
}

/* Home Page Styles */
.home-page {
    font-family: Montserrat, sans-serif;
}

.hero-banner {
    background: linear-gradient(135deg, #FFE066 0%, #81AE64 50%, #4A90E2 100%);
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    margin-bottom: 60px;
    overflow: hidden;
    padding: 60px 40px;
}

.hero-content {
    text-align: left;
    z-index: 2;
    position: relative;
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-family: Montserrat, sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #2D2D2D;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 30px;
}

.hero-button {
    background: white;
    color: #81AE64;
    border: 2px solid #81AE64;
    padding: 18px 40px;
    border-radius: 30px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-button:hover {
    background: #81AE64;
    color: white;
    transform: translateY(-2px);
}

.hero-animals {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.animal {
    position: absolute;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.animal-possum { top: 20%; left: 10%; }
.animal-chameleon { top: 30%; right: 15%; }
.animal-toucan { bottom: 25%; left: 20%; }
.animal-hedgehog { bottom: 15%; right: 10%; }

.advantages-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 15px;
}

.advantage-item p {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
}

.section-title {
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #2D2D2D;
    text-align: center;
    margin-bottom: 30px;

}

.bestsellers-section {
    margin-bottom: 80px;
}

.bestsellers-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-btn {
    background: none;
    border: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    z-index: 10;
}

.carousel-btn rect {
    transition: fill 0.3s ease;
}

.carousel-btn path {
    transition: fill 0.3s ease;
}

.carousel-prev {
    left: 200px;
}

.carousel-next {
    right: -122px;
}

.carousel-btn:hover {
    transform: scale(1.05);
}

.carousel-btn:hover rect {
    fill: #82AD64E5;
}

.carousel-btn:hover path {
    fill: white;
}

.bestsellers-grid {
    flex: 1;
    display: flex;
    gap: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.product-card {
    background: white;
    border: 1px solid #E8E8E8;

    width: calc(25% - 0px);
    min-width: 280px;
    height: 553px;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-image {
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.product-title {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #2D2D2D;
    margin-bottom: 15px;
    padding: 0 20px;
    text-align: left;
}

.product-price {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #1D1D1D;
    margin-bottom: 10px;
    padding: 0 20px;
    text-align: left;
}

.product-rating {
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
    padding: 0 20px;
}

.star {
    width: 15px;
    height: 14px;
}

.star.filled {
    fill: #FFD700;
}

.star:not(.filled) {
    fill: #E8E8E8;
}

.product-stock {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #848484;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 20px;
}

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
}

.qty-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.qty-value {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #848484;
}

.add-to-cart-btn {
    background: linear-gradient(270deg, #82AD64 0%, #81AE64 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 168px;
    height: 52px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
}

.add-to-cart-btn:hover {
    background: #6B9A4F;
}

.info-section {
    margin-bottom: 80px;
}

.info-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.info-grid {
    display: flex;
    gap: 0;
    overflow: hidden;
    position: relative;
}

.info-card {
    width: 326px;
    height: 475px;
    background: white;
    border: 1px solid #F7F7F7;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    flex-shrink: 0;
    display: flex !important;
    flex-direction: column;
    gap: 0;
}

.info-card:hover {
    background: #CFF0D7;
}

.info-image {
    position: relative;
    width: 296px;
    height: 180px;
    margin: 20px auto 0;
    min-height: 180px;
    max-height: 180px;
    overflow: hidden;
}

.info-image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    max-height: 180px;
    object-fit: cover;
}

.info-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #299D68;
    color: white;
    padding: 8px 10px;
    border-radius: 14px;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    z-index: 2;
}

.info-category.акции {
    background: #F60001;
}

.info-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-title {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: 0%;
    color: #2D2D2D;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 78px;
}

.info-excerpt {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0%;
    color: #2D2D2D;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-meta {
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
    padding-top: 15px;
}

.info-date {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0%;
    color: #808080;
}

.info-btn {
    background: #81AE64;
    color: white;
    border: none;
    padding: 14px 20px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    margin-top: 15px;

    transition: all 0.3s ease;
    width: 100%;
}

.info-btn:hover {
    background: #6B9A4F;
}

.discount-section {
    background: #F8F9FA;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 80px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.discount-text {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 30px;
    line-height: 1.6;
}

.discount-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.discount-input {
    padding: 14px 20px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    width: 293px;
    border: 1px solid #E8E8E8;
    outline: none;
}

@media (max-width: 768px) {
    .discount-input {
        width: 100%;
    }
}

.discount-input:focus {
    border-color: #81AE64;
}

.discount-btn {
    background: transparent;
    border: 1px solid #81AE64;
    color: #81AE64;
    padding: 15px 30px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discount-btn:hover {
    background: #6B9A4F;
}

.discount-legal {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 145%;
    color: #808080;
    max-width: 407px;
}

.reviews-section {
    margin-bottom: 80px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.review-image {
    flex-shrink: 0;
}

.review-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.review-product {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 10px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-value {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    color: #666;
}

.review-author {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 5px;
}

.review-date {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.review-text {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Article Page Styles */
.article-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.article-main {
    flex: 1;
}

.article-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .article-layout {
        flex-direction: column;
        gap: 30px;
    }

    .article-sidebar {
        flex: none;
        width: 100%;
    }
}

/* Article title uses page-title class from existing styles */

.page-whole-container {
    background: white;
    max-width: 1388px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    margin-top: 24px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #808080;
}

.article-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-content-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.article-image {
    flex: 0 0 311px;
}

.article-image img {
    width: 311px;
    height: 220px;
    object-fit: cover;
}

.article-content {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0%;
    color: #2D2D2D;
    margin-bottom: 40px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-link {
    color: #81AE64;
    text-decoration: underline;
}

.article-link:hover {
    color: #6B9A4F;
}

.article-actions {
    margin-top: 40px;
}

.back-to-news-btn {
    display: inline-block;
    width: 296px;
    height: 50px;
    padding: 14px 20px;
    border: 1px solid #81AE64;
    border-radius: 25px;
    background: white;
    color: #81AE64;
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 145%;
    letter-spacing: 0%;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.back-to-news-btn:hover {
    background: #81AE64;
    color: white;
}

/* Advertisement Cards */
.advertisement-card {
    width: 336px;
    height: 483px;
    background: white;
    border: 1px solid #F7F7F7;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.advertisement-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ad-image {
    margin-bottom: 15px;
    flex: 0 0 auto;
}

.ad-image img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 4px;
}

.ad-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ad-price {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #2D2D2D;
    margin-bottom: 10px;
    text-align: left;
}

.ad-description {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 145%;
    letter-spacing: 0%;
    color: #2D2D2D;
    margin-bottom: 15px;
}

.ad-button {
    width: 296px;
    height: 50px;
    background: linear-gradient(270deg, #82AD64 0%, #81AE64 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    padding: 14px 20px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 145%;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.ad-button:hover {
    opacity: 0.9;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column:first-child,
    .footer-column:nth-child(2) {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        align-items: center !important;
    }

    .footer-search {
        width: 100%;
    }

    .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .address-row {
        align-items: center;
    }

    .address {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .payment-icons {
        transform: scale(0.7);
    }
}

.header-top {
    background: #34495e;
    padding: 10px 0;
}

.header-main {
    background: #4CAF50;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.slogan {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-icon {
    font-size: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-weight: 600;
    font-size: 16px;
    color: white;
}

.search, .login {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
    color: white;
}

/* Header */
.header {
    background: #2c3e50;
    color: white;
}

.header-top {
    background: #34495e;
    padding: 10px 0;
}

.header-top-content {
    display: flex;
    align-items: center;
}


.header-main {
    background: #4CAF50;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.slogan {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-icon {
    font-size: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-weight: 600;
    font-size: 16px;
}

.search, .login {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* Main Content */
.intec-template-layout-content {
    background: white;
    min-height: 60vh;
    padding: 40px 0;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #4CAF50;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 10px;
}

.page-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
}

.content-section {

    padding: 30px 0 0 0;

}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.content-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.benefits-list li::before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #F8F9FB;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #e8f5e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f0f8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    border: 2px solid #4CAF50;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Footer */
.footer {
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.search-box {
    display: flex;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 4px 0 0 4px;
    color: white;
    font-size: 14px;
}

.search-input::placeholder {
    color: #bdc3c7;
}

.search-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #003C11;
    cursor: pointer;
    font-size: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #bdc3c7;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #4CAF50;
}

/* Cookie Consent */
.cookie-consent {
    background: #ecf0f1;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.cookie-consent .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent p {
    font-size: 14px;
    color: #555;
    margin: 0;
    flex: 1;
}

.cookie-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background: #45a049;
}

/* Responsive */
@media (max-width: 768px) {
    .header-main-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-list {
        justify-content: center;
        gap: 20px;
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .page-main-title {
        font-size: 24px;
    }

    .content-section {
        padding: 20px;
    }

    .cookie-consent .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .header-actions {
        flex-direction: column;
        gap: 10px;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .slogan {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .article-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .article-image {
        flex: none;
        width: 100%;
    }

    .article-image img {
        width: 100%;
        height: 250px;
    }

    .article-content {
        font-size: 14px;
    }

    .article-meta {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        justify-content: flex-start;
    }

    .article-sidebar {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
        padding-bottom: 10px;
        flex: unset;
    }

    .advertisement-card {
        flex: 0 0 336px;
        width: 336px;
        margin: 0;
    }

    .ad-button {
        width: 100%;
        max-width: 296px;
    }
}



.widget.c-widget.c-widget-navigation-button-top .widget-button {
    display: none !important;
}

.widget-view .widget-view-5 .widget-wrapper-2 .widget-part-items.intec-grid.intec-grid-wrap.intec-grid-a-h-start {
    justify-content: flex-start !important;
}

.info-carouselsqs .owl-nav {
    position: absolute;
    width: 100%;
}

.info-carouselsqs .owl-nav button{
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
}
.info-carouselsqs .owl-nav button:last-child {
    position: absolute;
    right: 0;
}

.catalog-section-item-vote, .catalog-element-vote, .catalog-element-tabs .owl-item:nth-child(3) {
    display: none !important;
}

.c-slider.c-slider-template-1 [data-mobile-separated=true] .widget-item-block-mobile {
    background-size: contain;
}

.catalog-section-item-image-button-compare,
.sale-basket-small-switches .sale-basket-small-switch:nth-child(2),
.sale-basket-small-switches .sale-basket-small-switch:last-child,
.container-15552,
.catalog-element-purchase-buttons-wrapper,
.sale-basket-small-product-content .sale-basket-small-product-add-basket,
.basket-item-desktop-actions .intec-grid-item-auto:first-child,
.menu-content-other-items,
.menu-basket-panel .menu-basket-panel-button-wrap:last-child,
.menu-basket-panel .menu-basket-panel-button-wrap:nth-child(2),
.menu-content-feedback-wrap,
.scrollbar .scroll-content .widget-body .widget-item-container:nth-child(4),
.scrollbar .scroll-content .widget-body .widget-item-container:last-child,
.basket-item-control-wrap .basket-item-add-delayed
{
    display: none !important;
}
.scrollbar .scroll-content .widget-body.intec-grid{
    justify-content: center !important;
}

@media (max-width: 768px) {
    .c-slider.c-slider-template-1 .widget-item-content-body.intec-grid {
        height: 105px !important;
    }
}
@media (max-width: 768px) {
    .c-slider.c-slider-template-1 [data-dots-view="1"][data-mobile-separated=true] .widget-slider-dots, .c-slider.c-slider-template-1 [data-dots-view="2"][data-mobile-separated=true] .widget-slider-dots {
        bottom: calc(27% + 16px) !important;
    }
}

.ab-sidebar {
    top: 72% !important;
    z-index: 9999 !important;
}

.menu-item-text-wrapper span {
    font-size: 11px;
    max-width: 120px;
    display: block;
    white-space: normal;
}

