.products-page{
    background:#fff;
    padding-bottom:140px;
}

/* HERO */
.products-hero{
    position:relative;
    height:720px;

    max-width:1450px;
    margin:40px auto;

    border-radius:36px;
    overflow:hidden;

    isolation:isolate;
}

/* HERO IMAGE */
.hero-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(1.02);
}

/* OVERLAY */
.products-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.20) 100%
    );

    z-index:1;
}

/* CONTENT */
.products-content{
    position:relative;
    z-index:2;

    max-width:720px;
    padding:130px 90px;

    color:#fff;
}

/* BADGE */
.products-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    font-size:12px;
    letter-spacing:4px;

    opacity:0.8;
    margin-bottom:20px;
}

.products-badge::before{
    content:"";
    width:45px;
    height:1px;
    background:#fff;
    opacity:0.5;
}

/* TITLE */
.products-content h1{
    font-size:76px;
    line-height:1.05;
    margin-bottom:30px;
    font-weight:700;
}

/* TEXT */
.products-text{
    font-size:17px;
    line-height:1.9;

    color:rgba(255,255,255,0.88);

    margin-bottom:20px;

    max-width:650px;
}

/* BUTTON */
.products-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 36px;
    border-radius:50px;

    background:#fff;
    color:#111;

    text-decoration:none;
    font-weight:600;

    margin-top:20px;

    transition:0.35s;
}

.products-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.18);
}

/* CATEGORY */
.products-category{
    max-width:1450px;
    margin:90px auto 0;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* CATEGORY CARD */
.category-card{
    background:#f7f7f7;
    border-radius:28px;
    overflow:hidden;

    transition:0.4s;

    border:1px solid #ececec;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.category-card img{
     width:100%;
    height:220px; /* SABİT BOY */
    object-fit:contain; /* taşmayı engeller */
    
    padding:20px;
    background:#fff;

    display:block;
}

.category-card h3{
    padding:28px 28px 10px;
    font-size:26px;
    color:#0d1b2a;
}

.category-card span{
    display:block;
    padding:0 28px 32px;

    color:#666;
    font-size:15px;
}

/* PRODUCTS */
.products-grid{
    max-width:1450px;
    margin:120px auto 0;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

/* PRODUCT CARD */
.product-card{
    background:#fff;

    border-radius:30px;
    overflow:hidden;

    border:1px solid #eee;

    transition:0.4s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:220px; /* SABİT BOY */
    object-fit:contain; /* taşmayı engeller */
    
    padding:20px;
    background:#fff;

    display:block;
}

.product-card:hover img{
    transform:scale(1.04);
}

.product-card h3{
    padding:30px 30px 12px;
    font-size:26px;
    color:#111;
}

.product-card p{
    padding:0 30px 35px;

    color:#666;
    line-height:1.8;
}

/* INFO */
.products-info{
    max-width:1450px;
    margin:140px auto 0;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* INFO TEXT */
.info-text span{
    display:inline-block;

    font-size:12px;
    letter-spacing:4px;

    color:#999;

    margin-bottom:15px;
}

.info-text h2{
    font-size:58px;
    line-height:1.15;

    margin-bottom:25px;

    color:#111;
}

.info-text p{
    color:#666;
    line-height:1.9;

    font-size:16px;
}

/* INFO IMAGE */
.info-image img{
    width:100%;
    border-radius:32px;

    object-fit:cover;
}

/* MOBILE */
@media(max-width:950px){

    .products-hero{
        height:620px;
        border-radius:25px;
    }

    .products-content{
        padding:90px 40px;
    }

    .products-content h1{
        font-size:50px;
    }

    .products-info{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .products-hero{
        height:560px;
    }

    .products-content{
        padding:80px 25px;
    }

    .products-content h1{
        font-size:40px;
    }

    .products-text{
        font-size:15px;
    }

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

    .products-category{
        grid-template-columns:1fr;
    }

}








.brands-page{
    background:#fff;
    padding:120px 20px;
}

/* TITLE */
.brands-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 80px;
}

.brands-title span{
    font-size:12px;
    letter-spacing:4px;
    color:#999;
}

.brands-title h1{
    font-size:60px;
    margin:20px 0;
    color:#111;
}

.brands-title p{
    color:#666;
    line-height:1.8;
}

/* GRID */
.brands-grid{
    max-width:1200px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:35px;
}

/* CARD */
.brand-card{
    background:#fff;

    border:1px solid #eee;
    border-radius:30px;

    padding:40px;

    display:flex;
    align-items:center;
    gap:40px;

    transition:0.4s;
}

.brand-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

/* IMAGE */
.brand-card img{
    width:180px;
    height:120px;

    object-fit:contain;
    flex-shrink:0;
}

/* CONTENT */
.brand-content h3{
    font-size:32px;
    margin-bottom:15px;
    color:#111;
}

.brand-content p{
    color:#666;
    line-height:1.8;
    max-width:700px;
}

/* MOBILE */
@media(max-width:768px){

    .brand-card{
        flex-direction:column;
        text-align:center;
    }

    .brands-title h1{
        font-size:42px;
    }

}

a[href^="tel"]{color:#fff !important;text-decoration:none;} a[href^="tel"]:hover{color:#fff !important;}
