﻿



:root {
    --green: #087443;
    --green-dark: #075b35;
    --green-light: #eaf7f0;
    --yellow: #f5c400;
    --red: #d92d20;
    --dark: #17201b;
    --gray: #66736d;
    --border: #e4e9e6;
    --bg: #f7f8f7;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1240px;
}

/* =========================================================
           TOP BAR
        ========================================================= */

.top-bar {
    background: var(--green-dark);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar a {
    color: #fff;
    opacity: .95;
}

.top-links {
    display: flex;
    gap: 22px;
}

/* =========================================================
           HEADER
        ========================================================= */

.main-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    width: 250px;  
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 800;
}
  
.search-wrapper {
    flex: 1;
    position: relative;
}

    .search-wrapper input {
        width: 100%;
        height: 48px;
        border: 2px solid #dfe5e1;
        border-radius: 7px;
        padding: 0 55px 0 18px;
        outline: none;
        transition: .2s;
        font-size: 14px;
    }

        .search-wrapper input:focus {
            border-color: var(--green);
        }

.search-button {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 40px;
    text-align:center;
    line-height:40px;
    height: 40px;
    border: 0;
    border-radius: 5px;
    background: var(--green);
    color: #fff;
    font-size: 18px;
}

/* Header actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.header-action {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #26322c;
}

    .header-action i {
        font-size: 23px;
    }

.header-action-text {
    font-size: 12px;
    line-height: 1.2;
}

    .header-action-text strong {
        display: block;
        font-size: 13px;
    }

.cart-count {
    position: absolute;
    top: -8px;
    left: 14px;
    width: 19px;
    height: 19px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* =========================================================
           NAVIGATION
        ========================================================= */

.navigation {
    background: var(--green);
    color: #fff;
}

.nav-inner {
    display: flex;
    align-items: center;
}

.category-menu-button {
    border: 0;
    background: var(--green-dark);
    color: #fff;
    min-height: 50px;
    padding: 0 23px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-items: start;
    gap: 10px;
    white-space: nowrap;
}

.nav-link-custom {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: .2s;
    flex-shrink: 0;
}

    .nav-link-custom:hover {
        background: rgba(255,255,255,.1);
        color: #fff;
    }

    .nav-link-custom.sale {
        color: #ffe05c;
    }

/* Mega menu */

.mega-wrapper {
    position: relative;
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 50px;
    width: 900px;
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border);
    box-shadow: 0 15px 45px rgba(0,0,0,.15);
    padding: 25px;
    display: none;
    z-index: 9999;
}

