#company-intro {
    background: #D4D9DD url("images/bg03.jpg");
    padding: 60px 0;
    text-align: center;
}

#company-intro .section-title h2 {
    font-size: 42px;
    color: #2f5c88;
    margin-bottom: 20px;
}

#company-intro .section-title p {
    font-size: 20px;
    color: #666;
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
}



.product-image{

    animation: floating 3s ease-in-out infinite;

}

/* ========================= */
/* PRODUCTS */
/* ========================= */

#products-title {
    text-align: center;
    padding: 80px 0 50px;
}

#products-title h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

#products-title p {
    font-size: 20px;
    color: #777;
}

.product-showcase {
    padding: 10px 0;
}

.product-showcase h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.product-showcase p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}




/* Круглое изображение как в Bootstrap */

.product-showcase img {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    border-radius: 50%;

    display: block;
    margin: auto;

    transition: 0.4s ease;
}

.product-showcase img:hover {
    transform: scale(1.05);
}

.product-showcase .button-large {
    margin-top: 20px;
}




/* ===========================
   Mobile version
=========================== */

@media screen and (max-width: 736px) {

    .product-showcase:nth-child(odd) .product-image {
        margin-right: 60px;
    }

    .product-showcase:nth-child(even) .product-image {
        margin-left: 60px;
    }

}




.product-image{
    text-align:center;
}

.product-image img{
    width:100%;
    max-width:420px;
    aspect-ratio:1/1;

    object-fit:cover;

    border-radius:50%;

    display:block;
    margin:auto;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    transition:.4s;
}

.product-image img:hover{

    transform:scale(1.05);

}


@keyframes floating{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

.product-showcase{

    animation:fadeUp 1s ease;

}


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


.button-large{

    transition:.3s;

}

.button-large:hover{

    transform:translateY(-4px);

}

.product-image img:hover{

    transform:scale(1.14) rotate(13deg);

}




/*==========================
      PARTNERS
===========================*/

#partners{

    padding:80px 0;

    background: #D4D9DD url("images/bg03.jpg");

    overflow:hidden;

}

#partners h2{

    text-align:center;

    font-size:42px;

    margin-bottom:10px;

}

#partners p{

    text-align:center;

    color:#777;

    margin-bottom:50px;

}

.slider{

    width:100%;

    overflow:hidden;

    position:relative;

    margin:0;

    padding:0;

}

.slide-track{

    justify-content:flex-start;

    display:flex;

    align-items:center;

    width:max-content;

    animation:scroll 15s linear infinite;

}

.slide-track img{

    width:180px;
    height:90px;

    object-fit:contain;

    margin:0 35px;

    opacity:1;

    transition:.3s;

}

.slide-track img:hover{

    filter:none;

    opacity:1;

    transform:scale(1.1);

}

.slider:hover .slide-track{

    animation-play-state:paused;

}

@keyframes scroll{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(-50%);

    }

}


/* ========================= */
/* CONTACT MAP */
/* ========================= */

#contact-map{

    padding:90px 0;
    background:#f7f7f7;

}

.contact-info{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-bottom:45px;

}

.info-box{

    background:#fff;

    padding:25px;

    border-radius:12px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.info-box:hover{

    transform:translateY(-6px);

}

.info-box h3{

    margin-bottom:12px;

    font-size:22px;

}

.info-box p{

    margin:5px 0;

    color:#666;

}

.google-map{

    overflow:hidden;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.google-map iframe{

    width:100%;

    height:500px;

    border:0;

}


/* ========================= */
/* POPULAR PRODUCTS */
/* ========================= */

#popular-products{

    padding:10px 0;

    background: #D4D9DD url("images/bg03.jpg");

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(390px,390px));

    justify-content:center;

    gap:35px;

    margin-top:0;

}

.product-card{

    

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.product-photo{

    overflow:hidden;

}

.product-photo img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    padding:25px;

}

.product-content h3{

    margin-bottom:15px;

    font-size:28px;

}

.product-content p{

    color:#666;

    line-height:1.7;

    min-height:10px;

}

.product-btn{

    display:inline-block;

    margin-top:20px;

    color:#fff;

    background:#df3c24;

    padding:12px 28px;

    border-radius:8px;

    text-decoration:none;

    transition:.3s;

}

