
@font-face {
    font-family: "NutrekoIcons";
    src: url("../fonts/nutreko-icon-1.0.0.woff2") format("woff2"),
         url("../fonts/nutreko-icon-1.0.0.woff") format("woff"),
         url("../fonts/nutreko-icon-1.0.0.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}







/* Genel Icon Ayarı */
[class^="icon-"], 
[class*=" icon-"] {
    font-family: "NutrekoIcons" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* İkon Kodları (DEMO NUTREKO'DAN ALINDI) */
.icon-delivery:before { content: "\e903"; }
.icon-gift:before     { content: "\e904"; }
.icon-payments:before { content: "\e905"; }
.icon-user:before     { content: "\e906"; }
.icon-search:before   { content: "\e907"; }
.icon-cart:before     { content: "\e908"; }
.icon-angle-down:before { content: "\e909"; }




/* === CART DRAWER GENEL === */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;  /* başlangıçta gizli */
    width: 400px;
    max-width: 100%; /* taşmayı engeller */
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    z-index: 999999;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
}

/* Aktifken içeri gelsin */
.cart-drawer.active {
    right: 0;
}

/* KAPATMA BUTONU – ÜSTTE SABİT */
.cart-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1000000;
    font-size: 32px;
    background: none;
    border: none;
    line-height: 1;
    cursor: pointer;
}

/* Başlık alanı */
.cart-header {
    position: relative;
    padding: 20px 50px 20px 20px; 
    border-bottom: 1px solid #eee;
}

/* MOBİL ⭐ DÜZELTME */
@media (max-width: 768px) {
    .cart-drawer {
        width: 100% !important;     /* tam ekran */
        right: -100%;               /* başlangıçta tamamen dışarıda */
    }
    .cart-drawer.active {
        right: 0;                   /* içeri gelsin */
    }

    .cart-header {
        padding: 20px 60px 20px 20px; /* sağa fazla boşluk → x görünür */
    }

    .cart-close {
        font-size: 36px;
        right: 15px;
        top: 15px;
    }

    .cart-items {
        overflow-y: auto;
        max-height: calc(100vh - 220px);
        padding-bottom: 60px;
    }
}

/* OVERLAY */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

#cart-close {
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

/* Ürünler */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-title {
    font-size: 16px;
    font-weight: 600;
}

.item-qty-price {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.remove-item {
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
}

/* Footer */
.cart-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 20px;
}

.cart-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
}

/* Yeşil neon hover */
.primary {
    background: #111;
    color: #fff;
}
.primary:hover {
    background: #8CFF64;
    color: #000;
}

.checkout {
    background: #f4f4f4;
    color: #000;
}
.checkout:hover {
    background: #ddd;
}

/* Mobil */
@media(max-width: 500px){
    #cart-drawer {
        width: 95%;
    }
}

 




/* ============================
   GOOGLE FONTS
============================ */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

 
 

/* ============================
   SLIDE CART (YAN SEPET)
============================ */

/* OVERLAY */
#cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 998;
}

/* DRAWER */
#cart-drawer {
    position: fixed;
    top: 0;
    right: -420px; /* gizli */
    width: 420px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 18px rgba(0,0,0,0.18);
    padding: 25px;
    transition: right .35s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

/* Açık hali */
#cart-drawer.active {
    right: 0;
}
#cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

#cart-close {
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

/* Ürünler */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-title {
    font-size: 16px;
    font-weight: 600;
}

.item-qty-price {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.remove-item {
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
}

/* Footer */
.cart-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 20px;
}

.cart-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
}

/* Yeşil neon hover */
.primary {
    background: #111;
    color: #fff;
}
.primary:hover {
    background: #8CFF64;
    color: #000;
}

.checkout {
    background: #f4f4f4;
    color: #000;
}
.checkout:hover {
    background: #ddd;
}

/* Mobil */
@media(max-width: 500px){
    #cart-drawer {
        width: 95%;
    }
}



 

/* ✨ DEMODAKİ ORİJİNAL YEŞİL DOLMA BUTON EFEKTİ ✨ */
.btn-green-animate, 
.n-banner-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 40px;
  border: 2px solid #7EE084;
  color: #7EE084;
  font-family: "Poppins";
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: color .35s ease;
}

.btn-green-animate::before,
.n-banner-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #7EE084;
  border-radius: 40px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: -1;
}

.btn-green-animate:hover::before,
.n-banner-btn:hover::before {
  transform: scaleX(1);
}

.btn-green-animate:hover,
.n-banner-btn:hover {
  color: #000;
}


@media (max-width: 768px) {
  .fullwidth-banner-wrapper,
  .sf-hero-wrapper,
  .products-section-wrapper,
  .n-banner-row,
  .mobile-swiper,
  .card-grid-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
  }
}








