a:focus,
a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
 /* Контент для демо */
        .demo-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 1.2rem;
        }

        /* Футер */
        footer {
            background: #1a1a1a;
            color: #fff;
            margin-top: auto;
            padding-top: 40px;
        }


        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #e28234;
        }

        .footer-about p {
            color: #b0b0b0;
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #e28234;
        }

        .footer-contact p {
            color: #b0b0b0;
            margin-bottom: 12px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-contact a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: #e28234;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding: 10px 0;
            border-top: 1px solid #2a2a2a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #e28234;
        }

        /* Адаптивність */
        @media (max-width: 992px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {

            .footer-main {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {

            .footer-column h3 {
                font-size: 0.85rem;
            }

            .footer-links a,
            .footer-contact p {
                font-size: 0.9rem;
            }

            .social-links {
                justify-content: center;
            }
        }
        /* //////// */
        /* Головний контент */
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 700;
        }

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

        .contact-card {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            box-shadow: 0 4px 20px rgba(226, 130, 52, 0.1);
            transform: translateY(-2px);
        }

        .contact-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e28234 0%, #f09145 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            margin-bottom: 25px;
        }

        .contact-card h2 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 600;
        }

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

        .contact-info-item {
            display: flex;
            align-items: start;
            margin-bottom: 15px;
            padding: 12px;
            background: #f9f9f9;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            background: #fff5f0;
        }

        .contact-info-item strong {
            min-width: 100px;
            color: #1a1a1a;
            font-size: 0.95rem;
        }

        .contact-info-item a {
            color: #e28234;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .contact-info-item a:hover {
            color: #c56d28;
        }

        .contact-info-item span {
            color: #555;
        }

        /* Форма */
        .contact-form-section {
            background: #fff;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
        }

        .contact-form-section h2 {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 600;
            text-align: center;
        }

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

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

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #1a1a1a;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: #fff;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #e28234;
            box-shadow: 0 0 0 3px rgba(226, 130, 52, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .btn-submit {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #e28234 0%, #f09145 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(226, 130, 52, 0.3);
            width: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(226, 130, 52, 0.4);
        }

        /* Оптові закупки */
        .wholesale-section {
            background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
            border-radius: 12px;
            padding: 50px;
            margin-bottom: 50px;
            border-left: 4px solid #e28234;
        }

        .wholesale-section h2 {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

        .wholesale-benefit {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .wholesale-benefit-icon {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .wholesale-benefit h3 {
            font-size: 1.1rem;
            color: #1a1a1a;
            margin-bottom: 10px;
            font-weight: 600;
        }

        /* Карта або додаткова інфо */
        .info-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .info-box {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .info-box-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .info-box h3 {
            font-size: 1.3rem;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 600;
        }
        /* Адаптивність */
        @media (max-width: 992px) {
            .contacts-grid {
                grid-template-columns: 1fr;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }

            .contact-card,
            .contact-form-section,
            .wholesale-section {
                padding: 30px 25px;
            }

            .contact-form-section h2,
            .wholesale-section h2 {
                font-size: 1.6rem;
            }

            .wholesale-benefits {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.6rem;
            }

            .contact-card,
            .contact-form-section,
            .wholesale-section {
                padding: 25px 20px;
            }

            .contact-info-item {
                flex-direction: column;
                gap: 5px;
            }

            .contact-info-item strong {
                min-width: auto;
            }

            .footer-column h3 {
                font-size: 0.85rem;
            }

            .footer-links a,
            .footer-contact p {
                font-size: 0.9rem;
            }

            .social-links {
                justify-content: center;
            }
        }