@media (min-width: 1200px) {
    .container-menu {
        width: 100px;
    }
}



/* Стилизация скроллбара для WebKit браузеров (Chrome, Safari, новый Edge) */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: #111111;
	border-radius: 3px;
}

::-webkit-scrollbar-thumb {
	background-color: #555555;
	border-radius: 3px;
}

/* Стилизация скроллбара для Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: #ffd800 #101d26;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #ffd800;
}






.step-counter {
    background: #ffd800;
    color: #161616;
    width: 9rem;
    height: 9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 4rem;
    font-weight: 400;
    margin-right: 3rem;
    vertical-align: middle;
}

#product > label {
    font-size: 2.7rem;
    font-weight: 400;
    color: #ffffff;
}



    .option-tile {
      border: 1px solid white;
      padding: 12px;
      text-align: center;
      cursor: pointer;
      border-radius: 8px;
      transition: all .2s ease;
      background: #fff;
      min-height: 170px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      position: relative;
    }

    .option-tile.selected {
      border-color: #0027ff;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);

    }

    .option-tile:hover {
      border-color: #999;
      
    }

.option-name {
    font-size: 1.5rem;
    font-weight: 400;
    color: #161616;
}

    .option-grid {

    display: flex;
    justify-content: center;
    width: 100%;



      gap: 4rem;
      margin: 5rem 0rem 10rem 0rem;;
    }












    




    .loft-faq-section {
        margin: 15rem 5rem;
        max-width: 100%;
    }

    .faq-main-title {
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 40px;
        font-weight: 600;
        font-size: 2.5rem;
        color: #ffd800;
    }


    .faq-item {
        border-bottom: 1px solid #ffd800;
        transition: background-color 0.3s ease;
    }

    .faq-header {
        padding: 3rem 3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
    }



    .faq-question {
        font-size: 2.2rem;
        font-weight: 500;
        color: white;
        transition: color 0.6s ease;
    }

    .faq-icon {
        position: relative;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin-left: 20px;
    }

    .faq-icon::before,
    .faq-icon::after {
        content: '';
        position: absolute;
        background-color: #ffd800;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-icon::before {
        width: 100%;
        height: 2px;
        top: 50%;
        margin-top: -1px;
    }

    .faq-icon::after {
        width: 2px;
        height: 100%;
        left: 50%;
        margin-left: -1px;
    }

    .faq-item.active .faq-icon::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .faq-item.active .faq-icon::before {
        transform: rotate(180deg);
        background-color: white;
    }

    .faq-item.active .faq-question {
        color: #ffd800;
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0, 1, 0, 1);
        padding: 0 15px;
    }

    .faq-item.active .faq-content {
        max-height: 1200px; /* Увеличено для длинного текста */
        transition: max-height 0.8s ease-in-out;
        padding-bottom: 40px;
    }

    .faq-content p {
        font-size: 1.7rem;
        line-height: 1.8;
        color: white;
        margin: 0;
        text-align: justify;
    }

    @media (max-width: 768px) {
        .faq-question { font-size: 18px; }
        .faq-content p { font-size: 16px; text-align: left; }
    }



    
    
    
    
    
    
    
    
    

    .glassdesign-article {
        line-height: 1.9;
        width: 100%;
        margin: 5rem 0;
        color: #ffffff;
    }

    .intro-wrapper {
        border-left: 8px solid #ffd800;
        padding-left: 3rem;
        margin-bottom: 6rem;
    }

    .intro-text {
        font-size: 1.8rem;
        color: #ffffff;
        font-weight: 400;
    }

    .section-title {
        font-size: 2.4rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2rem;
        margin: 8rem 0 4rem 0;
        display: flex;
        align-items: center;
        line-height: 1.2;
    }

    .section-title::after {
        content: "";
        flex: 1;
        height: 2px;
        background: #eee;
        margin-left: 3rem;
    }

    .text-block p {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3.5rem;
        margin: 5rem 0;
    }

    .feature-card {
        background: #fdfdfd;
        padding: 3.5rem;
        border-radius: 20px;
        border: 1px solid #efefef;
        transition: all 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: #ffd800;
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

    .feature-num {
        font-size: 1.2rem;
        font-weight: 900;
        color: #ffd800;
        margin-bottom: 2rem;
    }

    .feature-card h4 {
        margin-top: 0;
        font-size: 2rem;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .feature-card p {
        font-size: 1.5rem;
        color: #161616;
        margin: 0;
        line-height: 1.7;
    }

    .usage-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        background: #f8f8f8;
        padding: 5rem;
        border-radius: 30px;
        margin: 7rem 0;
    }

    .usage-label {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 2rem;
        color: #161616;
        letter-spacing: 0.3rem;
        margin-bottom: 2rem;
    }

    .usage-column p {
        font-size: 1.7rem;
        margin: 0;
        font-weight: 400;
    }

    .expert-block {
        background: #0a0a0a;
        color: #ffffff;
        padding: 6rem;
        border-radius: 30px;
        margin-top: 7rem;
    }

    .expert-title {
        color: #ffd800;
        margin-top: 0;
        text-transform: uppercase;
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 3rem;
    }

    .expert-block p {
        font-size: 1.7rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }

    .cta-line {
        margin-top: 4rem;
        font-size: 1.8rem;
        font-weight: 900;
        color: #ffd800;
        border-top: 1px solid rgba(255,216,0,0.2);
        padding-top: 3rem;
    }

    @media (max-width: 1024px) {
        .usage-section { grid-template-columns: 1fr; padding: 4rem; }
        .expert-block { padding: 4rem; }
    }

    @media (max-width: 768px) {
        .intro-wrapper { padding-left: 2rem; }
        .intro-text { font-size: 1.3rem; }
        .section-title { font-size: 1.6rem; }
        .feature-card { padding: 2.5rem; }
        .expert-block { padding: 3rem; }
        .expert-title { font-size: 1.6rem; }
        .cta-line { font-size: 1.4rem; }
    }



















        .layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 22px;
padding-top: 5rem;
          margin-bottom: -2px;
        }

        .block {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .block svg {
            width: 100%;
            height: auto;
            display: block;
        }

        .content-overlay {
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 7%;
    box-sizing: border-box;
    color: white;
    z-index: 2;
    pointer-events: none;
        }

.content-overlay h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: white;
}