.mega-wrapper:hover .mega-menu {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.mega-column h6 {
    font-size: 13px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 10px;
}

.mega-column a {
    display: block;
    padding: 5px 0;
    font-size: 12px;
    color: #59645e;
}

    .mega-column a:hover {
        color: var(--green);
    }

/* =========================================================
           HERO
        ========================================================= */
 
.btn-green {
    background: var(--green);
    color: #fff;
    border: 0;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

    .btn-green:hover {
        background: var(--green-dark);
        color: #fff;
    }

.btn-white {
    background: #fff;
    color: var(--green-dark);
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
           BENEFITS
        ========================================================= */

.benefits {
    margin-top: 18px;
}

.benefit-card {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.benefit-card strong {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

.benefit-card span {
    color: var(--gray);
    font-size: 11px;
}

/* =========================================================
           SECTION
        ========================================================= */

.section {
    padding: 50px 0;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 25px;
}

.section-title {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.8px;
    margin: 0;
}

.section-description {
    color: var(--gray);
    font-size: 13px;
    margin-top: 6px;
}

.view-all {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
           CATEGORIES
        ========================================================= */

.category-card {
    display: block;
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
    transition: .25s;
    height: 100%;
}

    .category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        border-color: #cfd8d2;
    }

.category-image {
    height: 145px;
    overflow: hidden;
    background: #f3f5f3;
}

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s;
    }

.category-card:hover img {
    transform: scale(1.05);
}

.category-name {
    padding: 13px;
    font-size: 13px;
    font-weight: 700;
}

    .category-name small {
        display: block;
        margin-top: 3px;
        color: #7a847e;
        font-weight: 400;
    }

/* =========================================================
           PRODUCTS
        ========================================================= */

.products-section {
    background: var(--bg);
}

.product-card {
    height: 100%;
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden;
    transition: .25s;
}

    .product-card:hover {
        box-shadow: 0 12px 30px rgba(0,0,0,.09);
        transform: translateY(-3px);
    }

.product-image {
    height: 225px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 15px;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.product-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 7px;
    border-radius: 3px;
}

    .product-badge.green {
        background: var(--green);
    }

.product-favorite {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #657069;
}

    .product-favorite:hover,
    .product-favorite.active {
        color: var(--red);
    }

.product-favorite-remove {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--red);
}

    .product-favorite-remove:hover,
    .product-favorite-remove.active {
        color: var(--red);
    }

.product-body {
    padding: 14px;
}

.product-brand {
    color: #7a847e;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-title {
    min-height: 39px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-code {
    color: #8a938e;
    font-size: 10px;
    margin-bottom: 12px;
}

.product-old-price {
    color: #8b938e;
    font-size: 11px;
    text-decoration: line-through;
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
}

.product-unit {
    color: #6f7973;
    font-size: 10px;
}

.stock {
    margin-top: 10px;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}

    .stock i {
        font-size: 10px;
    }

.add-cart {
    width: 100%;
    margin-top: 12px;
    height: 40px;
    border: 0;
    background: var(--green);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    transition: .2s;
    display:flex;
    align-items:center;
    justify-content:center;
}
    .add-cart i{
        font-size:15px;
        margin-right:5px;
    }

    .add-cart:hover {
        background: var(--green-dark);
    }

/* =========================================================
           PROMO
        ========================================================= */

.promo-card {
    min-height: 280px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    color: #fff;
    background-size: cover;
    background-position: center;
}

    .promo-card.one {
        background-image: linear-gradient(90deg,rgba(0,0,0,.7),rgba(0,0,0,.1)), url("https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=1000&q=80");
    }

    .promo-card.two {
        background-image: linear-gradient(90deg,rgba(0,0,0,.7),rgba(0,0,0,.1)), url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1000&q=80");
    }

.mobile-nav {
    display: none;
}

    .mobile-nav.open {
        display: block;
    }

.promo-content {
    position: absolute;
    left: 28px;
    bottom: 28px;
    max-width: 340px;
}

    .promo-content small {
        color: #f4d25b;
        font-weight: 800;
        font-size: 11px;
    }

    .promo-content h3 {
        font-size: 27px;
        font-weight: 800;
        margin: 5px 0 20px;
    }
     

/* =========================================================
           BRANDS
        ========================================================= */

.brand-card {
    height: 90px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    flex: auto;
    justify-content: center;
    background: #fff;
    font-size: 18px;
    font-weight: 800;
    color: #606b65;
}

/* =========================================================
           NEWSLETTER
        ========================================================= */

.newsletter {
    background: var(--green);
    color: #fff;
    padding: 35px;
    border-radius: 8px;
}

    .newsletter h3 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 7px;
    }

    .newsletter p {
        font-size: 12px;
        opacity: .85;
        margin: 0;
    }

.newsletter-form {
    display: flex;
    gap: 8px;
}

    .newsletter-form input[type="email"] {
        height: 46px;
        flex: 1;
        border: 0;
        border-radius: 5px;
        padding: 0 15px;
        outline: none;
    }

    .newsletter-form input[type="submit"] {
        height: 46px;
        border: 0;
        padding: 0 25px;
        border-radius: 5px;
        background: var(--yellow);
        color: #111;
        font-weight: 800;
        font-size: 12px;
    }

/* =========================================================
           FOOTER
        ========================================================= */

footer {
    background: #17201b;
    color: #fff; 
}

.footer-main {
    padding: 50px 0;
}

.footer-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: #aeb8b2;
    font-size: 12px;
    padding: 5px 0;
}

    .footer-links a:hover {
        color: #fff;
    }

.footer-about {
    color: #aeb8b2;
    font-size: 12px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0;
    color: #8f9993;
    font-size: 11px;
}

/* =========================================================
           MOBILE HEADER
        ========================================================= */

.mobile-header {
    display: none;
}

/* =========================================================
           CART TOAST
        ========================================================= */

.cart-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    background: #17201b;
    color: #fff;
    padding: 15px 20px;
    border-radius: 7px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transform: translateY(120px);
    opacity: 0;
    transition: .3s;
    font-size: 13px;
}

    .cart-toast.show {
        transform: translateY(0);
        opacity: 1;
    }

/* =========================================================
           RESPONSIVE
        ========================================================= */

@media(max-width:1100px) {

    .header-main {
        gap: 15px;
    }

    .header-action-text {
        display: none;
    }

    .header-actions {
        gap: 14px;
    }

    .mega-menu {
        width: 760px;
    }

    .hero-content {
        left: 40px;
    }
}

@media(max-width:991px) {

    .top-links {
        display: none;
    }

    .header-main {
        min-height: 72px;
    }

    .brand-text {
        font-size: 19px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    .mega-menu {
        width: 650px;
    }

    .nav-link-custom {
        padding: 0 10px;
        font-size: 11px;
    }

    .category-menu-button {
        padding: 0 15px;
        font-size: 12px;
    }

    .hero-slide {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .product-image {
        height: 190px;
    }
}

.brands-scroll {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    scrollbar-width: none;
}

@media(max-width:767px) {

    .container {
        width: calc(100% - 24px);
    }

    /* Top */

    .top-bar {
        font-size: 10px;
        padding: 7px 0;
        text-align: center;
    }

    /* Desktop header */

    .main-header {
        position: relative;
    }

    .header-main {
        display: grid;
        grid-template-columns: 42px 1fr 42px;
        grid-template-areas:
            "menu logo cart"
            "search search search";
        gap: 10px;
        padding: 11px 0;
    }

    .mobile-menu-button {
        grid-area: menu;
        width: 42px;
        height: 42px;
        border: 1px solid var(--border);
        border-radius: 7px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
    }

    .brand {
        grid-area: logo;
        justify-self: center;
    }

    .header-actions {
        grid-area: cart;
        justify-content: end;
    }

        .header-actions .account,
        .header-actions .favorite-header {
            display: none;
        }

        .header-actions .cart-header {
            display: flex;
        }

    .search-wrapper {
        grid-area: search;
    }

        .search-wrapper input {
            height: 47px;
            font-size: 13px;
        }

    /* Mobile nav */

    .navigation {
        display: none;
    }

    .mobile-nav {
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 10000;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: .25s;
    }

        .mobile-nav.open {
            transform: translateX(0);
        }

    .mobile-nav-header {
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        border-bottom: 1px solid var(--border);
    }

        .mobile-nav-header strong {
            font-size: 17px;
        }

    .mobile-nav-close {
        width: 38px;
        height: 38px;
        border: 1px solid var(--border);
        background: #fff;
        border-radius: 6px;
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .mobile-nav-list > li {
            border-bottom: 1px solid var(--border);
        }

            .mobile-nav-list > li > a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 16px 18px;
                font-size: 14px;
                font-weight: 700;
            }

                .mobile-nav-list > li > a:hover {
                    background: var(--green-light);
                    color: var(--green);
                }

    /* Hero */

    .hero {
        margin-top: 12px;
    }

    .hero-slide {
        min-height: 450px;
        border-radius: 7px;
        background-position: 65% center;
    }

    .hero-content {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        padding: 25px 20px;
        max-width: none;
        background: linear-gradient( transparent, rgba(0,0,0,.75) );
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 31px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Benefits */

    .benefit-card {
        padding: 13px;
    }

    .benefit-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .benefit-card strong {
        font-size: 11px;
    }

    .benefit-card span {
        font-size: 9px;
    }

    /* Sections */

    .section {
        padding: 35px 0;
    }

    .section-header {
        align-items: center;
    }

    .section-title {
        font-size: 21px;
    }

    .section-description {
        font-size: 11px;
    }

    .view-all {
        font-size: 11px;
    }

    /* Categories */

    .category-image {
        height: 120px;
    }

    .category-name {
        padding: 10px;
        font-size: 11px;
    }

        .category-name small {
            font-size: 9px;
        }

    /* Products */

    .product-image {
        height: 145px;
        padding: 10px;
    }

    .product-body {
        padding: 10px;
    }

    .product-title {
        font-size: 11px;
        min-height: 34px;
    }

    .product-brand {
        font-size: 8px;
    }

    .product-code {
        font-size: 8px;
        margin-bottom: 7px;
    }

    .product-price {
        font-size: 17px;
    }

    .product-old-price {
        font-size: 9px;
    }

    .product-unit {
        font-size: 8px;
    }

    .stock {
        font-size: 9px;
    }

    .add-cart {
        height: 36px;
        font-size: 10px;
    }

    .product-favorite {
        width: 30px;
        height: 30px;
    }

    .product-badge {
        font-size: 8px;
        padding: 4px 5px;
    }

    /* Promo */

    .promo-card {
        min-height: 220px;
    }

    .promo-content {
        left: 20px;
        bottom: 20px;
    }

        .promo-content h3 {
            font-size: 22px;
        }

    /* Brands */



    .brands-scroll::-webkit-scrollbar {
        display: none;
    }

    .brand-card {
        min-width: 150px;
    }

    /* Newsletter */

    .newsletter {
        padding: 25px 20px;
    }

        .newsletter h3 {
            font-size: 20px;
        }

    .newsletter-form {
        margin-top: 20px;
    }

        .newsletter-form button {
            width: 35%;
        }

        .newsletter-form input {
            width: 100%;
        }
    /* Footer */
    .footer-main {
        padding: 35px 0;
    }

    .footer-title {
        font-size: 12px;
    }

    .footer-links a,
    .footer-about {
        font-size: 10px;
    }
}

@media(max-width:390px) {

    .container {
        width: calc(100% - 18px);
    }

    .brand-text {
        font-size: 17px;
    }

    .hero-slide {
        min-height: 420px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .product-image {
        height: 130px;
    }

    .product-title {
        font-size: 10px;
    }

    .product-price {
        font-size: 16px;
    }

    .category-image {
        height: 105px;
    }
}





/*Slider*/

/* =========================================
       ANA SLIDER
    ========================================= */

.shop-slider {
    width: 100%;
    position: relative;
    overflow: hidden; 
    margin-top:20px;
}

    .shop-slider .swiper-slide {
        position: relative;
        height: 450px;
        overflow: hidden;
        border-radius:10px;
    }


        /* =========================================
       SLIDER GÖRSELİ
    ========================================= */

        .shop-slider .swiper-slide > img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
        }


    /* =========================================
       GÖRSEL ÜZERİ GRADIENT
    ========================================= */

    .shop-slider .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,0) 75% );
        pointer-events: none;
    }


    /* =========================================
       SLIDER İÇERİĞİ
    ========================================= */

    .shop-slider .slide-info {
        position: absolute;
        left: 7%;
        top: 50%;
        transform: translateY(-50%);
        width: 500px;
        color: #fff;
        z-index: 5;
    }


    .shop-slider .slide-tag {
        display: inline-block;
        padding: 7px 14px;
        margin-bottom: 12px;
        background: #ffd200;
        color: #111;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
    }


    .shop-slider .slide-title {
        margin: 0 0 10px;
        font-size: 44px;
        line-height: 1.05;
        font-weight: 900;
        letter-spacing: -1px;
    }


    .shop-slider .slide-text {
        margin: 0 0 22px;
        font-size: 20px;
        font-weight: 600;
    }


    /* =========================================
       BUTON
    ========================================= */

    .shop-slider .slide-btn {
        margin-top: 20px;
        display: inline-flex;
        align-items: center;
        padding: 12px 24px;
        background: #fff;
        color: #111;
        text-decoration: none;
        font-size: 15px;
        font-weight: 800;
        transition: all .2s ease;
        border-radius:10px;
    }


        .shop-slider .slide-btn:hover {
            background: var(--green);
            color: #fff;
            transform: translateY(-2px);
        }


    /* =========================================
       OKLAR
    ========================================= */

    .shop-slider .swiper-button-prev,
    .shop-slider .swiper-button-next {
        width: 48px;
        height: 48px;
        margin-top: -24px;
        background: rgba(0,0,0,.55);
        color: #fff;
        transition: .2s;
        border-radius:10px;
    }


        .shop-slider .swiper-button-prev:hover,
        .shop-slider .swiper-button-next:hover {
            background: var(--green);
            color: #fff;
        }


    .shop-slider .swiper-button-prev {
        left: 15px;
    }


    .shop-slider .swiper-button-next {
        right: 15px;
    }


        .shop-slider .swiper-button-prev::after,
        .shop-slider .swiper-button-next::after {
            font-size: 18px;
            font-weight: 900;
        }


    /* =========================================
       DOTS
    ========================================= */

    .shop-slider .swiper-pagination {
        bottom: 15px;
    }


    .shop-slider .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        opacity: 1;
        background: #fff;
    }


    .shop-slider .swiper-pagination-bullet-active {
        width: 25px;
        border-radius: 10px;
        background: var(--green);
    }