.product-btn:hover{

    background:#b22815;

    padding-right:35px;

}


.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:48px;
    color:#2f5c88;
    margin-bottom:12px;
}

.section-title p{
    color:#777;
    font-size:18px;
}

.section-title::after{
    content:"";
    display:block;
    width:150px;
    height:4px;
    background:#df3c24;
    margin:5px auto 0;
    border-radius:40px;
}



/* ========================= */
/* STATISTICS */
/* ========================= */

#statistics{

    padding:100px 0;

    background:#f7f7f7;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

    gap:35px;

}

.stat-card{

    background:#fff;

    border-radius:18px;

    padding:45px 25px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    opacity:0;

    transform:translateY(80px);

}

.stat-card.show{

    opacity:1;

    transform:translateY(0);

    transition:
        transform .8s ease,
        opacity .8s ease;

}


.stat-card:nth-child(1){

    transition-delay:.1s;

}

.stat-card:nth-child(2){

    transition-delay:.3s;

}

.stat-card:nth-child(3){

    transition-delay:.5s;

}

.stat-card:nth-child(4){

    transition-delay:.7s;

}

.stat-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.16);

}

.stat-card i{

    font-size:60px;

    color:#6d7c8c;

    margin-bottom:25px;

}

.stat-card h2{

    font-size:52px;

    color:#2f5c88;

    margin-bottom:15px;

    font-weight:bold;

}

.stat-card p{

    font-size:20px;

    color:#666;

    margin:0;

}

.statistics-container{

    max-width:1700px;

    width:95%;

    margin:auto;

}


/* ========================= */
/* baner который картинки меняются */
/* ========================= */



.banner-slider img{

    width:100%;

    display:none;

    animation:fade .8s;

}

.banner-slider img.active{

    display:block;

}

@keyframes fade{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.45);

    color:#fff;

    cursor:pointer;

    font-size:22px;

    transition:.3s;

}

.prev:hover,
.next:hover{

    background:#df3c24;

}

.prev{

    left:15px;

}

.next{

    right:15px;

}

.dots{

    position:absolute;

    bottom:18px;

    left:50%;

    transform:translateX(-50%);

}

.dot{

    display:inline-block;

    width:12px;

    height:12px;

    border-radius:50%;

    margin:0 5px;

    background:#ddd;

    cursor:pointer;

}

.dot.active{

    background:#df3c24;

}



.banner-slider{

    width:100%;
    height:380px;

    aspect-ratio:16/9;

    position:relative;
    overflow:hidden;

}

.banner-slider .slide{

    position:absolute;

    width:100%;
    height:100%;

    opacity:0;

    transition:opacity .8s;

}

.banner-slider .slide.active{

    opacity:1;

}

.banner-slider img{

    width:100%;
    height:100%;

    object-fit:cover;

}


/* ========================= */
/* FEATURES */
/* ========================= */

#features{

    padding:70px 0;

}

.feature-box{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    text-align:center;

    padding:45px 25px;

    transition:.35s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.06);

    box-shadow:0 20px 45px rgba(0,0,0,.30);

}

.feature-box i{

    font-size:60px;

    color:#df3c24;

    margin-bottom:25px;

    transition:.35s;

}

.feature-box:hover i{

    transform:scale(1.15);

}

.feature-box h2{

    color:#fff;

    font-size:30px;

    margin-bottom:20px;

}

.feature-box p{

    color:#c7c7c7;

    line-height:1.8;

    margin:0;

}

.features-container{

    max-width:1500px;

    width:95%;

    margin:auto;

}




/* ========================= */
/* ICON ANIMATIONS */
/* ========================= */

/* Завод */
.features-container .row > div:nth-child(1) .feature-box i{

    animation: floatIcon 3s ease-in-out infinite;

}

/* Грузовик */
.features-container .row > div:nth-child(2) .feature-box i{

    animation: truckMove 2.5s ease-in-out infinite;

}

/* Щит */
.features-container .row > div:nth-child(3) .feature-box i{

    animation: shieldPulse 2.5s ease-in-out infinite;

}

/* Рукопожатие */
.features-container .row > div:nth-child(4) .feature-box i{

    animation: handShake 3s ease-in-out infinite;

}


/* ========================= */
/* KEYFRAMES */
/* ========================= */

/* Завод немного "парит" */