/* =============================
        SLIMPACK FOOTER
   Nutreko Demo Birebir
============================= */

.footer {
    background: #111;
    color: #ddd;
    font-family: Poppins, sans-serif;
    padding-top: 60px;
}

.footer-top .container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-contact p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 15px;
}

.footer-contact i {
    font-size: 20px;
    color: #d02f06;
}

/* BAŞLIKLAR */
.footer-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: Teko, sans-serif;
}

/* LİNKLER */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d02f06;
    padding-left: 5px;
}

/* NEWSLETTER FORM */
.newsletter-form {
    position: relative;
    margin-top: 10px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 15px;
    background: #222;
    color: #fff;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    background: #d02f06;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.newsletter-form button i {
    color: #fff;
    font-size: 18px;
}

.newsletter-form button:hover {
    background: #b52805;
}

/* SOSYAL İKONLAR */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: 0.3s;
}

.footer-social a i {
    font-size: 18px;
    color: #fff;
}

.footer-social a:hover {
    background: #d02f06;
}

/* ALT ÇİZGİ */
.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #bbb;
    font-size: 14px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media(max-width: 1024px) {
    .footer-top .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 700px) {
    .footer-top .container {
        grid-template-columns: 1fr;
    }
}



/* ========= ANİMASYONLU SEPETE EKLE ========= */

.add-to-cart-btn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid #111;
    transition: .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: #8CFF64;
    color: #111;
    border-color: #8CFF64;
    transform: translateY(-2px);
}

/* Işık animasyonu */
.add-to-cart-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.45) 50%,
        transparent 100%
    );
    transition: .5s;
}

.add-to-cart-btn:hover::after {
    left: 120%;
}

/* Yükleniyor animasyonu */
.add-to-cart-btn.loading {
    pointer-events: none;
    opacity: .8;
}

.add-to-cart-btn.loading::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

.add-to-cart-btn.loading .btn-text {
    opacity: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



#cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 1000;
}

#cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 1001;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

#cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

#cart-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 12px;
}

.item-title {
    font-size: 15px;
    font-weight: 600;
}

.item-qty-price {
    font-size: 14px;
    color: #666;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
}

.cart-btn.primary {
    background: #000;
    color: #fff;
}

.cart-btn.checkout {
    background: #7EE084;
    color: #000;
}


/* OVERLAY */
.cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 998;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* DRAWER */
.cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 380px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: 0.35s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

/* Açıkken */
.cart-drawer.active {
    transform: translateX(0);
}

/* HEADER */
.cart-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.cart-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* ITEMS LIST */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px 25px;
}

/* EACH ITEM */
.cart-item {
    display: flex;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ITEM RIGHT SIDE */
.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.item-price-row {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

/* QTY SELECTOR */
.qty-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 3px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    line-height: 0;
    background: #fff;
}

.qty-value {
    font-size: 16px;
    font-weight: 600;
}

/* DELETE BUTTON */
.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
    color: #999;
}

.cart-item-remove:hover {
    color: #ff2a2a;
}

/* FOOTER */
.cart-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 20px;
}

.cart-btn {
    display: block;
    text-align: center;
    padding: 14px 0;
    border-radius: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.cart-btn-black {
    background: #000;
    color: #fff;
}

.cart-btn-white {
    background: #fff;
    border: 2px solid #000;
    color: #000;
}




* --- QTY WRAPPER (Nutreko Demo Style) --- */
.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    padding: 4px 10px;
    width: fit-content;
    background: #fff;
    margin-top: 6px;
}

/* --- BUTONLAR (İnce, minimal) --- */
.qty-btn {
    background: #f2f2f2;
    border: none;
    font-size: 18px;
    font-weight: 400;
    color: #222;
    width: 26px;
    height: 26px;
    line-height: 26px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.2s;
}

.qty-btn:hover {
    background: #8CFF64;
}

/* Sayı */
.qty-value {
    font-size: 15px;
    width: 26px;
    text-align: center;
    color: #111;
    font-weight: 500;
}

/* --- CART ITEM Düzen --- */
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 10px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.cart-item img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

/* Silme butonu ince ve premium */
.cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 19px;
    line-height: 19px;
    cursor: pointer;
    color: #999;
    transition: 0.2s;
}

.cart-item-remove:hover {
    color: #000;
}

/* Ürün yazıları */
.item-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.item-price-row {
    font-size: 13px;
    color: #666;
    margin-top: 1px;
}


/* Ana container */
#cart-check {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    background: rgba(0, 0, 0, 0.55);
    padding: 25px 35px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    z-index: 999999;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.35s ease;
}

