body{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    overflow-x: hidden;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* HEADER CSS*/

/* varsayılan */
.mobile-top,
.mobile-search{
    display: none;
}

/* MOBİL */
@media (max-width: 768px){

    /* desktop navbarı kapat */
    .top-nav,
    .middle-nav,
    .bottom-nav{
        display: none !important;
    }

    /* mobil navbar aç */
    .mobile-top{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        background: #fffdee;
        border-bottom: 2px solid #036735;
    }

    .mobile-search{
        display: flex;
        padding: 10px;
        background: #fffdee;
    }

    .mobile-search input{
        width: 100%;
        height: 40px;
        border-radius: 20px;
        border: 2px solid #036735;
        padding: 10px;
    }
}

/* varsayılan: mobil navbar kapalı */
.mobile-top,
.mobile-search{
    display: none;
}

/* MOBİL */
@media (max-width: 768px){

    /* ❌ desktop navbarı tamamen gizle */
    .top-nav,
    .middle-nav,
    .bottom-nav{
        display: none;
    }

    /* ✅ mobil navbarı aç */
    .mobile-top{
        display: flex;
    }

    .mobile-search{
        display: flex;
    }
}


header{
    width: 100%;
}

.top-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #036735;
    height: 35px;
    padding: 0 60px;
}

.top-nav p{
    text-align: center;
    color: #fff;
}

.top-nav-left ul li, .top-nav-right ul li{
    display: inline;
}

.top-nav-left ul li a, .top-nav-right ul li a{
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    color: #616060;
}


.logo img{
    height: 170px;
}

.top-nav-right ul li a{
    margin: 0 6px;
}

.middle-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    background-color: #fffdee;
}

.middle-nav .logo h1{
    font-size: 30px;
    color: #169053;
    font-weight: 800;
}

.middle-nav .logo h1 span{
    font-size: 30px;
    color: rgba(77, 76, 76);
    font-weight: 800;
}

.mid-nav-right{
    display: flex;
    gap: 10px;
    margin-right: 15px;
}

.mid-nav-center{
    height: 100px;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
}

.search input{
    width: 400px;
    height: 40px;
    padding: 5px;
    padding-left: 50px;
    border: 2px solid #036735;
    outline: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    font-size: 15px;
    color: #036735;
}   
::placeholder{
    color: #036735;
    opacity: 0.5;
}

.search img{
    position: relative;
    top: 5px;
    left: 45px;
}

.hesabim-btn{
    display: flex;
    border: 2px solid #036735;
    padding: 2px;
    border-radius: 30px;
    box-sizing: border-box;
    width: 110px;
    height: 40px;
    text-align: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
}

.icon-hover{
    display: none;
}

.hesabim-btn:hover{
    background: #036735;
    transition: 0.2s;
}

.hesabim-btn:hover .icon-default{
    display: none;
}

.hesabim-btn:hover .icon-hover {
    display: block;
}

.hesabim-btn:hover span{
    color: #fffdee;
}


.hesabim-btn span{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #036735;
    text-align: center;
}

.hesabim-btn img{
    height: 24px;
    width: 24px;
    margin-top: 3px;
}

.cart-btn{
    display: flex;
    border: 2px solid #036735;
    padding: 2px;
    border-radius: 30px;
    box-sizing: border-box;
    width: 150px;
    height: 40px;
    text-align: center;
    padding-left: 10px;
    gap: 15px;
    text-decoration: none;
}

.cart-btn span{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #036735;
    text-align: center;
}

.cart-btn img{
    width: 24px;
    height: 24px;
    margin-top: 3px;
}

.cart-btn:hover{
    background: #036735;
    transition: 0.2s;
}

.cart-btn:hover .icon-default{
    display: none;
}

.cart-btn:hover .icon-hover {
    display: block;
}

.cart-btn:hover span{
    color: #fffdee;
}



.bottom-nav{
    background: #036735;
    padding: 5px;
}

.bottom-nav ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 100px;
    padding-right: 100px;
    list-style: none;
    box-sizing: border-box;
}

.bottom-nav ul li{
    color: #fffdee;
    padding: 10px;
    border-radius: 40px;
    box-sizing: border-box;
}

.bottom-nav ul li:hover{
    color: #036735;
    transition: 0.2s;
}

.bottom-nav ul a{
    text-decoration: none;
    box-sizing: border-box;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 40px;
}