@keyframes floatIcon{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}


/* Грузовик слегка едет */

@keyframes truckMove{

    0%,100%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(10px);

    }

}


/* Щит "дышит" */

@keyframes shieldPulse{

    0%,100%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.12);

    }

}


/* Рукопожатие слегка качается */

@keyframes handShake{

    0%,100%{

        transform:rotate(0deg);

    }

    20%{

        transform:rotate(-5deg);

    }

    40%{

        transform:rotate(5deg);

    }

    60%{

        transform:rotate(-3deg);

    }

    80%{

        transform:rotate(3deg);

    }

}



/* Выравнивание трех колонок */
#content .row {
    display: flex;
    align-items: flex-start;
}

#content .row > div {
    display: flex;
}

#content .row section {
    width: 100%;
}


#content .col-3:first-child header {
    margin-top: 0;
}





/* ==========================
        NAV HOVER
========================== */

#nav a{

    position:relative;

    display:inline-block;

    text-decoration:none;

    transition:color .3s ease;

}

#nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#d62828;

    border-radius:10px;

    transition:width .35s ease;

}

#nav a:hover{

    color:#ffffff;

}

#nav a:hover::after{

    width:100%;

}




#nav a.active{

    color:#ffffff;

}

#nav a.active::after{

    width:100%;

    background:#d62828;

}






/*==============================
        WHATSAPP BUTTON
===============================*/

.whatsapp-btn{

    position:fixed;

    left:25px;

    bottom:25px;

    display:flex;

    align-items:center;

    gap:12px;

    background:#25D366;

    color:#fff;

    padding:14px 18px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.whatsapp-btn i{

    font-size:32px;

}

.whatsapp-btn:hover{

    background:#1ebe5d;

    transform:translateY(-4px) scale(1.05);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.whatsapp-btn span{

    white-space:nowrap;

}



@media(max-width:768px){

    .whatsapp-btn{

        left:15px;

        bottom:15px;

        padding:14px;

        border-radius:50%;

    }

    .whatsapp-btn span{

        display:none;

    }

}

.product-info{
    margin:20px 0;
    border-top:1px solid #e5e5e5;
    border-bottom:1px solid #e5e5e5;
    padding:15px 0;
}

.info-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:8px 0;
}

.info-row span{
    color:#666;
    font-size:15px;
}

.info-row strong{
    font-size:16px;
    color:#222;
}

.active-category {
    display: block;
    background: #d52349;
    color: #fff !important;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
}
.active-category::before {
    content: "▶";
    color: #f5f3f3;
    margin-right: 8px;
}



.header-top{
    display:flex;
    flex-direction: column;
}

#logo{
    margin:0;
    flex:1;
}

#logo a{
    font-size:2rem;
    white-space:nowrap;
}

#nav{
    flex:2;
    text-align:center;
}

.header-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap: wrap;
    row-gap: 10px;
}

#logo{
    margin:0;
    flex:1;
}

#logo a{
    font-size:2rem;
    white-space:nowrap;
}

#nav{
    flex:2;
    text-align:center;
    position: relative;
    z-index: 10;
    order: 2;
}

.header-phone{
    flex-basis: 100%;
    order: 3;

    font-size:20px;
    margin-top: 10px;

    display:flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items:center;
    gap:26px;

    position: relative;
    z-index: 1;
}

.header-phone a{
    text-decoration:none;
    color:#ceb6b6;
    font-weight:600;
    display: flex;
    align-items: center;
}

.header-phone a:hover{
    color:#d52349;
}

.phone-icon{
    color:#d52349;
    margin-right:8px;
    animation:phoneBlink 1.2s infinite;
}

@keyframes phoneBlink{
    0%{
        color:#d52349;
        opacity:1;
    }
    50%{
        color:#ff8c8c;
        opacity:.3;
    }
    100%{
        color:#d52349;
        opacity:1;
    }
}

@media (max-width: 767px) {
    .header-phone{
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #nav{
        flex-basis: 100%;
    }
}



.phone-icon{
    color:#d52349;
    margin-right:8px;
    animation:phoneBlink 1.2s infinite;
}

@keyframes phoneBlink{

    0%{
        color:#d52349;
        opacity:1;
    }

    50%{
        color:#ff8c8c;
        opacity:.3;
    }

    100%{
        color:#d52349;
        opacity:1;
    }

}