/* Yeşil daire */
.check-circle {
    width: 70px;
    height: 70px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,170,0,0.35);
    margin-bottom: 12px;
    transform: scale(0.6);
    opacity: 0;
    transition: 0.3s ease;
}

/* Tik animasyonu */
.check-circle svg {
    width: 45px;
    height: 45px;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.6s forwards ease-out 0.2s;
}

/* Yazı */
.check-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transition: 0.3s ease;
}


/* Tik çizim animasyonu */
@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Show class */
#cart-check.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#cart-check.show .check-circle {
    opacity: 1;
    transform: scale(1);
}

#cart-check.show .check-text {
    opacity: 1;
}




.pc-price-row {
    display: flex;
    align-items: center;
    gap: 8px; /* İki fiyat arasında boşluk */
    margin-top: 10px;
}

/* İndirimsiz fiyat (çizgili) */
.pc-old-price {
    font-size: 15px;
    color: #9a9a9a;
    text-decoration: line-through;
    font-weight: 400;
    display: flex;
    align-items: center;
}

/* İndirimli yeni fiyat */
.pc-price {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
}



.cart-check {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    background: rgba(0, 0, 0, 0.55);
    padding: 25px 35px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    z-index: 999999;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.35s ease;
}

/* Yeşil yuvarlak */
.check-circle {
    width: 70px;
    height: 70px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,170,0,0.35);
    margin-bottom: 12px;
    opacity: 0;
    transform: scale(0.6);
    transition: 0.3s ease;
}

.check-circle svg {
    width: 45px;
    height: 45px;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.6s forwards ease-out 0.2s;
}

/* Yazı */
.check-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transition: 0.3s ease;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* SHOW aktif olunca */
.cart-check.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cart-check.show .check-circle {
    opacity: 1;
    transform: scale(1);
}

.cart-check.show .check-text {
    opacity: 1;
}


.cart-top-banner {
    width: 100%;
    height: 130px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.cart-top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .cart-top-banner {
        height: 110px;
    }
}




.copy-iban-btn {
    padding: 6px 12px;
    background: #f1f1f1;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

.iban-copied {
    display: none;
    margin-top: 6px;
    font-size: 13px;
    color: #28a745;
    font-weight: bold;
}

.havale-badge {
    background: #f7d354;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 6px;
    margin-left: 6px;
    font-weight: 600;
    color: #000;
}


.recommended-box {
    margin-top: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
}

.recommended-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.rec-card {
    background: #fafafa;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.rec-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
}

.rec-title {
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
}

.rec-price {
    margin: 5px 0 10px;
    font-weight: 700;
    color: #d32f2f;
}

.rec-card .add-to-cart-btn {
    padding: 8px 12px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}



 
/* Overlay */
.slm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Modal */
.slm-modal {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    animation: slideUp .25s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* Kapat butonu */
.slm-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #333;
    font-size: 22px;
    cursor: pointer;
}

/* Tabs */
.slm-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.slm-tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
}

.slm-tab.active {
    color: #000;
    border-bottom: 3px solid #FF5C5C;
}

/* Form panel */
.slm-panel { display: none; }
.slm-panel.active { display: block; }

/* Input grupları */
.slm-group {
    margin-bottom: 15px;
}

.slm-group-row {
    display: flex;
    gap: 10px;
}

.slm-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.slm-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

/* Button */
.slm-btn {
    width: 100%;
    background: #ff5c5c;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.slm-btn:hover {
    background: #e44f4f;
} 






/* === HAMBURGER BUTTON === */
.mobile-menu-btn {
    display: inline-block;
    cursor: pointer;
    z-index: 99999;
}

.mobile-menu-btn .icon span {
    display: block;
    width: 28px;
    height: 3px;
    background: #111;
    margin: 6px 0;
    transition: .3s;
}

/* === OVERLAY === */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    z-index: 99998;
}

/* === PANEL === */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    padding: 25px;
    box-shadow: 2px 0 15px rgba(0,0,0,.20);
    transition: left .35s ease;
}

/* Açık hali */
.mobile-menu-panel.active {
    left: 0;
}

.mobile-menu-overlay.active {
    display: block;
}

/* NAV MENÜ */
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 12px;
}

.mobile-nav a {
    color: #222;
    font-size: 18px;
    text-decoration: none;
    display: block;
}

/* ALT MENÜ */
.mobile-nav .has-sub > a {
    position: relative;
    padding-right: 25px;
}

.mobile-nav .has-sub > a::after {
    content: "›";
    position: absolute;
    right: 4px;
    top: 2px;
    font-size: 20px;
    transform: rotate(0deg);
    transition: .3s;
}