.content-overlay p {
    font-size: 2rem;
    max-width: 60%;
    line-height: 1.7;
    font-weight: 300;
    margin-top: 5rem;
}

        .big-left {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
            clip-path: url(#clip-big-left);
        }

        .small-right {
            grid-column: 2 / 3;
            grid-row: 2 / 3;
            width: 148%;
            margin-left: -48%;
            clip-path: url(#clip-small-right);
        }

        .big-bottom {
            grid-column: 1 / 3;
            grid-row: 3 / 4;
            clip-path: url(#clip-big-bottom);
        }

        .bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        svg[width="0"][height="0"] {
            position: absolute;
        }

      
      
.block::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at top left,
            rgba(0,0,0,0.82) 0%,
            rgba(0,0,0,0.62) 10%,
            rgba(0,0,0,0.44) 24%,
            rgba(0,0,0,0.26) 44%,
            rgba(0,0,0,0.12) 64%,
            rgba(0,0,0,0) 84%
        );
}





.text-block {
    position: relative;
    padding-left: 40px;
    max-width: 80%; /* ← ширина текста */
}

.text-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;
    bottom: 0.3em;
    width: 6px;
    background: #FFD400;
    border-radius: 4px;
}















    .glassdesign-gallery { width: 100%; margin: 6rem 0; }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        grid-auto-rows: 52rem; 
        gap: 2rem;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 2.8rem;
        opacity: 0;
        transition: opacity 1s ease;
        display: block;
        text-decoration: none;
    }

    .gallery-item.active { opacity: 1; }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        display: block;
    }

.item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    align-content: center;
    justify-content: center;
}
    .gallery-item:hover .item-overlay { opacity: 1; }
    .gallery-item:hover img { transform: scale(1.03); }

.overlay-text h2 {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2.5rem;
}


    @media (max-width: 1200px) {
        .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
        .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
    }

    @media (max-width: 768px) {
        .gallery-grid { grid-template-columns: 1fr; }
    }