.swiper-slide-active {
    background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.35), rgba(0,0,0,.05)), center/cover;
}


/* =========================================
       TABLET
    ========================================= */

@media (max-width: 991px) {

    .shop-slider .swiper-slide {
        height: 300px;
    }

    .shop-slider .slide-info {
        left: 6%;
        width: 430px;
    }

    .shop-slider .slide-title {
        font-size: 34px;
    }

    .shop-slider .slide-text {
        font-size: 17px;
    }
}


/* =========================================
       MOBİL
    ========================================= */

@media (max-width: 767px) {

    .shop-slider .swiper-slide {
        height: 230px;
    }


    .shop-slider .slide-info {
        left: 0;
        top: 50%;
        width: 100%;
        padding: 20px;
        text-align: center;
        transform: translateY(-50%);
    }


    .shop-slider .slide-tag {
        padding: 5px 10px;
        margin-bottom: 7px;
        font-size: 10px;
    }


    .shop-slider .slide-title {
        font-size: 25px;
        letter-spacing: -.5px;
    }


    .shop-slider .slide-text {
        font-size: 13px;
        margin-bottom: 13px;
    }


    .shop-slider .slide-btn {
        padding: 8px 16px;
        font-size: 12px;
    }


    .shop-slider .swiper-button-prev,
    .shop-slider .swiper-button-next {
        width: 34px;
        height: 40px;
        margin-top: -20px;
    }


        .shop-slider .swiper-button-prev::after,
        .shop-slider .swiper-button-next::after {
            font-size: 13px;
        }
}