/* Alt menü kapalı */
.mobile-nav .sub {
    display: none;
    margin-left: 15px;
    border-left: 3px solid #eee;
    padding-left: 10px;
}

/* Açık */
.has-sub.open > a::after {
    transform: rotate(90deg);
}

.has-sub.open > .sub {
    display: block;
}


/* PC ve tabletlerde gizle */
@media (min-width: 1025px) {
    .mobile-only {
        display: none !important;
    }
}

/* Tablet yatay için */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-only {
        display: none !important;
    }
}

/* Telefon için görünsün */
@media (max-width: 768px) {
    .mobile-only {
        display: inline-block !important;
    }
}




/* Font Awesome fix – Elementor icon-list SVG override kapatma */
.elementor-icon-list-icon i {
    display: inline-block !important;
    font-style: normal !important;
}

.elementor-icon-list-icon svg {
    display: none !important;
}


/* SCROLLING BAR TAM SOLA YASLANSIN */
.elementor-element-a31151a .elementor-scrolling {
    justify-content: flex-start !important;
    width: 100% !important;
}

.elementor-element-a31151a .elementor-scrolling-wrapper {
    justify-content: flex-start !important;
    width: 100% !important;
    margin-left: 0 !important;
    transform: translateX(0) !important;
}

.elementor-element-a31151a .elementor-scrolling-inner {
    margin-left: 0 !important;
}

.elementor-element-a31151a .elementor-scrolling-item {
    margin-left: 0 !important;
    padding-left: 0 !important;
}


 /* Telefon alanını sabit 200px yap */
.elementor-element-79d32d5 {
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;

    flex: 0 0 200px !important;
    margin:0 0 0 20px;

    white-space: nowrap !important; /* Numara tek satırda kalsın */
}


.elementor-element-2930259 {margin-left:20px; }

.elementor-element-a31151a {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: 100% !important;
    overflow: hidden;
}




/* ============================
   Sadece "NEDİR ?" mega menüsü
   4 kolonu yan yana diz
============================ */

/* Parent li sabit dursun, menü tam genişlik açılsın */
#menu-item-176 {
    position: static;
}

/* Mega menü barın altında, sayfa boyunca */
#menu-item-176 > .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    width: 100%;
    max-width: 1200px;     /* ortaya hizalı genişlik */
    margin: 0 auto;

    background: #ffffff;
    padding: 35px 40px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-radius: 0 0 16px 16px;

    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 9999;
}

/* Hover olunca açılma */
#menu-item-176:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* === ASIL DÜZEN: 4 KOLON YAN YANA ===
   mega-menu > li.mega-menu-item > .elementor > .elementor-element.e-parent > .e-con-inner
*/
#menu-item-176 .mega-menu > li.mega-menu-item > .elementor > .elementor-element.e-parent > .e-con-inner {
    display: flex !important;
    flex-direction: row !important;
    gap: 40px;
    align-items: flex-start;
}

/* Her kolon */
#menu-item-176 .mega-menu .e-child {
    flex: 1 1 0;
    min-width: 220px;
}

/* Listeler normal kalsın ama biraz toparla */
#menu-item-176 .mega-menu .elementor-icon-list-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

#menu-item-176 .mega-menu .elementor-icon-list-item {
    margin-bottom: 8px;
}

#menu-item-176 .mega-menu .elementor-icon-list-item a {
    display: block;
    font-size: 14px;
    color: #222;
    padding: 4px 0;
    transition: .2s;
}

#menu-item-176 .mega-menu .elementor-icon-list-item a:hover {
    color: #00c16e;
}

/* =============================
   NEDİR? Mega Menü — Font Fix
   (diğer menüyle birebir aynı font)
============================= */

#menu-item-176 .mega-menu,
#menu-item-176 .mega-menu * {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    letter-spacing: 0;
}

/* Başlıklar */
#menu-item-176 .mega-menu h6 {
    font-weight: 600 !important;
    font-size: 15px !important;
    margin-bottom: 14px;
}

/* Liste linkleri */
#menu-item-176 .mega-menu .elementor-icon-list-item a {
    font-size: 14px !important;
    font-weight: 400 !important;
}


/* Logo responsive olsun */
.site-logo img,
.custom-logo,
header .logo img {
    max-width: 150px !important;
    height: auto !important;
}

/* Mobilde daha da küçült */
@media (max-width: 768px) {
    .site-logo img,
    .custom-logo,
    header .logo img {
        max-width: 120px !important;
    }
}


.cart-item-remove {
    font-size: 0 !important;
    color: transparent !important;
    position: relative;
}

.cart-item-remove::after {
    content: "🗑️";
    font-size: 18px;
    color: #ef4444;
}