.header-phone a{
    text-decoration:none;
    color:#ceb6b6;
    font-weight:600;
    
}

.header-phone a:hover{
    color:#d52349;
}




.phone-icon{
    color:#d52349;
    margin-right:8px;
    animation:phoneBlink 1.2s infinite;
}

@keyframes phoneBlink{

    0%{
        color:#d52349;
        opacity:1;
    }

    50%{
        color:#ff8c8c;
        opacity:.3;
    }

    100%{
        color:#d52349;
        opacity:1;
    }

}



/* это то что в home.blade.php  тут для категорий  */

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

.category-card{
    display:flex;
    justify-content:center;
    align-items:center;

    min-height:85px;

    border:1px solid #d9d9d9;
    border-radius:20px;

    background:#fff;

    text-decoration:none;
    color:#222;

    font-size:1.35rem;
    font-weight:700;

    transition:.25s;
}

.category-card:hover{
    border-color:#d52349;
    color:#d52349;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.category-card.active{
    background:#d52349;
    color:#fff;
    border-color:#d52349;
}




.categories-wrapper{
    background:#1d1c1c;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}




/* ===========================
   Mobile версии для категорий
=========================== */

@media screen and (max-width: 736px) {

    .categories-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0;
    }

    .category-card{
        min-height: 70px;
        font-size: 1rem;
        border-radius: 15px;
        padding: 10px;
        text-align: center;
    }

}




/* ===========================
   Statistics - Mobile
=========================== */

@media screen and (max-width: 736px) {

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-card i {
        font-size: 2rem;
    }

    .stat-card h2 {
        font-size: 2rem;
        margin: 10px 0;
    }

    .stat-card p {
        font-size: .9rem;
        line-height: 1.4;
    }

}



/* ===========================
   Contact - Mobile
=========================== */

@media screen and (max-width: 736px) {

    .contact-info{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }

    .info-box{
        padding: 18px 12px;
        text-align: center;
    }

    .info-box h3{
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .info-box p{
        font-size: .9rem;
        line-height: 1.5;
    }

    .google-map{
        width: 100%;
    }

    .google-map iframe{
        width: 100%;
        height: 300px;
        border-radius: 15px;
    }

}



/* ===========================
   Partners - Mobile
=========================== */

@media screen and (max-width: 736px) {

    #partners {
        padding: 50px 0;
    }

    #partners h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 8px;
        text-align: center;
    }

    #partners p {
        font-size: 1rem;
        margin-bottom: 25px;
        text-align: center;
        color: #393a39;
    }

    .slider {
        margin-top: 10px;
    }

    .slide-track img {
        height: 60px;      /* вместо больших логотипов */
        margin: 0 20px;
    }

    #partners .container{
    margin-bottom: 15px;
    }

}


/* это то что Popüler Ürünler En çok tercih edilen ürünlerimiz */
.section-title{
    max-width: 650px;
    margin: 0 auto 60px;
    padding: 35px 25px;

    background: rgba(255,255,255,.75);
    backdrop-filter: blur(8px);

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

    text-align:center;
}


/* ===========================
   Company Intro - Mobile это то что Popüler Ürünler En çok tercih edilen ürünlerimiz
=========================== */

