@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
button,a{
    cursor:  pointer !important;
}
/* Tüm elemanlara genel font ataması (i etiketini hariç tutarak) */
*:not(i) {
    font-family: "Archivo", sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a,span,h1,h2,h3,h4,h5,h6,p {
    color: var(--Neutrals-Black, rgba(0, 0, 0, 1));

}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: #fff;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 100%;
    padding: 0 80px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (min-width:1600px){
    .header-container{
        max-width: 1600px;
        margin: 0 auto;
        padding: 0px;
    }
    
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.navbar {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.nav-item {
    position: relative;
    margin-right: 25px;
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-link {
color: var(--Neutrals-Black, rgba(0, 0, 0, 1));
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    padding: 5px 0;
    gap: 7px;
}
.nav-link >i{
    font-size: 20px;
    color: var(--Neutrals-Black, rgba(0, 0, 0, 1));
}




.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -50%;
transform: translateX(10%);
width: max-content;
    border: 1px solid var(--Neutrals-200, rgba(226, 226, 226, 1));
    background-color: white;
    border-radius: 24px;
    box-shadow: 0px 0px 10.9px 0px rgba(0, 0, 0, 0.08);
    padding: 24px;
    display: none;
    z-index: 1000;
}
.dropdown-menu.three-column {
    display: none;
    width: auto;
    min-width: 600px; /* Genişliği ayarlayabilirsiniz */
    padding: 15px;
    left: 12% !important;
    min-width: 70%;
    max-width: 1150px;
  }
  .dropdown-big{
    position: static !important;
  }
.nav-item:hover .dropdown-menu {
    display: block;
}
.nav-item:hover .dropdown-menu.three-column{
    display: flex !important;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
      color: var(--Neutrals-Black, rgba(0, 0, 0, 1));;
    text-decoration: none;
    font-size: 14px;
    gap: 10px;
    border-radius: 12px;
}



.dropdown-item:hover {
    background: var(--Neutrals-50, rgba(246, 246, 246, 1));
    
}
  .dropdown-column .dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 8px;
    text-decoration: none;
    color: var(--Neutrals-Black, #000000);
    width: fit-content;

  }

  
  .dropdown-column {
    flex: 1;
    padding: 0 10px;
  }
  
  .dropdown-column h4 {
    margin-top: 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 5px;
    color: var(--Neutrals-600, #545454);
    padding-left: 8px;
  }
  


  
  .dropdown-column .dropdown-item img {
    margin-right: 8px;
  }
.header-right {
    display: flex;
    align-items: center;
}
.header-right .profile-container{
    margin-left: 8px;
}
.header-right .profile-container button{
    border: none;
    outline: none;
    background-color: transparent;

}
.header-right .profile-container button img{
    border-radius: 50%;
}
.cart-icon {
    margin-right: 10px;
    border: 1px solid var(--Neutrals-200, rgba(226, 226, 226, 1));
    border-radius: 50%;
    padding: 10px;
    position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;

}
.header-right i {
    font-size: 22px;
}
.cart-count{
    width: 18px;
    height:18px;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--Primary, #F76009);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    text-decoration: none;
    right:10%;
    top:10%;

}
.cart-count span{
    color: white;
    text-decoration: none;
    font-size: 12px;

}
@media screen and (min-width:991px) {
    .cart-container:hover .cart-dropdown {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }
    
    
}

/* Profil Container Stilleri */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.profile-container {
    position: relative;
}

.profile-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.profile-btn:hover {
    opacity: 0.8;
}

/* Profil Modal Stilleri */
.profile-modal {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Active class - jQuery ile eklenip çıkarılacak */
.profile-modal.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.profile-modal-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #8430ce;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.avatar-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.profile-info {
    flex: 1;
}

.profile-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.profile-email {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Cüzdan Alanı */
.wallet-balance {
    padding: 16px ;
}

.wallet-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}
.wallet-wallet-price-box{
    display: flex;
    flex-direction: column;
}
.wallet-bg-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
padding: 10px 16px;
}
.wallet-amount-container{
    display: flex;
}
.wallet-bg-cont{
    background: var(--Neutrals-50, #F6F6F6);
    border-radius: 12px;

}
.wallet-amount {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.wallet-add-btn {
    background-color: #ff6a00;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.wallet-add-btn:hover {
    background-color: #e55f00;
}

/* Menü Öğeleri */
.profile-menu {
    padding: 10px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 8px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.menu-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .profile-modal {
        width: 100%;
        right: 0;
        position: fixed;
        top: 70px;
        height: calc(100% - 70px);
        box-shadow: none !important;
    }
}

/* Cart Container Stilleri */
.cart-container {
    position: relative;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

/* Sepet Dropdown Stilleri */
.cart-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Active class - jQuery ile eklenip çıkarılacak */
.cart-dropdown.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.cart-dropdown-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
}

.cart-dropdown-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Sepet Ürünleri */
.cart-items {
    max-height: 250px;
    overflow-y: auto;
    padding: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background-color: #f8f8f8;
    margin-bottom: 10px;
}

.cart-item-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f0f0f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.cart-item-image img {
    width: 24px;
    height: 24px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.cart-item-account {
    margin: 3px 0 0;
    font-size: 12px;
    color: #777;
}

.cart-item-price {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin: 0 10px;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.cart-item-remove img {
    width: 14px;
    height: 14px;
}

/* Boş Sepet */
.empty-cart {
    text-align: center;
    padding: 20px 15px;
}

.empty-cart-icon {

    opacity: 0.5;
}

.empty-cart-icon img {
   width: auto;
   height: auto;
}

.empty-cart-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #333;
}

.empty-cart-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

/* Sepet Butonları */
.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}
.cart-buttons .btn-primary{
    width: 100% !important;
}


/* Sidebar Styles for Mobile */
.sidebar {
    position: fixed;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: calc(100% - 70px );
    background-color: #fff;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.sidebar-logo {
    height: 35px;
}

.sidebar-right {
    display: flex;
    align-items: center;
}

.sidebar-cart {
    font-size: 20px;
      color: var(--Neutrals-Black, rgba(0, 0, 0, 1));;
    margin-right: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background-color: #7b46b8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-link {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
      color: var(--Neutrals-Black, rgba(0, 0, 0, 1));;
    text-decoration: none;
    font-size: 16px;
}

.sidebar-link i:first-child {
    margin-right: 10px;
      color: var(--Neutrals-Black, rgba(0, 0, 0, 1));;
}

.sidebar-dropdown {
    list-style: none;
    padding: 0;
    background-color: #f9f9f9;
    display: none;
}

.sidebar-dropdown.show {
    display: block;
}

.sidebar-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 15px 12px 35px;
      color: var(--Neutrals-Black, rgba(0, 0, 0, 1));;
    text-decoration: none;
    font-size: 14px;
}

.sidebar-dropdown-item i {
    margin-right: 10px;
    color: #7b46b8;
}

.sidebar-footer {
    padding: 20px 15px;
    border-top: 1px solid #f5f5f5;
}

.sidebar-footer-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.sidebar-buttons {
    display: flex;
    gap: 10px;
}

.sidebar-login {
    flex: 1;
    background-color: #ff6a00;
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.sidebar-register {
    flex: 1;
    background-color: #fff;
      color: var(--Neutrals-Black, rgba(0, 0, 0, 1));;
    border: 1px solid #ddd;
    padding: 10px 0;
    border-radius: 5px;
    cursor: pointer;
}



/* Responsive styles */
@media screen and (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }
    
    .menu-toggle {
        display: block;
        order: 1;
    }
    
    .logo {
        order: 2;
        margin: 0 auto;
    }
    
    .navbar {
        display: none;
    }
    
    .header-right {
        order: 3;
    }
    
    .login-btn {
        display: none;
    }
}




/*FOOTER*/

.footer {
    background-color: #fff;
    padding: 50px 80px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
   gap: 88px;
   justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    margin-bottom: 30px;

}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
}

.footer-heading {
    color: var(--neutrals-Black, rgba(0, 0, 0, 1));
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: var(--Neutrals-700, rgba(40, 40, 40, 1));
    text-decoration: none;

}

.footer-links a:hover {
    color: #ff6a00;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: var(--Neutrals-700, rgba(40, 40, 40, 1));
    text-decoration: none;
}

.social-links a i {
    color: #0088cc;
    margin-right: 5px;
    font-size: 22px;
}

.social-links .whatsapp i {
    color: #25D366;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #777;
}

.footer-copyright {
    color: var(--Neutrals-700, rgba(40, 40, 40, 1));
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    
}

.footer-terms {
    display: flex;
    gap: 20px;
}

.footer-terms a {
    color: var(--Neutrals-700, rgba(40, 40, 40, 1));
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    
    text-decoration: none;
}

.footer-terms a:hover {
    text-decoration: underline;
}

.mbl-login-btn{
    display: none;
}
/* Responsive */
@media screen and (max-width: 992px) {
    .footer {
        padding: 16px;
    }
    .footer-logo{
        margin-bottom: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-column {
        width: 100%;
        padding-right: 0;
        margin-bottom: 0px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-terms {
        gap: 10px;
    }
    .footer-heading{
        margin-bottom: 8px;
    }
    .cart-icon{
        width: 24px;
        height: 24px;
    }
}
.header-left-actions{
    display: none;
}
@media screen  and (max-width:991px){
    .header-right,.header-left-actions{
        width: 102px;
        justify-content: end;
    }
    .header-left-actions{
        display: block;
    }

.header-right .login-btn{
    display: none;
}    
.mbl-login-btn{
    display: block;
}
.header-right{
    gap: 10px;
    align-items: center;
}
.cart-icon .cart-count{
    display: none;
    
}
.cart-icon{
    border: none;
    padding: 0px;
    margin: 0px;
}
.profile-container{
    margin: 0px !important;
}
.profile-btn img{
    width: 36px !important;
    height: 36px !important;
}

.sidebar-menu{
    background-color: white;
    padding-left: 16px;
    padding-right: 16px;
}
.sidebar-dropdown{
    background-color: white !important;

}
.sidebar-dropdown-item{
    padding: 10px 12px !important;
}
.sidebar-item{
    border-color:rgba(238, 238, 238, 1) ;
    padding: 0px !important;
}
.sidebar-item > .sidebar-link{
    padding-right: 0px !important;
    padding-left: 0px !important;

}
.sidebar-footer{
 padding: 1rem;
}
.sidebar-footer-content{
    border: 1px solid var(--Neutrals-200, rgba(226, 226, 226, 1));
    border-radius: 10px;
    padding: 1rem;
}
.sidebar-footer-header{
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
font-size: 20px;
line-height: 30px;
letter-spacing: 0%;
vertical-align: middle;
margin-bottom: 4px;
}
.sidebar-footer-text{
    cıolor: var(--Neutrals-700, rgba(40, 40, 40, 1));
    font-weight: 400;
font-size: 14px;
line-height: 20px;
letter-spacing: 0%;
margin-bottom: 12px;
}
header{
    border-bottom: 1px solid var(--Neutrals-100, rgba(238, 238, 238, 1))
}
}
.btn-secondary, .btn-primary{
    text-decoration: none;
  }