/* Reset and Base Styles with Performance optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Improve rendering performance */
*,
*::before,
*::after {
    backface-visibility: hidden;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Optimize images */
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Lazy loading styles */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Fade in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth focus styles for accessibility */
:focus {
    outline: 2px solid #8BC34A;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .callback-btn,
    .nav-link {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 12px;
    color: #666;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info .icon {
    margin-right: 5px;
}

.header-phones {
    display: flex;
    gap: 15px;
    font-weight: bold;
    color: #333;
}

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

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

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.logo-symbol {
    font-weight: bold;
    font-size: 24px;
    color: white;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

.search-callback {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.search-box input {
    padding: 10px 15px;
    border: none;
    outline: none;
    width: 250px;
}

.search-box button {
    padding: 10px 15px;
    background: #8BC34A;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
    min-width: 80px;
}

.callback-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.callback-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.callback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.callback-btn:hover::before {
    left: 100%;
}

/* Navigation Styles */
.navigation {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
}

.navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 15px 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav-menu a:hover {
    border-bottom-color: white;
}

.cart {
    font-size: 12px;
    text-align: right;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f5f5f5;
    padding: 10px 0;
    font-size: 12px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #8BC34A;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 25px;
}

.sidebar-section h3 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section li {
    margin-bottom: 5px;
}

.sidebar-section a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.sidebar-section a:hover {
    color: #8BC34A;
}

.expert-card {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.expert-card h4 {
    font-size: 13px;
    margin-bottom: 10px;
}

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

.expert-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
}

.expert-info {
    font-size: 12px;
}

.expert-title {
    color: #8BC34A;
    font-weight: bold;
}

/* Article Content */
.article-content {
    background: white;
}

.article-content h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-date {
    color: #666;
    font-size: 12px;
    margin-bottom: 20px;
}

.article-body {
    line-height: 1.6;
}

.article-image {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 200px;
}

.article-image img {
    width: 100%;
    border-radius: 5px;
}

.article-tags {
    margin: 20px 0;
    color: #8BC34A;
    font-size: 13px;
}

.tag {
    display: block;
    margin-bottom: 3px;
}

.article-body h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 25px 0 15px 0;
}

.article-body p {
    margin-bottom: 15px;
    text-align: justify;
}

.article-body ul, .article-body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 8px;
}

.question-form {
    margin: 30px 0;
    text-align: center;
}

.ask-question-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Products Section */
.recommended-products {
    margin-top: 50px;
}

.recommended-products h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    color: white;
}

.product-badge.new {
    background: #2196F3;
}

.product-badge.hit {
    background: #FF5722;
}

.product-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #f5f5f5;
}

.product-card h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.rating {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.product-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.products-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: #8BC34A;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}

.dots {
    color: #8BC34A;
}

/* Footer */
.footer {
    background: #2E2E2E;
    color: white;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0 30px 0;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #8BC34A;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
}

.footer-section a:hover {
    color: #8BC34A;
}

.contact-item {
    margin-bottom: 10px;
    font-size: 13px;
    color: #ccc;
}

.license-info {
    margin: 15px 0;
    padding: 8px;
    background: rgba(139, 195, 74, 0.1);
    border-radius: 5px;
    border-left: 3px solid #8BC34A;
}

.license-info small {
    color: #8BC34A;
    font-weight: bold;
    font-size: 11px;
}

.company-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 3px solid #8BC34A;
}

.company-details p {
    margin-bottom: 5px;
    font-size: 11px;
}

.social-links {
    margin: 15px 0;
}

.social-link {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
}

.footer-callback-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.rating-widget {
    text-align: center;
}