.bottom-nav ul a:hover{
    background: #fffdee;
    transition: .2s;
}



/* TANITIM CSS*/

.tanitim{
    background-color: #fffdee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.img-slider{
    position: relative;
    width: 1000px;
    max-width: 1000px;
    height: 500px;
    padding: 50px;
    border: 2px solid #036735;   
}

.img-slider .slide{
    z-index: 1;
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.img-slider .slide.active{
    clip-path: circle(150.0% at 0 50%);
    transition: 2s;
    transition-property: clip-path;
}

.img-slider .slide img{
    z-index: 1;
    width: 100%;
    border-radius: 5px;
}

.img-slider .slide .info{
    position: absolute;
    top: 0;
    padding: 15px 30px;
}

.img-slider .slide .info h2{
    color: #036735;
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

.img-slider .slide .info p{
    color: #036735;
    background: rgba(0,0,0,0.1);
    font-size: 16px;
    width: 60%;
    padding: 10px;
    border-radius: 4px;
}

.navigation{
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.navigation .slider-btn{
    background: #006432;
    margin: 10px;
    cursor: pointer;
}


.navigation .slider-btn.active{
    background-color: #40976a;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.slider-btn{
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

@media (max-width: 820px){
    .img-slider{
        width: 600px;
        height: 375px;
    }

    .img-slider .slide .info{
        padding: 10px 25px;
    }

    .img-slider .slide .info h2{
        font-size: 35px;
    }

    .img-slider .slide .info p{
        width: 50%;
        font-size: 15px;
    }

    .img-slider .navigation{
        bottom: 25px;
    }

    .img-slider .navigation .slider-btn{
        width: 10px;
        height: 10px;
        margin: 8px;
    }
}

@media (max-width: 620px){
    .img-slider{
        width: 400px;
        height: 250px;
    }

    .img-slider .slide .info{
        padding: 10px 20px;
    }

    .img-slider .slide .info h2{
        font-size: 30px;
    }

    .img-slider .slide .info p{
        width: 80%;
        font-size: 13px;
    }

    .img-slider .navigation{
        bottom: 15px;
    }

}

@media (max-width: 420px){
    .img-slider{
        width: 320px;
        height: 200px;
    }

    .img-slider .slide .info{
        padding: 5px 10px;
    }

    .img-slider .slide .info h2{
        font-size: 25px;
    }

    .img-slider .slide .info p{
        width: 90%;
        font-size: 11px;
    }

    .img-slider .navigation{
        bottom: 10px;
    }

}

.slogan{
    color: #036735;
    text-align: center;
    background-color: #fffdee;
    font-weight: 100;
    padding-bottom: 30px;
}

@media (max-width: 768px){
    .slogan-serit{
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


.slogan-serit{
    background-color: #fffdee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    border-top: 2px solid #036735;
    border-bottom: 2px solid #036735;
    padding: 10px;
    box-sizing: border-box;
}

.slogan-serit li{
    color: #036735;
    font-size: 24px;
    list-style: none;
    display: flex;
    align-items: center;
}

.slogan-serit li img{
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
/* ÜRÜNLERİMİZ CSS*/

.product-collection{
    padding: 100px 9% 30px;
    background-color: #fffdee;
}

.product-collection h1{
    font-size: 35px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: #036735;
}

.product-collection .product-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px , 1fr));
    gap: 20px;
}

.product-collection .img-box{
    display: flex;
    overflow: hidden;
    cursor: pointer;
}

.product-collection .img-box img{
    width: 100%;
    transition: 0.5s;
}

.product-collection .img-box:hover img{
    transform: scale(1.1);
}

.product-collection .title{
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
}

.product-collection .price{
    display: block;
    font-weight: bold;
    margin-top: 5px;
}

.product-detail{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 40px;
    padding: 50px 9% 30px;
    background-color: #fffdee ;
}

.product-detail .product-img{
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 12px;
    height: 550px;
}

.product-detail .product-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail .thumbnail-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-detail .thumbnail-list img{
    height: calc(100% / 4 - 9px);
    cursor: pointer;
}

.bosluk{
    height: 100px;
}

.product-detail .title{
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.product-detail .rating i{
    color: #e35f26;
}

.product-detail .price{
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin: 20px 0; 
}


.product-detail :is(.size-selection, .color-selection){
    margin: 20px 0;
}

.product-detail :is(.size-selection p, .color-selection p){
    margin: 10px;
}

.product-detail :is(.size-options, .color-options){
    display: flex;
    gap: 5px;
}


.product-detail .size-options button{
    width: 45px;
    height: 45px;
    background: #f2f2f2;
    border: 2px solid transparent;
    cursor: pointer;
}

.product-detail .color-options img{
    width: 75px;
    height: 75px;
    border: 2px solid transparent;
    cursor: pointer;
}

.product-detail :is(.size-options .selected, .color-options .selected){
    border-color: #999;
}

.btn{
    background: #036735;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 50px;
    height: 50px;
    width: 100px;
    color: #fffdee;
    font-size: 15px;
    margin-right: 20px;
}

.product-detail .product-policy{
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

.product-detail .product-policy p{
    margin: 3px 0;
}

/* BİZDEN GÖRÜNTÜLER CSS*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

.bizden-goruntuler{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background-color: #fffdee;
}

.bizden-goruntuler-container{
    max-width: 1120px;
    width: 100%;
}

.card {
    background: #efefef;
    width: 250px;
    border: 2px solid #036735;
    border-radius: 20px;
}

.card .image-box{
    height: 300px;
}

.card .image-box img{
    height: 100%;
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}

.card .image-details{
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fffdee;
    width: auto;
    border-radius: 0px 0px 20px 20px;
}

.card-wrapper{
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.detail h3{
    text-align: center;
    color: darkgreen;
}

.bizden-goruntuler-container h2{
    text-align: center;
    color: #036735;
    margin-bottom: 10px;
}

/*TÜM ÜRÜNLER CSS*/ 

.tum-urunler{
    background-color:#036735;
}

.tum-urunler-container{
    padding: 50px;
}

.tum-urunler-baslik{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #036735;
    gap: 10px;
}

.tum-urunler-baslik button{
    height: 50px;
    width: 150px;
    font-size: 20px;
    background-color: #fffdee;
    border-radius: 10px;
    font-weight: 300;
    color:#036735;
    cursor: pointer; 
    margin-top: 15px;
    font-weight: 600;
    padding: 2px;
    box-sizing: border-box;
}   

.tum-urunler-alt{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}

.tum-urunler-card{
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tum-urunler-card p{
    text-align: center;
    margin-top: 5px;
    color: #fffefbab;
}

.tum-urunler-card img{
    width: 100px;
}



/*ILETISIM CSS*/ 

.contact{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 30px 15px;
    background-color: #fffdee;
    gap: 50px;
}

.contact-card{
    background: #fefefe;
    padding: 30px;
    width: 550px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* üst yeşil şerit */
.contact-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: #036735;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.contact-card h2{
    text-align: center;
    color: #4c8f4a;
    margin: 30px 0 20px;
    font-size: 28px;
}

.contact-card form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.contact-card input,
.contact-card textarea{
    padding: 14px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    background: #f4f4f4;
}

.contact-card textarea{
    height: 120px;
    resize: none;
}

.contact-card button{
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 20px;
    background: #4c8f4a;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 0 #3b6f39;
    transition: 0.2s;
}

.contact-card button:hover{
    transform: translateY(2px);
    box-shadow: 0 3px 0 #3b6f39;
}

.iletisim-bilgi{
    padding-top: 15px;
}

.iletisim-bilgi li{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);

    border-radius: 12px;
    margin-bottom: 28px;
    padding: 30px 40px;

    cursor: pointer;

    border: 1px solid rgba(0,0,0,0.06);

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    overflow: hidden;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.iletisim-bilgi li::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fffdee, #fffdee);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}


.iletisim-icon{
    margin: auto 0;
}

.iletisim-icon i{
    color: #fffdee;
    font-size: 24px;
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

.iletisim-detay h4{
    color: #fffdee;
    font-size: 1rem;
    margin-bottom: 5px;
    
}

.iletisim-detay span{
    color:#fffdee;
}

.iletisim-bilgi li::after{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    z-index: -1;
    transition: all 0.15s ease-out 0s;
    background-image: linear-gradient(to right, #036735  0%, #76ac91 100%);
}

.iletisim-bilgi li:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.iletisim-bilgi li:hover::before{
    opacity: 0.12;
}

.iletisim-icon,
.iletisim-detay{
    position: relative;
    z-index: 1;
}

/*FOOTER CSS*/ 

.footer-container{
    width: 100%;
    padding: 50px;
    display: flex;
    align-items: top;
    justify-content: space-between;
}

.footer-logo img{
    width: 200px;
}

.footer-bilgi{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-bilgi h2{
    color:#036735;
    margin-bottom: 5px;
}

.footer-bilgi a{
    text-decoration: none;
    color:#036735;
}

.footer-bilgi a:hover{
    text-decoration: underline;
}

/* BİZDEN GÖRÜNTÜLER CSS*/

.cart {
    padding: 110px 9% 30px;
}

.cart-header {
    display: flex;
    padding: 10px 0;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
} 

.cart-header span {
    flex: 1.5;
    text-align: center;
}

.cart-header span:first-child {
    flex: 1.5;
    text-align: left;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.cart-item .product {
    display: flex;
    align-items: center;
    flex: 2;
}

.cart-item img {
    width: 80px;
    margin-right: 15px;
}

.cart-item .size-color-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item .size {
    padding: 6px 12px;
    background: #f2f2f2;
    font-size: 14px;
}

.cart-item :is(.price, .quantity, .total-price) {
    flex: 1;
    text-align: center;
}

.cart-item .quantity input {
    width: 50px;
    padding: 5px;
    border: 1px solid #ccc;
    outline: none;
    text-align: center;
}

.cart-item .remove {
    background: transparent;
    border: none;
    flex: 1;
}

.cart-item .remove i {
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

.cart-total {
    width: 400px;
    margin: 50px 0 0 auto;
}

.cart-total h3 {
    margin-bottom: 15px;
}

.cart-total p {
    display: flex;
    justify-content: space-between;
}

.cart-total p:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.cart-total p:last-of-type {
    font-weight: bold;
}

.cart-total .btn {
    display: block;
    padding: 12px 30px;
    margin: 30px 0 0 auto;
    
}

.btn-siparise-git{
    background: #222;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 50px;
    height: 50px;
    width: 100px;
    color: #fff;
    margin-bottom: 0px;
    margin-top: 5px;
}


/* RESPONSIVE CSS*/

@media (max-width: 1024px){

    .mid-nav-center{
        width: 300px;
        margin-left: 0;
    }

    .search input{
        width: 250px;
    }

    .bottom-nav ul{
        padding: 0 20px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-detail{
        grid-template-columns: 1fr;
    }

    .tum-urunler-alt{
        flex-wrap: wrap;
    }
}

@media (max-width: 768px){

    .middle-nav{
        flex-direction: column;
        height: auto;
        padding: 10px;
        gap: 10px;
    }

    .logo img{
        height: 120px;
    }

    .mid-nav-center{
        width: 100%;
        margin: 0;
    }

    .search{
        width: 100%;
    }

    .search input{
        width: 100%;
        padding-left: 40px;
    }

    .cart-btn{
        width: 130px;
    }

    .hesabim-btn{
        width: 100px;
    }

    .tanitim{
        padding: 20px;
    }

    .contact{
        flex-direction: column;
        height: auto;
        padding: 30px;
    }

    .contact-card{
        width: 100%;
    }

    .iletisim-bilgi{
        width: 100%;
    }

    .footer-container{
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px){

    .top-nav p{
        font-size: 12px;
    }

    .slogan{
        font-size: 16px;
        padding: 10px;
    }

    .slogan-serit{
        flex-direction: column;
        gap: 10px;
    }

    .slogan-serit li{
        font-size: 16px;
    }

    .product-collection{
        padding: 50px 5%;
    }

    .product-collection h1{
        font-size: 24px;
    }

    .cart-btn span{
        font-size: 12px;
    }

    .cart-btn{
        gap: 5px;
        padding-left: 5px;
    }

    .hesabim-btn span{
        font-size: 12px;
    }

    .tum-urunler-alt{
        flex-direction: column;
        gap: 20px;
    }

    .tum-urunler-card{
        width: 100%;
    }

    .cart-total{
        width: 100%;
    }

    .footer-container{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px){

    .card-wrapper{
        flex-direction: column;
        gap: 20px;
    }

    .card{
        width: 100%;
        max-width: 350px;
    }

}

@media (max-width: 768px){
    .tum-urunler-alt{
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px){
    .mobile-top img{
        height: 50px;
    }
}