/* =========================================
   GENEL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:0.3s;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

img{
    max-width:100%;
    display:block;
}

/* =========================================
   TOPBAR
========================================= */

.topbar{
    background:#111;
    padding:10px 0;
    color:#fff;
    font-size:14px;
}

.topbar-area{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left a{
    color:#fff;
}

.top-left i{
    margin-right:6px;
}

.top-right{
    display:flex;
    gap:15px;
}

.top-right a{
    color:#fff;
    font-size:15px;
}

.top-right a:hover{
    color:#d4af37;
}

/* =========================================
   HEADER
========================================= */

.main-header{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.header-area{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo img{
    max-height:70px;
}

/* =========================================
   MENU
========================================= */

.main-menu ul{
    display:flex;
    align-items:center;
    gap:30px;
}

.main-menu ul li a{
    color:#111;
    font-size:15px;
    font-weight:500;
    position:relative;
}

.main-menu ul li a:hover{
    color:#d4af37;
}

.main-menu ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#d4af37;
    transition:0.3s;
}

.main-menu ul li a:hover::after{
    width:100%;
}

/* =========================================
   WHATSAPP BUTTON
========================================= */

.header-btn a{
    background:#25D366;
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
}

.header-btn a:hover{
    transform:translateY(-2px);
}

/* =========================================
   MOBILE TOGGLE
========================================= */

.mobile-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:280px;
    height:100%;
    background:#fff;
    z-index:9999;
    padding:40px 20px;
    transition:0.4s;
    box-shadow:0 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active{
    left:0;
}

.mobile-menu ul li{
    margin-bottom:20px;
}

.mobile-menu ul li a{
    color:#111;
    font-size:16px;
    font-weight:500;
}

/* =========================================
   HERO SLIDER
========================================= */

.hero{
    width:100%;
    position:relative;
}

.hero-slide{
    position:relative;
    height:650px;
    overflow:hidden;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
}

.hero-content h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.hero-buttons a{
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-gold{
    background:#d4af37;
    color:#fff;
}

.btn-white{
    background:#fff;
    color:#111;
}

/* =========================================
   MARKA SLIDER
========================================= */

.brand-section{
    padding:70px 0;
    background:#fafafa;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:36px;
    font-weight:700;
    color:#111;
}

.brand-item{
    text-align:center;
}

.brand-circle{
    width:130px;
    height:130px;
    border-radius:50%;
    background:#fff;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    transition:0.3s;
    overflow:hidden;
}

.brand-circle:hover{
    transform:translateY(-5px);
}

.brand-circle img{
    max-width:70%;
    max-height:70%;
}

.brand-item h3{
    margin-top:15px;
    font-size:18px;
    font-weight:600;
}

/* =========================================
   ÜRÜNLER
========================================= */

.products{
    padding:80px 0;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    margin-bottom:30px;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-image{
    width:100%;
    height:280px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-content{
    padding:20px;
}

.product-content h3{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.product-price{
    font-size:24px;
    color:#d4af37;
    font-weight:700;
    margin-bottom:15px;
}

.product-buttons{
    display:flex;
    gap:10px;
}

.product-buttons a{
    flex:1;
    text-align:center;
    padding:12px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
}

.btn-detail{
    background:#111;
    color:#fff;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

/* =========================================
   FOOTER
========================================= */

.footer{
    background:#111;
    color:#fff;
    padding:80px 0 30px;
}

.footer h4{
    margin-bottom:20px;
    font-size:22px;
}

.footer p,
.footer a{
    color:#ccc;
    font-size:15px;
    line-height:28px;
}

.footer a:hover{
    color:#d4af37;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#aaa;
}

/* =========================================
   WHATSAPP FIXED
========================================= */

.whatsapp-fixed{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .main-menu{
        display:none;
    }

    .header-btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .hero-slide{
        height:500px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .brand-circle{
        width:100px;
        height:100px;
    }

}

@media(max-width:576px){

    .topbar-area{
        flex-direction:column;
        gap:10px;
    }

    .hero-slide{
        height:420px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .section-title h2{
        font-size:28px;
    }

}