.yandex-rating {
    background: #8BC34A;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.captcha {
    background: #4285f4;
    color: white;
    padding: 8px;
    border-radius: 3px;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.footer-legal {
    font-size: 11px;
    color: #999;
    line-height: 1.5;
}

.footer-copyright {
    text-align: right;
    font-size: 12px;
    color: #ccc;
}

.payment-methods {
    margin-top: 10px;
    font-size: 14px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .article-content {
        order: 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .header-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .search-callback {
        width: 100%;
        justify-content: center;
    }
    
    .search-box {
        flex: 1;
        max-width: 300px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .article-image {
        float: none;
        margin: 20px auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* Animation for smooth loading */
.product-card, .sidebar, .article-content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legal Page Styles */
.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-page h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #8BC34A;
    padding-bottom: 15px;
}

.legal-page h2 {
    font-size: 24px;
    color: #8BC34A;
    margin: 40px 0 20px 0;
    border-left: 4px solid #8BC34A;
    padding-left: 15px;
}

.legal-page h3 {
    font-size: 18px;
    color: #333;
    margin: 25px 0 15px 0;
    font-weight: bold;
}

.legal-page h4 {
    font-size: 16px;
    color: #555;
    margin: 20px 0 10px 0;
    font-weight: bold;
}

.info-block {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid #8BC34A;
}

.license-block {
    background: linear-gradient(145deg, #f1f8e9, #e8f5c8);
    border-left: 4px solid #4CAF50;
}

.license-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 15px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.legal-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.legal-table td:first-child {
    background: #f5f5f5;
    font-weight: bold;
    width: 35%;
    color: #555;
}

.legal-table td:last-child {
    background: white;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-block {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 3px solid #8BC34A;
}

.contact-block h3 {
    color: #8BC34A;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-block p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for legal page */
@media (max-width: 768px) {
    .legal-page {
        padding: 20px;
        margin: 10px;
    }
    
    .legal-page h1 {
        font-size: 24px;
    }
    
    .legal-page h2 {
        font-size: 20px;
    }
    
    .legal-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .legal-table td:first-child {
        width: 40%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-block {
        padding: 15px;
    }
}

/* About Page Styles */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
}

.company-intro {
    background: linear-gradient(135deg, #f1f8e9, #e8f5c8);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-content h2 {
    font-size: 28px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #8BC34A;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #8BC34A;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 18px;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.advantage-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #8BC34A;
}

.advantage-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.member-info h3 {
    color: #4CAF50;
    font-size: 20px;
    margin-bottom: 5px;
}

.position {
    color: #8BC34A;
    font-weight: bold;
    margin-bottom: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-grid .info-block {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-grid .info-block h3 {
    color: #8BC34A;
    font-size: 14px;
    margin-bottom: 10px;
}

.info-grid .info-block p {
    font-weight: bold;
    color: #333;
}

.contact-cta {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.contact-cta h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.cta-buttons {
    margin: 30px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: #4CAF50;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Catalog Page Styles */
.catalog-page {
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-intro {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.filters {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.filter-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.filter-group h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 16px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
}

.filter-group input[type="checkbox"] {
    margin-right: 8px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #8BC34A;
}

.category-card h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 18px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.category-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.category-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8BC34A;
    font-weight: bold;
}

.image-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    padding: 40px 20px;
    text-align: center;
    color: #666;
    border-radius: 8px;
    font-size: 14px;
}

.product-features {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: #e8f5c8;
    color: #4CAF50;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid #8BC34A;
}

.service-item h3 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 16px;
}

.cta-section {
    background: linear-gradient(135deg, #f1f8e9, #e8f5c8);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.cta-section h2 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 20px;
    color: #666;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .company-intro {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .company-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-groups {
        grid-template-columns: 1fr;
    }
    
    .category-grid, .services-grid, .advantages-list, .services-list {
        grid-template-columns: 1fr;
    }
}

/* Services Page Styles */
.services-page {
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.service-price {
    font-size: 18px;
    font-weight: bold;
    color: #4CAF50;
    margin-top: 15px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px auto;
}

.step h3 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 16px;
}

.guarantees-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.guarantee-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #8BC34A;
    text-align: center;
}

.guarantee-item h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Responsive for services page */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .guarantees-list {
        grid-template-columns: 1fr;
    }
}

/* Contacts Page Styles */
.contacts-page {
    max-width: 1200px;
    margin: 0 auto;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #8BC34A;
}

.contact-card h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8BC34A;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.submit-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.map-container {
    margin: 30px 0;
}

.map-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    padding: 60px 40px;
    text-align: center;
    border-radius: 10px;
    color: #666;
}

.directions {
    margin-top: 30px;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.transport-option {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.transport-option h4 {
    color: #4CAF50;
    margin-bottom: 10px;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-left: 4px solid #8BC34A;
}

.faq-item h3 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 16px;
}

.emergency-contact {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border-left: 4px solid #f44336;
}

.emergency-phones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.emergency-phone {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.emergency-note {
    background: rgba(244, 67, 54, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

/* Responsive for contacts page */
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
    }
    
    .emergency-phones {
        grid-template-columns: 1fr;
    }
}

/* Catalog Page Styles */
.catalog-header {
    text-align: center;
    margin-bottom: 40px;
}

.catalog-description {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
}

.catalog-filters {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.apply-filters-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.apply-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.products-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.product-badge:not(.new):not(.premium) {
    background: #ff5722;
}

.product-badge.new {
    background: #4CAF50;
}

.product-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 20px;
}

.product-type {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    background: #e8f5e8;
    color: #4CAF50;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.product-specs {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.product-specs p {
    margin-bottom: 5px;
}

.product-price {
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
    font-size: 18px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.add-to-cart-btn,
.consultation-btn {
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
}

.consultation-btn {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.consultation-btn:hover {
    background: #4CAF50;
    color: white;
}

.purchase-info,
.guarantees-section {
    margin: 50px 0;
}

.purchase-info h2,
.guarantees-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.info-grid,
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card,
.guarantee-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-card h3,
.guarantee-item h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Reviews Page Styles */
.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 20px auto 30px;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #4CAF50;
}

.stat-label {
    display: block;
    color: #666;
    margin-top: 5px;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-top: 5px;
}

.reviews-filters {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #8BC34A;
    background: transparent;
    color: #8BC34A;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #8BC34A;
    color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.reviewer-details h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.review-date {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.review-rating {
    color: #FFD700;
    font-size: 16px;
}

.review-category {
    background: #e8f5e8;
    color: #4CAF50;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.review-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-item {
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: #666;
}

.add-review-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.add-review-section h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.add-review-section p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8BC34A;
}

.rating-input {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-input .star {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-input .star:hover,
.rating-input .star.active {
    color: #FFD700;
}

.submit-review-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.reviews-guarantees {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.reviews-guarantees h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .products-catalog {
        grid-template-columns: 1fr;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .reviews-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* News Page Styles */
.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

.news-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 12px 25px;
    border: 2px solid #8BC34A;
    background: transparent;
    color: #8BC34A;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #8BC34A;
    color: white;
}

.featured-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.featured-article .article-image {
    position: relative;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-article .article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #4CAF50;
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.featured-article .article-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-article h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 1.3;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #888;
}

.read-more-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image .article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.4;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.read-more {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

.newsletter-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-content h2 {
    color: #333;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.checkbox-label input {
    margin-right: 8px;
}

.newsletter-benefits h3 {
    color: #333;
    margin-bottom: 15px;
}

.newsletter-benefits ul {
    list-style: none;
    padding: 0;
}

.newsletter-benefits li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.newsletter-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.popular-topics {
    margin: 50px 0;
}

.popular-topics h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.topic-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.topic-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.topic-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.topic-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.topic-link:hover {
    text-decoration: underline;
}

/* Delivery Page Styles */
.delivery-header {
    text-align: center;
    margin-bottom: 40px;
}

.delivery-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.delivery-method {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.delivery-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.method-icon {
    text-align: center;
    margin-bottom: 20px;
}

.icon-placeholder {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    padding: 15px;
    border-radius: 50%;
    display: inline-block;
    font-weight: bold;
    min-width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.method-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.method-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.method-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-label {
    color: #666;
    font-weight: bold;
}

.detail-value {
    color: #333;
}

.detail-value.free {
    color: #4CAF50;
    font-weight: bold;
}

.method-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.method-features .feature {
    background: #e8f5e8;
    color: #4CAF50;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.payment-method {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.payment-icon {
    margin-bottom: 15px;
}

.payment-icon .icon-placeholder {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-weight: bold;
    font-size: 12px;
}

.payment-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.payment-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.payment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.payment-features .feature {
    background: #e8f5e8;
    color: #4CAF50;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.condition-block {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.condition-block h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 18px;
}

.condition-block ul {
    list-style: none;
    padding: 0;
}

.condition-block li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.condition-block li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

.zones-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.zone-info {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.zone-info h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
}

.zone-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.zone-label {
    color: #666;
}

.zone-value {
    color: #333;
    font-weight: bold;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-method h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 18px;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.contact-note {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.order-btn {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

/* Responsive for news and delivery pages */
@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .featured-article .article-content {
        padding: 25px;
    }
    
    .featured-article h2 {
        font-size: 22px;
    }
    
    .newsletter-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-grid,
    .payment-grid,
    .conditions-grid,
    .zones-container,
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .news-categories {
        justify-content: flex-start;
    }
} 