@media screen and (max-width: 736px) {

    .section-title{
        max-width: 90%;
        margin: 0 auto 40px;
        padding: 25px 20px;

        border-radius: 16px;

        background: rgba(255,255,255,.82);
        backdrop-filter: blur(6px);

        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .section-title h2{
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .section-title p{
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

}



/* ===========================
   Kaliteli Üretim Features - Mobile
=========================== */

@media screen and (max-width: 736px) {

    .features-container .row{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .features-container .row > div{
    width: 100%;
    padding: 8px;
}

.features-container{
    padding: 0 15px;
}

    .feature-box{
        padding: 25px 15px;
        min-height: 220px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        text-align: center;
    }

    .feature-box i{
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .feature-box h2{
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .feature-box p{
        font-size: .9rem;
        line-height: 1.5;
    }

}





/* ===========================
   Products - Mobile
=========================== */

@media screen and (max-width: 736px) {

    .products-grid{

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        padding: 0 12px;
    }

    .product-card{

        border-radius: 14px;
    }

    .product-photo img{

        height: 130px;
    }

    .product-content{

        padding: 12px;
    }

    .product-content h3{

        font-size: 1rem;
        margin-bottom: 8px;
    }

    .product-content p{

    font-size:.8rem;
    line-height:1.4;

    height:38px;

    overflow:hidden;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

}

    .product-info{

        margin-top: 10px;
    }

    .info-row{

        font-size: .75rem;
    }

    .product-btn{

        width: 100%;

        text-align: center;

        padding: 10px;

        font-size: .8rem;

        margin-top: 12px;
    }

}








/* Верхний блок: фото + инфо */

#product-details {
    padding: 60px 0;
}


.product-top {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.product-detail-image{
    flex: 1 1 500px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mainProductImage {
    width: 100%;
    height: auto;
    /*  max-width: 600px; */
    /* height: 600px; */
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
    display: block;
}

.product-info {
    flex: 1 1 350px;
}

.product-info h1{
    font-size: 35px;
    font-weight: 600;
    color:#222;

    margin-bottom:30px;
    padding-bottom:15px;

    border-bottom:3px solid #d52349;

    display:inline-block;
}

/* Характеристики */
.product-specs{

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:16px;

    padding:15px 25px;

    margin-bottom:35px;
}

.spec-item{

    display:flex;

    justify-content:space-between;
    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #ececec;
}

.spec-item:last-child{

    border-bottom:none;
}

.spec-item span{

    color:#777;

    font-weight:500;
}

.spec-item strong{

    color:#222;

    font-weight:700;

    font-size:17px;
}





/* Кнопка WhatsApp */
.contact-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.contact-btn:hover {
    background: #1DA851;
}

/* Блок описания снизу */
.product-description-block {
    border-top: 1px solid #007b71;
    padding-top: 30px;
}

.product-description-block h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.product-description-block p {
    color: #555;
    line-height: 1.8;
    white-space: pre-line;
}

/* Мобильная адаптация */
@media (max-width: 768px) {

    .product-gallery{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;

    gap: 8px;
    padding: 10px 0;

    flex-wrap: nowrap;
}

.gallery-thumb{
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
}
    
    #product-details{
        padding: 30px 0;
    }

    .product-image.active .image-caption h3{

        font-size:0.9rem;

        margin:3px 0;

        line-height:1.2;

    }

    .product-top{
        flex-direction: column;
        gap: 30px;
        margin-bottom: 35px;
    }

    .product-detail-image{
        flex: none;
        max-width: 100%;
        width: 100%;
    }

   #mainProductImage{
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 16px;
}

    .product-info{
        width: 100%;
    }

    .product-info h1{
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .product-specs{
        width: 100%;
        padding: 15px 20px;
    }

    .spec-item{
        padding: 15px 0;
    }

    .spec-item span{
        font-size: .95rem;
    }

    .spec-item strong{
        font-size: 1rem;
    }

    .contact-btn{
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .product-description-block{
        margin-top: 20px;
        padding-top: 25px;
    }

    .product-description-block h2{
        font-size: 1.5rem;
    }

    .description-content{
        max-width: 100%;
        padding: 20px;
        font-size: .95rem;
        line-height: 1.7;
    }

}








/* это то что продоккт ачыкламасы*/

.product-description-block {
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
    margin-top: 40px;
}

.product-description-block h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.description-content {
    max-width: 950px;          /* ограничиваем ширину строки для удобного чтения */
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    font-family: 'Georgia', 'Times New Roman', serif; /* или ваш основной шрифт сайта */
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.description-content p {
    margin-bottom: 16px;
}


/* видео для галереи */
.thumbnail.video{
    position:relative;
    overflow:hidden;
}

.thumbnail.video video{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.play-icon{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:70px;
    height:70px;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:28px;

    pointer-events:none;
}



/* ==========================
   Главный видеоплеер
========================== */




.gallery-hero video{

    width:100%;

    height:720px;

    object-fit:cover;

    border-radius:25px;

    display:block;
}



/* ===========================
   Gallery Mobile
=========================== */

@media (max-width:768px){

    .gallery-hero{

        position:relative;

        display:flex;
        justify-content:center;
        align-items:center;

        padding:0 15px;

    }

    #heroVideo{

        width:100%;
        max-width:100%;

        height:260px;

        object-fit:cover;

        border-radius:18px;

    }

    .hero-prev,
    .hero-next{

        position:absolute;

        top:50%;

        transform:translateY(-50%);

        width:42px;
        height:42px;

        border-radius:50%;

        font-size:16px;

        z-index:10;

    }

    .hero-prev{

        left:20px;

    }

    .hero-next{

        right:20px;

    }

}










/* ==========================
        show grid sonrasi geri don
========================== */

.back-button{
    margin-bottom:30px;
}

.back-button a{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 22px;

    background:#fff;

    color:#222;

    text-decoration:none;

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.back-button a:hover{

    background:#d52349;

    color:#fff;

}


/* ==========================
        footer ikonki 
========================== */

.social-links{

    margin-top:25px;

    display:flex;

    gap:15px;

}

.social-links a{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;

    border-radius:50%;

    color:#d52349;

    text-decoration:none;

    font-size:22px;

    transition:.3s;

    box-shadow:0 6px 18px rgba(0,0,0,.12);

}

.social-links a:hover{

    background:#d52349;

    color:#fff;

    transform:translateY(-4px);

}


/* ==========================
        это то что в главной странице то при наведений на круг появлеяется надпись 
========================== */
.product-image{

    position:relative;
    overflow:hidden;
    border-radius:50%;
    cursor:pointer;

}

.product-image img{

    display:block;
    width:100%;
    transition:.6s ease;

}

/* Затемнение всего круга */

.product-image::after{

    content:"";

    position:absolute;
    inset:0;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    opacity:0;

    transition:.45s ease;

    z-index:1;

}

/* Текст */

.image-caption{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:35px;

    opacity:0;

    z-index:2;

    transition:.45s ease;

}

/* Твои h3 остаются такими же */

.image-caption h3{

    margin:5px 0;

    color:#fff;

    font-size:1.45rem;

    font-weight:700;

    line-height:1.2;

}

/* Hover */

.product-image:hover::after,
.product-image.active::after{
    opacity:1;
}

.product-image:hover .image-caption,
.product-image.active .image-caption{
    opacity:1;
}

.product-image:hover img,
.product-image.active img{
    transform:scale(1.08);
    filter:blur(2px);
}


/* это то что лупа там где продукт шов  */

/* Контейнер изображения */
.product-detail-image{

    position: relative;
    overflow: hidden;

}

/* Само изображение */
.zoom-image{

    display: block;
    width: 100%;
    cursor: crosshair;

}

/* Лупа */

.image-lens{

    position: absolute;

    width: 240px;
    height: 240px;

    border-radius: 50%;

    border: 3px solid #fff;

    box-shadow: 0 8px 20px rgba(0,0,0,.35);

    background-repeat: no-repeat;

    background-color: #fff;

    pointer-events: none;

    opacity: 0;

    transition: opacity .2s;

    transform: translate(-50%, -50%);

    z-index: 20;

}


/* ===========================
   Banner Mobile
=========================== */

@media (max-width: 768px) {

    #banner {
        padding: 40px 20px;
    }

    #banner .row {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    #banner .col-6 {
        width: 100%;
    }

    .banner-slider {
        width: 100%;
        max-width: 100%;
    }

    .banner-slider .slide {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .banner-slider img {
        width: 100%;
        height: auto;
    }

    .prev,
    .next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .dots {
        margin-top: 12px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    #banner p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

}



/* ===========================
   это для того чтобы снизу фото появляляс пару фото в красивом виде    
=========================== */
.product-gallery{
    display:flex;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}

.gallery-thumb{
    width:70px;
    height:70px;
    object-fit:cover;
    border:2px solid #ddd;
    border-radius:8px;
    cursor:pointer;
    transition:.2s;
}

.gallery-thumb:hover{
    border-color:#d52349;
}

.active-thumb{
    border-color:#d52349;
}


/* ===========================
   это для того чтобы ограничть лупу    
=========================== */
.main-image-wrapper{
    position: relative;
    overflow: hidden;
    width: fit-content;
}


/* ===========================
   задний фон для галерии    
=========================== */

body.gallery {
    background: #f7f7f7 url("images/bg04.png");
}

#footer {
    background: #3B4346 url("images/bg01.jpg");
}