/* =========================================
       KÜÇÜK TELEFON
    ========================================= */

@media (max-width: 480px) {

    .shop-slider .swiper-slide {
        height: 190px;
    }

    .shop-slider .slide-title {
        font-size: 21px;
    }

    .shop-slider .slide-text {
        font-size: 11px;
    }

    .shop-slider .slide-btn {
        padding: 7px 13px;
        font-size: 11px;
    }
}
.modal-content {
    border: none !important;
    border-radius: 20px !important;
}
.modal-header{
    border-radius:20px 20px 0 0!important;
    border:none;
    padding:20px 30px;
}
.modal-footer{
    border:none;
}
.modal-body {
    padding: 10px 30px;
}
.btn-close{
    outline:none!important;
    box-shadow:none!important;
}
.btn{
    border-radius:25px;
}
.formstil label{
    font-size:12px;
    font-weight:bold;
    margin-bottom:5px;
}
.formstil .form-control{
    box-shadow:none;
    border-width:2px;
    background-color:#e5e5e5; 

}
.login .form-control,
.uyeol .form-control,
.sifremiunuttum .form-control{
    padding-left: 40px;
}
.formstil .form-control:focus {
    border-color: var(--green);
    background-color: #fff;
}
.formstil .mb-3{
    position:relative;
}
.formstil i {
    position: absolute;
    left: 15px;
    top: 35px; 
}
.formstil a {
    font-size: 12px;
    font-weight: bold;
}
.formstil a:hover{
        text-decoration: underline;
}
.inputfield {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.input {
    height: 3em;
    width: 3em;
    border: 2px solid #dad9df;
    outline: none;
    text-align: center;
    font-size: 1.5em;
    border-radius: 0.3em;
    background-color: #ffffff;
    outline: none;
    /*Hide number field arrows*/
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.repeatpass{
    color:#7d140c;
    margin:10px 0;
    font-weight:bold;
    font-size:12px;
}
.pageTitle {
    font-size: 20px;
    font-weight: bold;
}
.btn-seka {
    border-radius: 4px;
    background-color: #075b35;
    padding: 12px 20px;
    color: #fff;
    border: none !important;
    position: relative;
    font-size: 13px;
}

    .btn-seka:hover {
        background-color: #075b35;
        color: #fff;
    }

    .btn-seka.show {
        background-color: #075b35;
        color: #fff;
    }

    .btn-seka:first-child:active {
        background-color: #075b35;
        color: #fff;
    }
.dropdown-item.active, .dropdown-item:active {
    background-color: #075b35;
}
.katload {
    margin: 40px 0;
    display: block;
}
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100% !important;
}
.empty-cart {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 16px;
    margin: 20px auto;
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f3f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.empty-cart h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.empty-cart p {
    color: #777;
    margin-bottom: 25px;
}
.page-link{
    background-color:#fff; 
    padding:10px 20px;
    color:#075b35;
    box-shadow:none!important;
}
    .page-link:hover {
        color: #075b35;
    }
    .active > .page-link {
        background-color: #075b35;
        border-color: #075b35;
    }
.urunname{
    font-weight:bold;
    margin-bottom:25px;
}
.fontstil{
    font-weight:bold;
    font-size:13px;
}
.detayprice{
    font-weight:bold;
    color:#075b35;
    font-size:30px;
}
.spinner {
    position: relative;
    width: 250px;
    height: 45px; 
}
    .spinner input.qty {
        font-size: 15px;
        color: #333333;
        width: 100%;
        height: 100%;
        border: 1px solid #e9dddd;
        border-radius: 10px;
        background: transparent;
        padding: 0 20px;
        text-align: center;
        outline: none !important;
    } 
    .spinner .spinner-controls a {
        position: absolute;
        top: 0;
        bottom: 0;
        line-height: 45px;
        padding: 0 6px;
        font-size: 22px;
        color: #333333;
        width:50px;
        text-align:center;
    }
    .spinner .spinner-controls .spin-up {
        right: 0;
    }
    .spinner .spinner-controls .spin-down {
        left: 1px;
    }
.sepetbtn {
    background-color: #075b35;
    border: none;
    display: block;
    padding: 16px 20px;
    text-align: center;
    color: #fff!important;
    border-radius: 10px;
    transition: 0.2s;
}

    .sepetbtn:hover {
        background-color: #087443;
    }
#myTab {
    padding: 8px 0 0 8px;
    background-color: rgba(33, 37, 41, .03);
    border: 1px solid #dee2e6;
    border-radius: .375rem .375rem 0 0;
}
.nav-tabs .nav-link:hover {
    border-color: transparent !important;
}
.nav-tabs .nav-link.active:hover {
    border-color: #dee2e6 #dee2e6 #fff !important;
}
.nav-tabs .nav-link {
    color:#075b35;
    font-size:12px;
     font-weight:bold;
}
.tab-content {
    border: 1px solid #dee2e6;
    border-top: none !important;
    padding: 20px;
    border-radius: 0 0 .375rem .375rem;
}
.resimbutton{
    background-color:#fff;
    border:2px solid #dee2e6;
    border-radius:10px;
    padding:15px;
}
    .resimbutton.checked{
        border-color:#075b35;
    }
.varyantlar{
    margin-top:20px;
}
.offcanvas.offcanvas-end {
    top: 20px;
    right: 20px;
    border: none;
    border-radius: 20px;
}

.offcanvas {
    bottom: 20px;
}

.offcanvas-header .btn-close {
    margin-right: inherit !important;
}

.offcanvas-header {
    padding: 20px;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 14px;
}
.cart-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}
.cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-detail {
    flex: 1;
}
    .cart-detail h5 {
        margin: 0 0 8px;
        font-size: 16px;
        font-weight: 600;
    }
