
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #f7f7f7;
        }

        /* TOP MENU */
        .top-menu {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            background: #111;
            color: #fff;
        }

        .menu-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* 3D лого */
        .logo {
            font-size: 26px;
            font-weight: 900;
            letter-spacing: 2px;
            color: #ffff22;
            text-decoration: none;
            text-shadow:
                1px 1px 0 #aaa,
                2px 2px 0 #888,
                3px 3px 0 #666,
                4px 4px 8px rgba(0,0,0,0.6);
            transition: transform 0.6s ease, text-shadow 0.6s ease;
        }

        .logo:hover {
            transform: translateY(-10px);
            text-shadow:
                1px 1px 0 #ccc,
                2px 2px 0 #aaa,
                3px 3px 0 #888,
                6px 6px 12px rgba(0,0,0,0.8);
        }
        .menu-left a.link {
            color: #fff;
            text-decoration: none;
        }

        .menu-left a.link:hover {
            text-decoration: underline;
        }

        .menu-center {
            color: #f5c542;
            font-weight: bold;
        }

        .menu-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-right input {
            padding: 6px;
            border-radius: 4px;
            border: none;
        }

        .cart-wrapper {
            cursor: pointer;
            font-size: 20px;
        }

        /* CONTACT SECTION */
        .contact-section {
            max-width: 700px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .contact-form {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .contact-form h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 6px;
            font-size: 14px;
        }

        input, textarea {
            width: 100%;
            padding: 10px;
            border-radius: 6px;
            border: 1px solid #ccc;
            margin-bottom: 15px;
        }

        textarea {
            resize: none;
            height: 120px;
        }

        button {
            width: 100%;
            padding: 12px;
            background: #111;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        button:hover {
            background: #f5c542;
            color: #111;
        }

        /* MAP */
        .map {
            margin-top: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .map iframe {
            width: 100%;
            height: 350px;
            border: 0;
        }

      
		
.footer {
    background: #111;
    color: white;
    padding: 40px 0 0 0;
    margin-top: 50px;
}

.footer-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #f1f1f1;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    margin-top: 20px;
    font-size: 13px;
}
