*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background: #f4f6f4; color: #1a1a1a; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }

        .container { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

        .top-bar { background: #1a1a1a; padding: 10px 0; }
        .top-bar-inner { display: flex; align-items: center; justify-content: space-between; }
        .top-bar-left { display: flex; align-items: center; gap: 28px; }
        .top-bar-link { color: #8a8a8a; font-size: 13px; font-weight: 500; transition: color 0.2s; }
        .top-bar-link:hover { color: #fff; }
        .top-bar-right { display: flex; align-items: center; gap: 32px; }
        .top-bar-phone { color: #fff; font-size: 15px; font-weight: 700; transition: opacity 0.2s; }
        .top-bar-phone:hover { opacity: 0.8; }
        .top-bar-email { color: #6fcf6f; font-size: 13px; font-weight: 500; transition: color 0.2s; }
        .top-bar-email:hover { color: #fff; }
        .top-bar-sep { width: 1px; height: 16px; background: #333; }

        .main-header { background: #fff; border-bottom: 1px solid #e5e5e5; position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s; }
        .main-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
        .main-header-inner { display: flex; align-items: center; height: 76px; gap: 24px; }
        .logo-link { display: flex; align-items: center; flex-shrink: 0; transition: transform 0.2s; }
        .logo-link:hover { transform: scale(1.03); }
        .logo-link img { height: 50px; width: auto; }

        .catalog-btn {
            display: flex; align-items: center; gap: 12px; padding: 12px 24px;
            background: linear-gradient(135deg, #2d8c3c, #3ba54e); color: #fff; border: none; border-radius: 14px;
            font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; flex-shrink: 0;
            box-shadow: 0 2px 12px rgba(45,140,60,0.3);
        }
        .catalog-btn:hover { background: linear-gradient(135deg, #1f6b2c, #2d8c3c); box-shadow: 0 4px 20px rgba(45,140,60,0.4); transform: translateY(-1px); }
        .burger-lines { display: flex; flex-direction: column; gap: 4px; width: 18px; }
        .burger-lines span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
        .burger-lines span:nth-child(1) { width: 100%; }
        .burger-lines span:nth-child(2) { width: 70%; }
        .burger-lines span:nth-child(3) { width: 100%; }

        .search-wrapper { flex: 1; position: relative; }
        .search-input { width: 100%; height: 50px; padding: 0 130px 0 20px; border: 2px solid #e0e0e0; border-radius: 14px; font-size: 14px; font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fafafa; transition: all 0.3s; outline: none; }
        .search-input::placeholder { color: #aaa; }
        .search-input:focus { border-color: #3ba54e; background: #fff; box-shadow: 0 0 0 4px rgba(59,165,78,0.12); }
        .search-right { position: absolute; right: 6px; top: 6px; bottom: 6px; display: flex; align-items: center; gap: 6px; }
        .search-btn { width: 38px; height: 38px; background: #3ba54e; border: none; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
        .search-btn:hover { background: #2d8c3c; }
        .search-btn svg { width: 18px; height: 18px; color: #fff; }
        .search-category-btn { padding: 8px 14px; background: #f0f0f0; border: none; border-radius: 10px; font-size: 12px; font-weight: 600; font-family: 'Inter', sans-serif; color: #555; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
        .search-category-btn:hover { background: #e0e0e0; }

        .header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
        .action-link { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 14px; color: #555; border-radius: 12px; transition: all 0.2s; position: relative; }
        .action-link:hover { background: #f0f7f1; color: #2d8c3c; }
        .action-link svg { width: 22px; height: 22px; }
        .action-link .label { font-size: 11px; font-weight: 600; }
        .action-link .badge { position: absolute; top: 2px; right: 6px; background: #e53935; color: #fff; font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; border: 2px solid #fff; }
        .request-btn { display: flex; align-items: center; gap: 8px; padding: 12px 22px; background: linear-gradient(135deg, #ff9500, #ff6f00); color: #fff; border: none; border-radius: 14px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 2px 12px rgba(255,149,0,0.3); white-space: nowrap; }
        .request-btn:hover { background: linear-gradient(135deg, #ff6f00, #e65100); box-shadow: 0 4px 20px rgba(255,149,0,0.4); transform: translateY(-1px); }
        .request-btn svg { width: 18px; height: 18px; }
        .mobile-menu-btn { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border: none; background: none; cursor: pointer; padding: 0; }
        .mobile-menu-btn svg { width: 24px; height: 24px; color: #333; }

        .mobile-nav-overlay { position: fixed; top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.5);z-index:2000;opacity:0;visibility:hidden;transition:all 0.3s; }
        .mobile-nav-overlay.active { opacity:1;visibility:visible; }
        .mobile-nav { position:fixed;top:0;right:-320px;width:300px;max-width:85vw;height:100vh;background:#fff;z-index:2001;transition:right 0.3s cubic-bezier(0.4,0,0.2,1);overflow-y:auto;padding:24px; }
        .mobile-nav.active { right:0; }
        .mobile-nav-header { display:flex;align-items:center;justify-content:space-between;margin-bottom:24px;padding-bottom:16px;border-bottom:1px solid #eee; }
        .mobile-nav-close { width:36px;height:36px;border:none;background:#f5f5f5;border-radius:10px;cursor:pointer;display:flex;align-items:center;justify-content:center; }
        .mobile-nav-close svg { width:18px;height:18px;color:#666; }
        .mobile-nav-links { display:flex;flex-direction:column;gap:4px;margin-bottom:24px; }
        .mobile-nav-link { padding:12px 16px;border-radius:10px;font-size:15px;font-weight:500;color:#333;transition:background 0.2s; }
        .mobile-nav-link:hover { background:#f0f7f1;color:#2d8c3c; }
        .mobile-nav-divider { height:1px;background:#eee;margin:16px 0; }
        .mobile-nav-contacts { display:flex;flex-direction:column;gap:12px; }
        .mobile-nav-contact { display:flex;align-items:center;gap:10px;font-size:14px;font-weight:500;color:#333; }
        .mobile-nav-contact svg { width:18px;height:18px;color:#3ba54e;flex-shrink:0; }

        .breadcrumbs { padding: 16px 0 12px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: #888; flex-wrap: wrap; }
        .breadcrumbs a { color: #666; transition: color 0.2s; }
        .breadcrumbs a:hover { color: #3ba54e; }
        .breadcrumbs .sep { color: #ccc; }
        .breadcrumbs .current { color: #1a1a1a; font-weight: 500; }

        /* ===== PRODUCT LAYOUT ===== */
        .product-page { margin-top: 24px; }

        .product-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: #fff;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid #e8e8e8;
        }

        /* Gallery */
        .gallery-container {}
        .main-image-wrapper {
            width: 100%;
            aspect-ratio: 4 / 3;
            max-height: 420px;
            border-radius: 16px;
            overflow: hidden;
            background: #f9f9f9;
            margin-bottom: 12px;
            position: relative;
            cursor: zoom-in;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .main-image-wrapper img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
        .main-image-wrapper:hover img { transform: scale(1.05); }

        .image-nav-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 36px; height: 36px; background: rgba(255,255,255,0.9); border: none;
            border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: all 0.2s; opacity: 0;
        }
        .gallery-container:hover .image-nav-btn { opacity: 1; }
        .image-nav-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
        .image-nav-btn.prev { left: 12px; }
        .image-nav-btn.next { right: 12px; }
        .image-nav-btn svg { width: 18px; height: 18px; color: #333; }

        .gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
        .thumb {
            aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; cursor: pointer;
            border: 2px solid transparent; transition: all 0.2s; opacity: 0.6; background: #f9f9f9;
        }
        .thumb:hover { opacity: 1; }
        .thumb.active { border-color: #3ba54e; opacity: 1; box-shadow: 0 2px 8px rgba(59,165,78,0.2); }
        .thumb img { width: 100%; height: 100%; object-fit: cover; }

        /* Product Info */
        .product-info { display: flex; flex-direction: column; }

        .product-title { font-size: 26px; font-weight: 800; color: #1a1a1a; line-height: 1.3; margin-bottom: 16px; }

        .product-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #eee; font-size: 14px; color: #666; }
        .meta-item { display: flex; align-items: center; gap: 6px; }
        .meta-item svg { width: 16px; height: 16px; color: #999; }
        .meta-item strong { color: #1a1a1a; }
        .meta-stock { color: #3ba54e; font-weight: 600; display: flex; align-items: center; gap: 6px; }
        .meta-stock .dot { width: 8px; height: 8px; background: #3ba54e; border-radius: 50%; display: inline-block; }

        .product-price-block { background: #fafafa; padding: 20px; border-radius: 14px; margin-bottom: 20px; }
        .price-row { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 6px; flex-wrap: wrap; }
        .current-price { font-size: 32px; font-weight: 800; color: #1a1a1a; }
        .old-price { font-size: 18px; color: #bbb; text-decoration: line-through; }
        .discount-badge { background: #ffebee; color: #e53935; padding: 3px 8px; border-radius: 6px; font-size: 13px; font-weight: 700; }
        .vat-note { font-size: 12px; color: #888; }

        .product-actions { display: flex; gap: 10px; margin-bottom: 16px; }
        .qty-selector { display: flex; align-items: center; background: #fff; border: 2px solid #e0e0e0; border-radius: 12px; overflow: hidden; }
        .qty-btn { width: 44px; height: 44px; border: none; background: none; font-size: 18px; color: #555; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
        .qty-btn:hover { background: #f5f5f5; }
        .qty-input { width: 44px; height: 44px; border: none; text-align: center; font-size: 16px; font-weight: 700; font-family: 'Inter', sans-serif; outline: none; }

        .add-to-cart-btn {
            flex: 1; padding: 0 28px; background: linear-gradient(135deg, #3ba54e, #2d8c3c);
            color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
            cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 12px rgba(59,165,78,0.3);
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .add-to-cart-btn:hover { background: linear-gradient(135deg, #2d8c3c, #1f6b2c); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(59,165,78,0.4); }
        .add-to-cart-btn svg { width: 18px; height: 18px; }

        /* Request block - compact horizontal */
        .request-compact {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 18px;
            background: #fff8f0;
            border: 1.5px solid #ffe0b2;
            border-radius: 14px;
            margin-bottom: 20px;
        }

        .request-compact-icon {
            width: 44px; height: 44px;
            background: #ff9800;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .request-compact-icon svg { width: 22px; height: 22px; color: #fff; }

        .request-compact-text { flex: 1; }
        .request-compact-text p { font-size: 13px; color: #666; margin-bottom: 2px; }
        .request-compact-text .phone-link { font-size: 16px; font-weight: 700; color: #1a1a1a; transition: color 0.2s; }
        .request-compact-text .phone-link:hover { color: #ff6f00; }

        .request-compact-btn {
            padding: 10px 20px;
            background: linear-gradient(135deg, #ff9500, #ff6f00);
            color: #fff; border: none; border-radius: 10px;
            font-size: 13px; font-weight: 700; cursor: pointer;
            transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
        }
        .request-compact-btn:hover { background: linear-gradient(135deg, #ff6f00, #e65100); transform: translateY(-1px); }

        /* Tabs */
        .product-tabs-section { margin-top: 40px; margin-bottom: 48px; }
        .tabs-header { display: flex; gap: 8px; border-bottom: 2px solid #e0e0e0; margin-bottom: 24px; overflow-x: auto; }
        .tab-btn { padding: 14px 24px; background: none; border: none; font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif; color: #666; cursor: pointer; position: relative; white-space: nowrap; transition: color 0.2s; }
        .tab-btn:hover { color: #1a1a1a; }
        .tab-btn.active { color: #3ba54e; }
        .tab-btn.active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: #3ba54e; }

        .tab-content { display: none; }
        .tab-content.active { display: block; }
        .tab-card { background: #fff; border-radius: 20px; border: 1px solid #e8e8e8; padding: 36px; }
        .tab-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
        .tab-card h3 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; }
        .tab-card p { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 16px; }
        .tab-card ul { padding-left: 20px; margin-bottom: 16px; }
        .tab-card li { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 8px; list-style: none; position: relative; padding-left: 16px; }
        .tab-card li::before { content: '•'; color: #3ba54e; font-weight: bold; position: absolute; left: 0; }
        .tab-card blockquote { border-left: 3px solid #3ba54e; background: #f8fdf8; padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 20px 0; }
        .tab-card blockquote p { font-style: italic; color: #555; margin-bottom: 0; }

        .specs-table { width: 100%; border-collapse: collapse; }
        .specs-table tr { border-bottom: 1px solid #f0f0f0; }
        .specs-table tr:last-child { border-bottom: none; }
        .specs-table td { padding: 14px 0; font-size: 15px; }
        .specs-table td:first-child { color: #666; width: 40%; font-weight: 500; }
        .specs-table td:last-child { color: #1a1a1a; font-weight: 600; }

        .review-summary { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #eee; }
        .review-score { text-align: center; }
        .review-score-num { font-size: 42px; font-weight: 800; color: #1a1a1a; line-height: 1; }
        .review-score-stars { color: #ffc107; margin: 6px 0 4px; display: flex; gap: 2px; justify-content: center; }
        .review-score-count { font-size: 13px; color: #888; }
        .review-bars { flex: 1; }
        .review-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
        .review-bar-label { font-size: 13px; font-weight: 600; width: 12px; }
        .review-bar-track { flex: 1; height: 6px; background: #eee; border-radius: 3px; overflow: hidden; }
        .review-bar-fill { height: 100%; background: #ffc107; border-radius: 3px; }
        .review-bar-count { font-size: 13px; color: #888; width: 16px; }
        .review-card { background: #fafafa; border-radius: 14px; padding: 20px; margin-bottom: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 36px; height: 36px; border-radius: 50%; background: #e0e0e0; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #555; font-size: 14px; }
        .review-author { font-weight: 700; font-size: 14px; }
        .review-date { font-size: 12px; color: #888; }
        .review-stars { margin-bottom: 6px; }
        .review-stars svg { width: 14px; height: 14px; color: #ffc107; }
        .review-text { font-size: 14px; color: #444; line-height: 1.6; }

        /* Similar Products */
        .similar-section { margin-top: 48px; margin-bottom: 64px; }
        .section-title { font-size: 24px; font-weight: 800; margin-bottom: 24px; }
        .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
        .product-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8e8e8; transition: all 0.3s; display: flex; flex-direction: column; }
        .product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); border-color: #c8e6c9; }
        .product-image { width: 100%; height: 160px; background: #f9f9f9; display: flex; align-items: center; justify-content: center; overflow: hidden; }
        .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .product-card:hover .product-image img { transform: scale(1.05); }
        .product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
        .product-brand { font-size: 11px; font-weight: 700; color: #3ba54e; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
        .product-name { font-size: 13px; font-weight: 600; color: #1a1a1a; line-height: 1.35; margin-bottom: 6px; flex: 1; }
        .product-name a:hover { color: #3ba54e; }
        .product-price { font-size: 17px; font-weight: 800; color: #1a1a1a; margin-bottom: 12px; }
        .product-actions { display: flex; gap: 6px; margin-top: auto; }
        .product-btn-cart { flex: 1; padding: 9px; background: linear-gradient(135deg, #3ba54e, #2d8c3c); color: #fff; border: none; border-radius: 10px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
        .product-btn-cart:hover { box-shadow: 0 2px 8px rgba(59,165,78,0.3); }
        .product-btn-details { padding: 9px 12px; background: #f5f5f5; border: none; border-radius: 10px; font-size: 11px; font-weight: 600; color: #666; cursor: pointer; transition: all 0.2s; }
        .product-btn-details:hover { background: #e8f5e9; color: #2d8c3c; }

        /* Advantages Bar */
        .advantages-bar { background: #fff; border-radius: 20px; border: 1px solid #e8e8e8; overflow: hidden; margin-bottom: 48px; }
        .advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
        .advantage-item { display: flex; align-items: center; gap: 14px; padding: 24px 28px; border-right: 1px solid #f0f0f0; transition: background 0.2s; }
        .advantage-item:last-child { border-right: none; }
        .advantage-item:hover { background: #f8fdf8; }
        .advantage-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #e8f5e9, #d4edda); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .advantage-icon svg { width: 20px; height: 20px; color: #2d8c3c; }
        .advantage-title { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 1px; }
        .advantage-desc { font-size: 12px; color: #888; }

        /* Footer */
        .footer { background: #1a1a1a; color: #ccc; padding-top: 56px; }
        .footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
        .footer-logo { display: flex; align-items: center; margin-bottom: 16px; }
        .footer-logo img { height: 44px; width: auto; }
        .footer-brand-desc { font-size: 14px; color: #888; line-height: 1.6; margin-bottom: 20px; }
        .footer-socials { display: flex; gap: 10px; }
        .footer-social { width: 40px; height: 40px; border-radius: 10px; background: #2a2a2a; display: flex; align-items: center; justify-content: center; transition: all 0.2s; cursor: pointer; }
        .footer-social:hover { background: #3ba54e; }
        .footer-social svg { width: 18px; height: 18px; color: #888; }
        .footer-social:hover svg { color: #fff; }
        .footer-col-title { font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-link { font-size: 14px; color: #888; transition: color 0.2s; }
        .footer-link:hover { color: #3ba54e; }
        .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
        .footer-contact-item svg { width: 18px; height: 18px; color: #3ba54e; flex-shrink: 0; margin-top: 2px; }
        .footer-contact-text { font-size: 14px; color: #888; line-height: 1.5; }
        .footer-contact-text a { color: #fff; font-weight: 600; transition: color 0.2s; }
        .footer-contact-text a:hover { color: #3ba54e; }
        .footer-bottom { border-top: 1px solid #2a2a2a; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
        .footer-copyright { font-size: 13px; color: #666; }
        .footer-bottom-links { display: flex; gap: 24px; }
        .footer-bottom-link { font-size: 13px; color: #666; transition: color 0.2s; }
        .footer-bottom-link:hover { color: #3ba54e; }

        /* Responsive */
        @media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } .footer-main { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 1024px) {
            .product-layout { grid-template-columns: 1fr; gap: 28px; padding: 20px; }
            .main-image-wrapper { aspect-ratio: 4/3; max-height: 360px; }
        }
        @media (max-width: 900px) {
            .container { padding: 0 20px; }
            .top-bar-left { display: none; }
            .top-bar-right { justify-content: center; width: 100%; }
            .mobile-menu-btn { display: flex; }
            .catalog-btn { display: none; }
            .main-header-inner { gap: 12px; height: 64px; }
            .search-input { height: 42px; padding: 0 50px 0 14px; font-size: 13px; }
            .search-category-btn { display: none; }
            .search-right { right: 4px; }
            .search-btn { width: 34px; height: 34px; }
            .request-btn .req-text { display: none; }
            .action-link .label { display: none; }
            .action-link { padding: 8px 10px; }
            .product-title { font-size: 22px; }
            .current-price { font-size: 26px; }
            .product-actions { flex-direction: column; }
            .qty-selector { width: 100%; }
            .qty-btn { width: 56px; }
            .qty-input { width: 100%; }
            .add-to-cart-btn { width: 100%; padding: 14px; }
            .request-compact { flex-direction: column; text-align: center; gap: 12px; }
            .request-compact-btn { width: 100%; }
            .advantages-grid { grid-template-columns: repeat(2, 1fr); }
            .advantage-item { border-bottom: 1px solid #f0f0f0; padding: 18px 20px; }
            .advantage-item:nth-child(2) { border-right: none; }
            .footer-main { grid-template-columns: repeat(2, 1fr); gap: 32px; }
            .footer-brand { grid-column: 1 / -1; }
            .footer-bottom { flex-direction: column; text-align: center; padding: 20px 0; }
            .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
        }
        @media (max-width: 600px) {
            .container { padding: 0 14px; }
            .top-bar { padding: 8px 0; }
            .top-bar-right { gap: 16px; }
            .top-bar-phone { font-size: 13px; }
            .top-bar-email { font-size: 11px; }
            .main-header-inner { padding: 0 14px; height: 58px; }
            .logo-link img { height: 38px; }
            .search-input { height: 40px; padding-right: 44px; font-size: 12px; }
            .search-btn { width: 32px; height: 32px; }
            .product-layout { padding: 14px; border-radius: 14px; gap: 20px; }
            .main-image-wrapper { aspect-ratio: 1/1; max-height: 280px; border-radius: 12px; }
            .gallery-thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
            .thumb { border-radius: 8px; }
            .product-meta { flex-direction: column; gap: 6px; }
            .product-price-block { padding: 14px; }
            .tabs-header { gap: 4px; }
            .tab-btn { padding: 10px 14px; font-size: 13px; }
            .tab-card { padding: 18px; }
            .tab-card h2 { font-size: 18px; }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .product-image { height: 130px; }
            .product-body { padding: 10px; }
            .product-name { font-size: 12px; }
            .product-price { font-size: 15px; margin-bottom: 10px; }
            .product-btn-cart { padding: 8px; font-size: 11px; }
            .product-btn-details { padding: 8px 10px; font-size: 10px; }
            .review-summary { flex-direction: column; align-items: flex-start; gap: 16px; }
            .advantages-bar { border-radius: 14px; }
            .advantages-grid { grid-template-columns: 1fr; }
            .advantage-item { border-right: none; padding: 14px 18px; }
            .footer { padding-top: 36px; }
            .footer-main { grid-template-columns: 1fr; gap: 28px; }
            .footer-brand { grid-column: auto; }
        }

/* ===== WooCommerce single-product exact-template fixes ===== */
body.single-product .woocommerce-notices-wrapper,
.myagro-product-template .woocommerce-notices-wrapper {
    margin: 0 auto 16px;
    max-width: 1440px;
    padding: 0 32px;
}
body.single-product .woocommerce-message,
body.single-product .woocommerce-info,
body.single-product .woocommerce-error {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-left: 4px solid #3ba54e;
    border-radius: 14px;
    box-shadow: none;
    color: #333;
    font-family: 'Inter', sans-serif;
    margin: 16px 0;
    padding: 14px 18px;
}
body.single-product .woocommerce-error { border-left-color: #e53935; }
.myagro-product-template .cart {
    margin: 0;
}
.myagro-product-template .product-actions form.cart {
    display: contents;
}
.myagro-product-template .product-actions .quantity {
    display: none !important;
}
.myagro-product-template button,
.myagro-product-template input,
.myagro-product-template textarea,
.myagro-product-template select {
    font-family: 'Inter', sans-serif;
}
.myagro-product-template .single_add_to_cart_button.add-to-cart-btn {
    text-transform: none;
    line-height: 1;
    min-height: 48px;
}
.myagro-product-template .single_add_to_cart_button.add-to-cart-btn.disabled,
.myagro-product-template .single_add_to_cart_button.add-to-cart-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
.myagro-product-template .tabs-header::-webkit-scrollbar { height: 3px; }
.myagro-product-template .tabs-header::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.myagro-product-template .tab-card .woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
}
.myagro-product-template .tab-card .woocommerce-product-attributes tr {
    border-bottom: 1px solid #f0f0f0;
}
.myagro-product-template .tab-card .woocommerce-product-attributes th,
.myagro-product-template .tab-card .woocommerce-product-attributes td {
    padding: 14px 0;
    font-size: 15px;
    text-align: left;
    border: none;
    background: transparent;
}
.myagro-product-template .tab-card .woocommerce-product-attributes th {
    color: #666;
    width: 40%;
    font-weight: 500;
}
.myagro-product-template .tab-card .woocommerce-product-attributes td {
    color: #1a1a1a;
    font-weight: 600;
}
.myagro-product-template .review-card .star-muted { color: #ddd; fill: #ddd; }
.myagro-product-template .products-grid .product-card a { color: inherit; text-decoration: none; }
.myagro-product-template .products-grid .product-btn-cart a { color: #fff; }
.myagro-product-template .product-btn-cart.is-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media (max-width: 900px) {
    body.single-product .woocommerce-notices-wrapper { padding: 0 20px; }
}
@media (max-width: 600px) {
    body.single-product .woocommerce-notices-wrapper { padding: 0 14px; }
}