.cart-info {
    display: flex;
    justify-content: space-between;
    color: #777;
}
    .cart-info strong {
        color: #e63946;
        font-size: 17px;
    }
.sepet-sil {
    border-radius: 20px;
    padding: 7px 15px;
}
.cart-variants {
    margin: 8px 0;
    border-bottom: 1px solid #b8cade;
}
    .cart-variants .badge {
        font-size: 12px;
        font-weight: 500;
        white-space: normal;
        margin-right: 4px;
        margin-bottom: 4px;
        padding: 6px 10px;
    }
.cart-info span{
    font-size:13px;
}
.offcanvas-footer {
    padding: 20px;
}
.canvasfooterbttn {
    width: 100%;
    display: block;
    padding: 16px 20px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.2s;
    background-color: #087443;
    font-weight:bold;
    font-size:13px;
}
    .canvasfooterbttn:hover {
        background-color: #075b35;
    }
.icerik {
    padding-left: 35px;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.leftmenu a {
    padding: 12px 24px;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #087443;
    border-radius: 8px;
}
    .leftmenu a.active {
        background-color: #087443;
        color: #fff;
    }
.icerik h4 {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: bold;
}
.yeniform label{
    font-weight:bold;
    font-size:13px;
    margin-bottom:10px;
}
.yeniform input{
    border-width:2px;
    box-shadow:none!important;
}
.yeniform input:focus{
    border-color:#087443;
}
.accordion-button:focus {
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: #075b35;
    background-color:#fff!important;
    box-shadow:none!important;
}
.accordion-item{
    margin-bottom:15px;
}
    .accordion-item:not(:first-of-type) {
        border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)!important;
    }
.SipNo {
    width: 100%;
    color: #087443 !important;
    font-weight: bold;
    font-size: 13px;
}
.SipNo span{
    display:block;
    color:#17201b;
    font-weight:bold;
    font-size:13px;
    margin-bottom:10px;
}
.siparisurunresim{
    width:70px;
}
.siparisurunadi{
    width:80%;
}
.siparisurunadi h3 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: bold;
}
.siparisurunfiyat{
    text-align:end;
    width:15%;
}
.siparisurunfiyat h3 {
    font-size: 17px;
    font-weight: bold;
    color: #087443;
}
.teslimbilgisi{
    font-size:15px;
    font-weight:bold;
}
.teslimbilgisi span{
    font-weight:normal;
}
.sumtotal{ 
  width:100%;
}
.sumtotal > .d-flex{
    width:100%;
}
.sumtotal span{
    font-weight:bold;
    font-size:15px;
}
.min-h-250px{
    min-height:250px;
}