/* style.css */


:root {
    --opet-blue: #00478F; /* Ana Mavi */
    --opet-dark: #002D5C; /* Koyu Mavi */
    --fasty-red: #970031; /* Fasty Kırmızısı */
    --fasty-red-opacity: #970031e0; /* Fasty Kırmızısı */
    --fasty-yellow: #fed41a; /* Fasty Sarısı */
    --fasty-brand-card-bg: #fed41ab3; /* Fasty Sarısı */
    --fasty-brand-card-bg-light: #eaebef; /* Fasty Sarısı */
    --fasty-light-bg: #F0F0F0; /* Kart Gri Arkaplan */
    --fasty-white: #ffffff;
    --text-dark: #333333;
    --font-family-1: 'Kufam', sans-serif;
    --font-family-2: 'Barlow', sans-serif;
    --font-family-3: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family-1);
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* --- HEADER --- */
.navbar-custom {
    background-color: #0088CE; /* Header açık mavisi */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 3px 0;
}

.search-container {
    position: relative;
    width: 100%;
    margin-right: 20px;
    margin-left: 20px;
}

.search-container input {
    border-radius: 20px;
    border: none;
    padding: 5px 13px;
    font-family: var(--font-family-2);
    font-size: 12px;
    letter-spacing: 1px;
    height: 30px;
}

.search-container .search-btn {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--fasty-yellow);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fasty-red);
}

.nav-link {
    color: var(--fasty-white) !important;
    font-weight: 500;
    font-size: 14px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding-top: 10px;
}

.nav-link:hover {
    color: var(--fasty-yellow) !important;
}
.basket-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--fasty-yellow);
    color: var(--fasty-red);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    
}

/* --- SIDEBAR (Kırmızı Alan) --- */
.category-sidebar {
    background-color: var(--fasty-red-opacity);
    border-radius: 0 0 34px 34px;
    padding: 2rem 1.5rem;
    height: 100%;
    color: white;
    border-top: 20px solid var(--fasty-yellow);
}

.category-sidebar h2 {
    font-weight: 700;
    margin-bottom: 3rem;
    margin-top: 1rem;
    line-height: 1.2;
    font-size: calc(1.25rem + .7vw);
}

.cat-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.cat-link:hover {
    transform: translateX(10px);
    color: var(--fasty-yellow);
}

.cat-link:last-child {
    margin-top: 3rem;
}

.cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 5px;
}

.cat-icon .custom-icon {
    width: 30px;
    height: 30px;
    background-color: var(--fasty-white);
    transition: background-color 0.3s ease;
}

.cat-link:hover .cat-icon .custom-icon {
    background-color: var(--fasty-yellow);
}

/* --- FASTY LOGO --- */
.fasty-brand {
    font-family: var(--font-family-2);
    font-weight: 900;
    font-size: 4rem;
    color: var(--fasty-yellow);
    text-shadow: 
        3px 3px 0px var(--fasty-red),
        -1px -1px 0 var(--fasty-red),  
        1px -1px 0 var(--fasty-red),
        -1px 1px 0 var(--fasty-red),
        1px 1px 0 var(--fasty-red);
    transform: rotate(-5deg);
    display: inline-block;
    margin-bottom: 20px;
}

/* --- CARDS (Genel) --- */
.custom-card {
    border-radius: 23px;
    border: none;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: transform 0.3s;
    min-height: 220px;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-card a {
    text-decoration: none;
    color: var(--opet-dark);
    display: block;
    width: 100%;
    height: 100%;
}

/* .card-yellow {
    background-color: var(--fasty-brand-card-bg); 
    color: var(--opet-dark);
}

.card-white {
    background-color: var(--fasty-brand-card-bg-light);
    color: var(--opet-dark);
} */



/* Küçük ekranlar için (col-6 = 2 sütun) - her satır ters */
.home-cards > div:nth-child(4n+1) .custom-card,
.home-cards > div:nth-child(4n+4) .custom-card {
    background-color: var(--fasty-brand-card-bg); /* Sarı */
    color: var(--opet-dark);
}

.home-cards > div:nth-child(4n+2) .custom-card,
.home-cards > div:nth-child(4n+3) .custom-card {
    background-color: var(--fasty-brand-card-bg-light); /* Beyaz */
    color: var(--opet-dark);
}

/* Büyük ekranlar için (col-lg-3 ve col-xl-3 = 4 sütun) - her satır ters */
@media (min-width: 992px) {
    /* İlk satır: sarı, beyaz, sarı, beyaz */
    .home-cards > div:nth-child(8n+1) .custom-card,
    .home-cards > div:nth-child(8n+3) .custom-card {
        background-color: var(--fasty-brand-card-bg); /* Sarı */
        color: var(--opet-dark);
    }
    
    .home-cards > div:nth-child(8n+2) .custom-card,
    .home-cards > div:nth-child(8n+4) .custom-card {
        background-color: var(--fasty-brand-card-bg-light); /* Beyaz */
        color: var(--opet-dark);
    }
    
    /* İkinci satır: beyaz, sarı, beyaz, sarı */
    .home-cards > div:nth-child(8n+5) .custom-card,
    .home-cards > div:nth-child(8n+7) .custom-card {
        background-color: var(--fasty-brand-card-bg-light); /* Beyaz */
        color: var(--opet-dark);
    }
    
    .home-cards > div:nth-child(8n+6) .custom-card,
    .home-cards > div:nth-child(8n+8) .custom-card {
        background-color: var(--fasty-brand-card-bg); /* Sarı */
        color: var(--opet-dark);
    }
}



.plus-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--fasty-red);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
}

.card-title-custom {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    line-height: 1.1;
    color: var(--opet-dark);
    text-decoration: none;
}

.card-link-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
    color: var(--opet-dark);
}

/* --- PRODUCT PAGE SPECIFIC --- */
.filter-pills .btn {
    border-radius: 20px;
    background-color: #ddd;
    border: none;
    color: #333;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
}

.filter-pills .btn.active {
    background-color: var(--fasty-red);
    color: white;
}



.price-tag {
    background-color: #e0e0e0;
    border-radius: 20px;
    padding: 5px 15px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}







/* --- FOOTER --- */
footer {
    margin-top: auto;
    background-color: #001f3f;
    padding: 15px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer a {
    color: var(--fasty-brand-card-bg-light);
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--fasty-yellow);
}

/* Hamburger Menu Override */
.offcanvas {
    background-color: var(--opet-blue);
    color: white;
}
.offcanvas-header .btn-close {
    filter: invert(1);
}



.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-left: 5%;
}

.main-header .navbar-custom {
    width: 100%;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.main-header .main-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin-right: 30px;
}

.navbar-brand img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.home-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.home-icon .custom-icon {
    width: 26px;
    height: 26px;
    background-color: var(--fasty-white);
    transition: background-color 0.3s ease;
    position: relative;
    bottom: 1px;
    
}
.home-icon:hover .custom-icon {
    background-color: var(--fasty-yellow);
}

.category-sidebar-container .category-sidebar-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
        margin: auto;
    text-align: center;
    display: block;
    margin-bottom: 45px;
    rotate: 349deg;
}



.filter-sidebar-area .filter-sidebar-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
        margin: auto;
    text-align: center;
    display: block;
    margin-bottom: 45px;
    rotate: 349deg;
}

.custom-icon {
    width: 50%;
    height: 50%;
    background-color: var(--white);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

}

.category-sidebar-container {
    max-width: 300px;
    margin: auto;
}


@media (min-width: 992px) {
.navbar-expand-lg .navbar-collapse {
    justify-content: space-between;
    margin-right: 5%;
    margin-left: 20px;
}

.navbar-expand-lg .navbar-nav {
    gap: 15px;
            width: 100%;
        justify-content: end;
        min-width: max-content;
}
}

@media (min-width: 992px) and (max-width: 1200px) {
.navbar-expand-lg .navbar-nav {
    gap: 0px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
}
}


.custom-icon {
  width: 32px;
  height: 32px;
  background-color: var(--fasty-yellow);
  margin: 0 auto;
  display: block;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

/* Hamburger İkonu */
.custom-icon.icon-hamburger {
    -webkit-mask-image: url('./../images/icons/icon-hamburger.png');
    mask-image: url('./../images/icons/icon-hamburger.png');
}

/* Home İkonu (Senin verdiğin) */
.custom-icon.icon-home {
    -webkit-mask-image: url('./../images/icons/icon-home.png');
    mask-image: url('./../images/icons/icon-home.png');
}

/* Login İkonu */
.custom-icon.icon-login {
    -webkit-mask-image: url('./../images/icons/icon-login.png');
    mask-image: url('./../images/icons/icon-login.png');
}

/* Register (Kayıt Ol) İkonu */
.custom-icon.icon-register {
    -webkit-mask-image: url('./../images/icons/icon-register.png');
    mask-image: url('./../images/icons/icon-register.png');
}

/* Sepet Butonu İkonu (icon-basket-btn) */
.custom-icon.icon-basket-btn {
    -webkit-mask-image: url('./../images/icons/icon-basket-btn.png');
    mask-image: url('./../images/icons/icon-basket-btn.png');
}

/* Sağ Ok İkonu (icon-right) */
.custom-icon.icon-right {
    -webkit-mask-image: url('./../images/icons/icon-right.png');
    mask-image: url('./../images/icons/icon-right.png');
}

/* Uzun Sağ Ok İkonu (icon-right-long) */
.custom-icon.icon-right-long {
    -webkit-mask-image: url('./../images/icons/icon-right-long.png');
    mask-image: url('./../images/icons/icon-right-long.png');
}

/* Sepet İkonu (icon-basket) */
.custom-icon.icon-basket {
    -webkit-mask-image: url('./../images/icons/icon-basket.png');
    mask-image: url('./../images/icons/icon-basket.png');
}

/* Yıldız İkonu */
.custom-icon.icon-star {
    -webkit-mask-image: url('./../images/icons/icon-star.png');
    mask-image: url('./../images/icons/icon-star.png');
}


.navbar-expand-lg .nav-link .custom-icon {
    width: 20px;
    height: 20px;
    background-color: var(--fasty-yellow);
    transition: background-color 0.3s ease;
    position: relative;
    bottom: 2px;
}

.navbar-expand-lg .nav-link .custom-icon.icon-hamburger {
    width: 26px;
    height: 26px;
    background-color: var(--fasty-white);
    transition: background-color 0.3s ease;
    position: relative;
    bottom: 2px;
}
.navbar-expand-lg .nav-link:hover .custom-icon {
    background-color: var(--fasty-yellow);
}


/* CANLI ARAMA DROPDOWN */
.search-results {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: var(--fasty-white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 1050;
    padding: 8px 10px;
    max-height: 340px;
    overflow-y: auto;
    font-family: var(--font-family-1);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

/* Search dropdown scrollbar – Fasty stilinde */
.search-results::-webkit-scrollbar {
  width: 8px;
}

.search-results::-webkit-scrollbar-track {
  background: var(--fasty-brand-card-bg-light);  /* açık gri/sarımsı arka plan */
  border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
  background: var(--fasty-yellow);              /* Fasty sarısı */
  border-radius: 10px;
  border: 2px solid var(--fasty-brand-card-bg-light);
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: var(--fasty-red);                 /* hover’da Fasty kırmızısı */
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
    background: var(--fasty-brand-card-bg-light);
}

.search-result-item:nth-child(odd) {
    background: var(--fasty-brand-card-bg);
}

.search-result-item + .search-result-item {
    margin-top: 6px;
}

.search-result-item:hover {
    transform: translateY(-1px);
    background: var(--fasty-yellow);
}

.search-result-thumb {
    width: 38px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.search-result-thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-bottom: 2px;
}

.search-result-sub {
    font-size: 11px;
    color: #555;
    margin-bottom: 3px;
}

.search-result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #444;
}

.search-result-price {
    font-weight: 700;
}

.search-result-cta {
    font-weight: 600;
    color: var(--fasty-red);
}

/* Boş sonuç / info satırı */
.search-result-empty {
    padding: 10px 6px;
    font-size: 12px;
    color: #555;
}

/* Mobilde tam genişlik ve biraz büyük dokunma alanı */
@media (max-width: 576px) {
    .search-results {
        border-radius: 16px;
        padding: 6px 8px;
    }
    .search-result-item {
        padding: 8px;
    }
}


.footer-lang {
    position: relative;
}

.footer-lang-toggle {
    background: transparent;

    padding: 4px 14px;
    color: var(--fasty-brand-card-bg-light);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition:  color 0.2s ease;
    border: none;
    box-shadow: none;
}

.footer-lang-toggle:hover {

    color: var(--fasty-yellow);
}

.footer-lang-toggle i {
    font-size: 14px;
    position: relative;
    bottom: 2px;
}


.footer-lang-menu {
    position: absolute;
    right: 0;
    bottom: 120%;
    background: #001733;
    border-radius: 16px;
    padding: 6px;
    min-width: 170px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    z-index: 100;
}

.footer-lang-item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--fasty-brand-card-bg-light);
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-lang-item + .footer-lang-item {
    margin-top: 4px;
}

.footer-lang-item:hover {
    background: rgba(0,0,0,0.35);
    color: var(--fasty-yellow);
}

/* Küçük ekranlarda biraz daha sıkı */
@media (max-width: 576px) {
    .footer-lang-toggle {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}


/* --- ÜRÜNLER SAYFASI --- */

/* Kategori Slider */
.category-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
    user-select: none; /* Text seçimini engelle */
}

.category-slider.dragging {
    cursor: grabbing;
    scroll-behavior: auto; /* Drag sırasında smooth scroll'u kapat */
}

.category-slider.dragging .category-slide {
    pointer-events: none; /* Drag sırasında link tıklamalarını engelle */
}

.category-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-slide {
    flex-shrink: 0;
    padding: 12px 30px 10px 30px;
    line-height: 1;
    background: rgba(88, 38, 1, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    user-select: none;
    -webkit-user-select: none;
    min-width: fit-content; /* Yazı genişliğine göre otomatik */
    box-sizing: border-box; /* Padding dahil hesaplama */
}

.category-slide:active {
    transform: scale(0.98); /* Tıklama feedback */
}

.category-slide.active {
    background: var(--fasty-red);
    color: var(--fasty-white);
}

.category-slide:hover {
    background: var(--fasty-yellow);
    color: var(--opet-dark);
    text-decoration: none;
}

.category-slide.active:hover {
    background: var(--fasty-red);
    color: var(--fasty-white);
}
.category-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.category-slider-dots.hidden {
    display: none;
}

.category-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fasty-yellow);
    cursor: pointer;
    transition: background 0.3s ease;
}

.category-slider-dot.active {
    background: var(--fasty-red);
}

/* Ürün Kontrolleri */
.product-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--fasty-red);
    margin: 0;
    white-space: nowrap;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    border-radius: 18px;
    padding: 6px 18px 6px 0px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23970031' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px ;
    background-size: 12px;
}

/* .custom-select:hover {
    background-color: var(--fasty-yellow);
    border-color: var(--fasty-yellow);
} */

.custom-select:focus {
    outline: none;
    background-color: transparent;
    border: none;
}

/* Ürün Grid - Renk Alternatifleri (Her satır ters) */

/* Mobilde 2 sütun için (col-6) - her satır ters */
.products-grid > div:nth-child(n+1) .product-card {
    background-color: rgba(254, 212, 26, 0.32) !important; /* Sarı */
}

.products-grid > div:nth-child(n+2) .product-card {
    background-color: rgba(221, 202, 186, 0.25) !important; /* Beyaz */
}

@media (min-width: 576px) {
/* Mobilde 2 sütun için (col-6) - her satır ters */
.products-grid > div:nth-child(4n+1) .product-card,
.products-grid > div:nth-child(4n+4) .product-card {
    background-color: rgba(254, 212, 26, 0.32) !important; /* Sarı */
}

.products-grid > div:nth-child(4n+2) .product-card,
.products-grid > div:nth-child(4n+3) .product-card {
    background-color: rgba(221, 202, 186, 0.25) !important; /* Beyaz */
}
}

/* Tablet ve Desktop için 3 sütun (col-lg-4, col-xl-4) - her satır ters */
@media (min-width: 1200px) {
    /* Varsayılan background'u kaldır */
    .products-grid > div .product-card {
        background-color: transparent !important;
    }
    
    /* Satır 1 ve 3: sarı, beyaz, sarı */
    .products-grid > div:nth-child(6n+1) .product-card,  /* 1, 7, 13... */
    .products-grid > div:nth-child(6n+3) .product-card,  /* 3, 9, 15... */
    .products-grid > div:nth-child(6n+5) .product-card { /* 5, 11, 17... */
        background-color: rgba(254, 212, 26, 0.32) !important; /* Sarı */
    }
    
    /* Satır 2 ve 4: beyaz, sarı, beyaz */
    .products-grid > div:nth-child(6n+2) .product-card,  /* 2, 8, 14... */
    .products-grid > div:nth-child(6n+4) .product-card,  /* 4, 10, 16... */
    .products-grid > div:nth-child(6n+6) .product-card { /* 6, 12, 18... */
        background-color: rgba(221, 202, 186, 0.25) !important; /* Beyaz */
    }
}

/* 1400px üstü için 4 sütun (col-xl-3) - her satır ters */
@media (min-width: 1400px) {
    /* Varsayılan background'u kaldır */
    .products-grid > div .product-card {
        background-color: transparent !important;
    }
    
    /* Satır 1 ve 3: sarı, beyaz, sarı, beyaz */
    .products-grid > div:nth-child(8n+1) .product-card,  /* 1, 9, 17... */
    .products-grid > div:nth-child(8n+3) .product-card,  /* 3, 11, 19... */
    .products-grid > div:nth-child(8n+6) .product-card,  /* 6, 14, 22... */
    .products-grid > div:nth-child(8n+8) .product-card { /* 8, 16, 24... */
        background-color: rgba(254, 212, 26, 0.32) !important; /* Sarı */
    }
    
    /* Satır 2 ve 4: beyaz, sarı, beyaz, sarı */
    .products-grid > div:nth-child(8n+2) .product-card,  /* 2, 10, 18... */
    .products-grid > div:nth-child(8n+4) .product-card,  /* 4, 12, 20... */
    .products-grid > div:nth-child(8n+5) .product-card,  /* 5, 13, 21... */
    .products-grid > div:nth-child(8n+7) .product-card { /* 7, 15, 23... */
        background-color: rgba(221, 202, 186, 0.25) !important; /* Beyaz */
    }
}

/* Ürün Kartı Güncellemeleri */
.product-card {
    border-radius: 23px;
    text-align: center;
    padding: 15px 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    width: 100%;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-2);
    transition: color 0.3s ease;
}

.product-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 10px;
    color: #000;
    font-family: var(--font-family-3);
}

.product-volume,
.product-pack {
    font-weight: 400;
}

.product-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-family: var(--font-family-2);
    background-color: #dddddd;
    padding: 5px 15px 5px 20px;
    border-radius: 30px;
    max-width: 100%;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}

.product-price {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.basket-icon-btn {
    background-color: #582601;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.basket-icon-btn:hover {
    transform: scale(1.1);
    background-color: var(--fasty-red);
}

.basket-icon-btn i {
    font-size: 14px;
    color: var(--fasty-white);
}

/* Pagination */
.custom-pagination {
    margin-top: 30px;
}

.custom-pagination .page-link {
    background: var(--fasty-brand-card-bg-light);
    border: 1px solid rgba(0,0,0,0.1);
    color: #000;
    padding: 8px 16px;
    border-radius: 18px;
    margin: 0 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
    background: var(--fasty-yellow);
    border-color: var(--fasty-yellow);
    color: var(--opet-dark);
}

.custom-pagination .page-item.active .page-link {
    background: var(--fasty-yellow);
    border-color: var(--fasty-yellow);
    color: var(--opet-dark);
}

.custom-pagination .page-item.disabled .page-link {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.category-slider-wrapper {
    position: relative;
    margin-bottom: 20px;
    padding-top: 30px;
}

.category-slider-wrapper .category-slider-dots {
    position: absolute;
    top: 0px;
}

.page-item:first-child .page-link {
    border-radius: 18px;
}
.page-item:last-child .page-link {
    border-radius: 18px;
}

.product-card a {
    text-decoration: none;
}

.product-card a:hover .product-name {
    color: var(--fasty-red);
}



/* --- KAMPANYALAR SAYFASI --- */

/* Kampanyalar Header */
.campaigns-header {
    margin-bottom: 3rem;
}

.campaigns-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.campaigns-logo-img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
        margin-bottom: 30px;
    rotate: 349deg;
}

.campaigns-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.campaigns-title-line {
    flex: 1;
    height: 2px;
    background: #966947;
    max-width: 100%;
}

.campaigns-title-text {
    white-space: nowrap;
    padding: 0 10px;
}

/* Kampanya Grid - Renk Alternatifleri (Her satır ters) */

/* Mobil (col-12) - 1 sütun - ardışık alternatif */
.campaigns-grid > div:nth-child(odd) .campaign-card {
    background-color: rgba(254, 212, 26, 0.32) !important; /* Sarı */
}

.campaigns-grid > div:nth-child(even) .campaign-card {
    background-color: rgba(221, 202, 186, 0.25) !important; /* Beyaz */
}

/* Tablet (col-md-6) - 2 sütun için - her satır ters */
@media (min-width: 768px) and (max-width: 1199px) {
    .campaigns-grid > div .campaign-card {
        background-color: transparent !important;
    }
    
    .campaigns-grid > div:nth-child(4n+1) .campaign-card,
    .campaigns-grid > div:nth-child(4n+4) .campaign-card {
        background-color: rgba(254, 212, 26, 0.32) !important; /* Sarı */
    }
    
    .campaigns-grid > div:nth-child(4n+2) .campaign-card,
    .campaigns-grid > div:nth-child(4n+3) .campaign-card {
        background-color: rgba(221, 202, 186, 0.25) !important; /* Beyaz */
    }
}

/* Desktop (col-xl-4) - 3 sütun için - her satır ters */
@media (min-width: 1200px) and (max-width: 1399px) {
    .campaigns-grid > div .campaign-card {
        background-color: transparent !important;
    }
    
    /* Satır 1 ve 3: sarı, beyaz, sarı */
    .campaigns-grid > div:nth-child(6n+1) .campaign-card,
    .campaigns-grid > div:nth-child(6n+3) .campaign-card,
    .campaigns-grid > div:nth-child(6n+5) .campaign-card {
        background-color: rgba(254, 212, 26, 0.32) !important; /* Sarı */
    }
    
    /* Satır 2 ve 4: beyaz, sarı, beyaz */
    .campaigns-grid > div:nth-child(6n+2) .campaign-card,
    .campaigns-grid > div:nth-child(6n+4) .campaign-card,
    .campaigns-grid > div:nth-child(6n+6) .campaign-card {
        background-color: rgba(221, 202, 186, 0.25) !important; /* Beyaz */
    }
}

/* Large Desktop (col-xxl-3) - 4 sütun için - her satır ters */
@media (min-width: 1400px) {
    .campaigns-grid > div .campaign-card {
        background-color: transparent !important;
    }
    
    /* Satır 1 ve 3: sarı, beyaz, sarı, beyaz */
    .campaigns-grid > div:nth-child(8n+1) .campaign-card,
    .campaigns-grid > div:nth-child(8n+3) .campaign-card,
    .campaigns-grid > div:nth-child(8n+6) .campaign-card,
    .campaigns-grid > div:nth-child(8n+8) .campaign-card {
        background-color: rgba(254, 212, 26, 0.32) !important; /* Sarı */
    }
    
    /* Satır 2 ve 4: beyaz, sarı, beyaz, sarı */
    .campaigns-grid > div:nth-child(8n+2) .campaign-card,
    .campaigns-grid > div:nth-child(8n+4) .campaign-card,
    .campaigns-grid > div:nth-child(8n+5) .campaign-card,
    .campaigns-grid > div:nth-child(8n+7) .campaign-card {
        background-color: rgba(221, 202, 186, 0.25) !important; /* Beyaz */
    }
}


.campaigns-grid {
    row-gap: 100px;
    margin: 150px 0 100px 0;
}
/* Kampanya Kartı Güncellemeleri */
.campaign-card {
    background-color: rgba(254, 212, 26, 0.32);
    border-radius: 20px;
    text-align: center;
    padding-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    position: relative;
}


.campaign-card:hover {
    transform: translateY(-5px);
}

.campaign-image-wrapper {
    position: relative;
    width: 100%;
    margin-top: -100px;
}

.campaign-card img {
    width: 75%;
    margin: auto;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}


.campaign-body {
    padding: 20px 15px 0 15px;
    color: var(--opet-dark);
    flex: 1;
    display: flex;
    flex-direction: column;
        max-width: 75%;
    margin: auto;
}

.campaign-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    margin-top: 10px;
    font-family: var(--font-family-1);
    line-height: 1.3;
}

.campaign-description {
    font-size: 14px;
    color: #000;
    margin-bottom: 30px;
    flex: 1;
    font-family: var(--font-family-3);
}

.campaign-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
}

.campaign-card .btn-detail {
    background-color: var(--fasty-red);
    color: white;
    border-radius: 20px;
    padding: 12px 30px;
    border: none;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-family: var(--font-family-1);
    width: 100%;
}

.campaign-card .btn-detail:hover {
    background-color: #7a0026;
    color: white;
}

.campaign-card .arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.campaign-card .arrow-circle:hover i {
    background-color: var(--fasty-red);
    color: white;
}

.campaign-card .arrow-circle i {
    background-color: #966947;
}

/* Responsive */
@media (max-width: 576px) {
    .campaigns-title {
        font-size: 2rem;
        gap: 10px;
    }

    
    .campaigns-logo-img {
        max-width: 150px;
    }
}

/* Kampanya Modal Stilleri */
.campaign-modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.campaign-modal-header {
    background-color: var(--fasty-yellow);
    border-bottom: 2px solid var(--fasty-red);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.campaign-modal-header .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0;
}

.campaign-modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.campaign-modal-header .btn-close:hover {
    opacity: 1;
}

.campaign-modal-body {
    padding: 30px;
    background-color: #fff;
}

.campaign-modal-image {
    text-align: center;
}

.campaign-modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.campaign-modal-content-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    font-family: var(--font-family-2);
}

.campaign-modal-content-text p {
    margin-bottom: 15px;
}

.campaign-modal-content-text ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.campaign-modal-content-text ul li {
    margin-bottom: 8px;
}

.campaign-modal-content-text strong {
    color: var(--opet-dark);
    font-weight: 700;
}

.campaign-modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 15px 25px;
}

.campaign-modal-footer .btn {
    border-radius: 20px;
    padding: 8px 25px;
    font-weight: 600;
    font-family: var(--font-family-2);
}

.campaign-modal-footer .btn-secondary {
    background-color: #6c757d;
    border: none;
}

.campaign-modal-footer .btn-primary {
    background-color: var(--fasty-red);
    border: none;
}

.campaign-modal-footer .btn-primary:hover {
    background-color: #7a0026;
}


/* --- ÜRÜN QUICK VIEW MODAL --- */

.product-detail-content {
    /* Modal wrapper */
}

.product-detail-content-dialog {
    max-width: 900px;
}

.product-detail-content-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.product-detail-content-header {
    background-color: var(--fasty-yellow);
    border-bottom: 2px solid var(--fasty-red);
    padding: 20px 30px;
}

.product-detail-content-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0;
}

.product-detail-content-close {
    filter: invert(1);
    opacity: 0.8;
}

.product-detail-content-close:hover {
    opacity: 1;
}

.product-detail-content-body {
    padding: 30px;
    background-color: #fff;
}

.product-detail-content-row {
    margin: 0;
}

.product-detail-content-image-col {
    padding-right: 20px;
}

.product-detail-content-image-wrapper {
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-content-image {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.product-detail-content-info-col {
    padding-left: 20px;
}

.product-detail-content-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-detail-content-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-bottom: 20px;
    font-family: var(--font-family-2);
    line-height: 1.3;
}

.product-detail-content-details {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.product-detail-content-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    font-family: var(--font-family-2);
}

.product-detail-content-detail-item:last-child {
    margin-bottom: 0;
}

.product-detail-content-detail-label {
    font-weight: 600;
    color: #666;
}

.product-detail-content-detail-value {
    font-weight: 700;
    color: var(--opet-dark);
}

.product-detail-content-price {
    color: var(--fasty-red);
    font-size: 18px;
}

.product-detail-content-description {
    margin-bottom: 25px;
    flex: 1;
}

.product-detail-content-description-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-bottom: 12px;
    font-family: var(--font-family-2);
}

.product-detail-content-description-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    font-family: var(--font-family-2);
    margin: 0;
}

.product-detail-content-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-top: 20px;
}

.product-detail-content-quantity-label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    font-family: var(--font-family-2);
    margin: 0;
    position: absolute;
    top: -25px;
}

.product-detail-content-quantity-controls {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: rgba(254, 212, 26, 0.32);
    border-radius: 25px;
    padding: 6px 12px;
}

.product-detail-content-quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: var(--fasty-red);
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: var(--font-family-2);
    flex-shrink: 0;
}

.product-detail-content-quantity-btn:hover {
    background-color: #7a0026;
    transform: scale(1.1);
}

.product-detail-content-quantity-input {
    flex: 1;
    height: 32px;
    width: 63px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    padding: 0 10px;
    -moz-appearance: textfield;
}

.product-detail-content-quantity-input::-webkit-outer-spin-button,
.product-detail-content-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-detail-content-quantity-input:focus {
    outline: none;
}
.product-detail-content-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 20px 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.product-detail-content-btn {
    border-radius: 20px;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-family-2);
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.product-detail-content-btn-detail {
    background-color: #6c757d;
    color: white;
}

.product-detail-content-btn-detail:hover {
    background-color: #5a6268;
    color: white;
}

.product-detail-content-btn-add {
    background-color: var(--fasty-red);
    color: white;
}

.product-detail-content-btn-add:hover {
    background-color: #7a0026;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .product-detail-content-image-col {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .product-detail-content-info-col {
        padding-left: 0;
    }
    
    .product-detail-content-body {
        padding: 20px;
    }
    
    .product-detail-content-footer {
        flex-direction: column;
    }
    
    .product-detail-content-btn {
        width: 100%;
        text-align: center;
    }
}


.campaign-card .btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.campaign-card .btn-detail i{
    background-color: var(--fasty-white);
    margin: 0;
    width: 24px;
    height: 24px;
    bottom: 1px;
    position: relative;

}

.product-detail-container {
    background-color: var(--fasty-white);
    border-radius: 20px;
    padding: 40px 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.product-detail-container .product-detail-content-image-col {
    padding-left: 0;
}


/* Ürün Detay Sayfası Butonları */
.product-detail-button-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Alt Buton Container (Favoriler + Daha Fazlası) */
.product-detail-bottom-container {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Ortak Buton Stilleri */
.basket-add-btn,
.fav-add-btn,
.detail-link-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-family-2);
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.basket-add-btn i,
.fav-add-btn i,
.detail-link-btn i {
    transition: transform 0.3s ease;
}

/* ========================================
   SEPETE EKLE BUTONU - Primary CTA
======================================== */
.basket-add-btn {
    background: linear-gradient(135deg, var(--fasty-red) 0%, #a30033 100%);
    color: var(--fasty-white);
    border: none;
    box-shadow: 0 4px 15px rgba(145, 0, 45, 0.35);
    min-width: 150px;
    height: 44px;
    max-height: 44px;
    width: 100%;
}

.basket-add-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.basket-add-btn:hover::before {
    left: 100%;
}

.basket-add-btn:hover {
    background: linear-gradient(135deg, #7a0026 0%, #5c001c 100%);
    color: var(--fasty-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(145, 0, 45, 0.45);
}

.basket-add-btn:hover i {
    transform: scale(1.15);
}

.basket-add-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(145, 0, 45, 0.4);
}

.basket-add-btn i {
    width: 18px;
    height: 18px;
    background-color: var(--fasty-white);
    margin: 0;
}

.product-detail-container .basket-add-btn{
    width: 50%;
}

/* ========================================
   FAVORİLERE EKLE BUTONU - Soft Secondary
======================================== */
.fav-add-btn {
    background: rgba(0, 0, 0, 0.04);
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 140px;
    height: 44px;
    max-height: 44px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.fav-add-btn:hover, .fav-add-btn:active, .fav-add-btn:focus, .fav-add-btn:focus-visible {
    background: rgba(0, 0, 0, 0.08) !important;
    color: #333 !important;
    border-color: rgba(0, 0, 0, 0.18) !important;
}



/* ========================================
   DAHA FAZLASI BUTONU - Soft Tertiary
======================================== */
.detail-link-btn {
    background: rgba(0, 0, 0, 0.04);
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 140px;
    height: 44px;
    max-height: 44px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.detail-link-btn:hover, .detail-link-btn:active, .detail-link-btn:focus, .detail-link-btn:focus-visible {
    background: rgba(0, 0, 0, 0.08) !important;
    color: #333 !important;
    border-color: rgba(0, 0, 0, 0.18) !important;
}





.product-similar-container {
    background-color: var(--fasty-white);
    border-radius: 20px;
    padding: 40px 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.product-similar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
        border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
        margin-bottom: 40px;

}

.product-similar-btn-all {
    background-color: var(--fasty-red);
    color: var(--fasty-white);
    border-radius: 20px;
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-2);
}

.product-similar-btn-all:hover, .product-similar-btn-all:active, .product-similar-btn-all:focus, .product-similar-btn-all:focus-visible {
    background-color: #7a0026 !important;
    color: var(--fasty-white) !important;
}
.product-similar-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    text-align: left;

}

/* === DROPDOWN MENU === */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: var(--fasty-white);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 45, 92, 0.15);
    border: none;
    margin-top: 8px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    position: absolute;
}

.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-family-1);
    color: var(--opet-dark);
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: var(--fasty-yellow);
    color: var(--opet-dark);
}

.dropdown-toggle::after {
    margin-left: 0px;
    vertical-align: middle;
    border-top-width: 5px;
    border-right-width: 5px;
    border-left-width: 5px;
    transition: transform 0.2s ease;
        position: relative;
    bottom: 2px;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* === BASKET SIDEBAR BUTTON === */
.basket-sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--fasty-red);
    color: var(--fasty-white);
    border-radius: 20px;
    padding: 6px 12px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-1);
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
    margin-left: 30px;
}

.basket-sidebar-btn:hover {
    background-color: #7a0026;
    color: var(--fasty-white);
    transform: translateY(-1px);
}

.basket-sidebar-btn:active {
    transform: translateY(0);
}

.basket-sidebar-btn .custom-icon {
    width: 18px;
    height: 18px;
    background-color: var(--fasty-white);
    margin: 0;
    flex-shrink: 0;
}

.basket-sidebar-btn .basket-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 6px;
    background-color: var(--fasty-yellow);
    color: var(--fasty-red);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-family-2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
    }

    .dropdown-menu.show {
        left: -50% !important;
    }
    
    .dropdown-menu .dropdown-item {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .basket-sidebar-btn {
        padding: 6px 12px;
        font-size: 12px;
        gap: 6px;
        margin-left: 0px;
    }
    
    .basket-sidebar-btn .custom-icon {
        width: 16px;
        height: 16px;
    }
    
    .basket-sidebar-btn .basket-badge {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
        top: -5px;
        right: -5px;
    }
}

@media (max-width: 575.98px) {
    .dropdown-menu .dropdown-item {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .basket-sidebar-btn {
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 16px;
    }
    
    .basket-sidebar-btn .custom-icon {
        width: 14px;
        height: 14px;
    }
    
    .basket-sidebar-btn .basket-badge {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: -4px;
        right: -4px;
    }
}


/* ============================= */
/* === BASKET SIDEBAR OVERLAY === */
/* ============================= */

.basket-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 45, 92, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

/* Sidebar Container */
.basket-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.basket-sidebar-overlay.active .basket-sidebar {
    transform: translateX(0);
}

/* Sidebar Header */
.basket-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--fasty-red) 0%, #7a0026 100%);
    border-bottom: 4px solid var(--fasty-yellow);
    flex-shrink: 0;
}

.basket-sidebar-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--fasty-white);
    font-family: var(--font-family-1);
    margin: 0;
}

.basket-sidebar-title .custom-icon {
    width: 26px;
    height: 26px;
    background-color: var(--fasty-yellow);
    margin: 0;
}

.basket-sidebar-count {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.basket-sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--fasty-white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.basket-sidebar-close:hover {
    background-color: var(--fasty-yellow);
    border-color: var(--fasty-yellow);
    color: var(--fasty-red);
    transform: rotate(90deg);
}

/* Sidebar Items Container */
.basket-sidebar-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--fasty-yellow) #f0f0f0;
}

.basket-sidebar-items::-webkit-scrollbar {
    width: 6px;
}

.basket-sidebar-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.basket-sidebar-items::-webkit-scrollbar-thumb {
    background: var(--fasty-yellow);
    border-radius: 10px;
}

.basket-sidebar-items::-webkit-scrollbar-thumb:hover {
    background: var(--fasty-red);
}

/* Single Item */
.basket-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background-color: var(--fasty-white);
    border-radius: 16px;
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    animation: basketItemSlideIn 0.4s ease forwards;
}

@keyframes basketItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.basket-sidebar-item:nth-child(1) { animation-delay: 0.05s; }
.basket-sidebar-item:nth-child(2) { animation-delay: 0.1s; }
.basket-sidebar-item:nth-child(3) { animation-delay: 0.15s; }
.basket-sidebar-item:nth-child(4) { animation-delay: 0.2s; }
.basket-sidebar-item:nth-child(5) { animation-delay: 0.25s; }

.basket-sidebar-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.basket-sidebar-item:last-child {
    margin-bottom: 0;
}

/* Item Image */
.basket-item-image {
    width: 70px;
    height: 80px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.15) 0%, rgba(254, 212, 26, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
}

.basket-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.basket-sidebar-item:hover .basket-item-image img {
    transform: scale(1.08);
}

/* Item Info */
.basket-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.basket-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.basket-item-title:hover {
    color: var(--fasty-red);
}

.basket-item-variant {
    font-size: 12px;
    color: #777;
    font-family: var(--font-family-3);
}

.basket-item-quantity-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    gap: 10px;
}

/* Quantity Text */
.basket-item-qty {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    font-family: var(--font-family-2);
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 12px;
}

/* Item Price */
.basket-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--fasty-red);
    font-family: var(--font-family-2);
    white-space: nowrap;
}

/* Remove Button */
.basket-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    color: #999;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.basket-item-remove:hover {
    background-color: var(--fasty-red);
    color: var(--fasty-white);
    opacity: 1;
    transform: scale(1.1);
}

/* Sidebar Footer */
.basket-sidebar-footer {
    padding: 20px 24px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.basket-sidebar-summary {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-label {
    font-size: 14px;
    color: #666;
    font-family: var(--font-family-2);
}

.summary-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

.summary-row.summary-total {
    margin: 20px 0px 40px 0px;
}

.summary-row.summary-total .summary-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
}

.summary-row.summary-total .summary-value {
    font-size: 27px;
    font-weight: 800;
    color: var(--fasty-red);
}

/* Action Buttons */
.basket-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.basket-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-family-1);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.basket-action-btn .custom-icon {
    width: 18px;
    height: 18px;
    margin: 0;
    transition: transform 0.3s ease;
    position: relative; 
    bottom: 2px;
}

.basket-view-btn {
    background-color: var(--fasty-yellow);
    color: var(--opet-dark);
}

.basket-view-btn .custom-icon {
    background-color: var(--opet-dark);
}

.basket-view-btn:hover {
    background-color: #e5bf17;
    color: var(--opet-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 212, 26, 0.4);
}

.basket-checkout-btn {
    background: linear-gradient(135deg, var(--fasty-red) 0%, #7a0026 100%);
    color: var(--fasty-white);
    box-shadow: 0 4px 15px rgba(151, 0, 49, 0.3);
}

.basket-checkout-btn .custom-icon {
    background-color: var(--fasty-white);
}

.basket-checkout-btn:hover {
    background: linear-gradient(135deg, #7a0026 0%, var(--fasty-red) 100%);
    color: var(--fasty-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 0, 49, 0.4);
}

.basket-checkout-btn:hover .custom-icon {
    transform: translateX(4px);
}

/* Body no-scroll when sidebar is open */
body.basket-sidebar-open {
    overflow: hidden;
}

/* === BASKET SIDEBAR RESPONSIVE === */

@media (max-width: 480px) {
    .basket-sidebar {
        width: 100%;
    }
    
    .basket-sidebar-header {
        padding: 16px 18px;
    }
    
    .basket-sidebar-title {
        font-size: 17px;
        gap: 10px;
    }
    
    .basket-sidebar-title .custom-icon {
        width: 22px;
        height: 22px;
    }
    
    .basket-sidebar-items {
        padding: 12px;
    }
    
    .basket-sidebar-item {
        padding: 14px;
        gap: 12px;
    }
    
    .basket-item-image {
        width: 60px;
        height: 70px;
    }
    
    .basket-item-title {
        font-size: 13px;
    }
    
    .basket-item-price {
        font-size: 14px;
    }
    
    .quantity-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .quantity-value {
        min-width: 28px;
        font-size: 13px;
    }
    
    .basket-sidebar-footer {
        padding: 16px 18px;
    }
    
    .basket-action-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .summary-row.summary-total .summary-value {
        font-size: 24px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .basket-sidebar {
        width: 380px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .basket-sidebar {
        width: 400px;
    }
}





@media (min-width: 992px) and (max-width: 1199.398px) {
    .custom-card {
        min-height: 200px;
    }

    .card-title-custom {
        font-size: 1.3rem;
    }
}

@media (max-width: 1199.98px) {
    .product-detail-button-container {
        margin-top: 20px;
    }
}

@media  (max-width: 991.98px) {
    .main-header {
        flex-direction: column;
        padding-left: 0px;
        padding-right: 0px;
    }

    .main-header .navbar-custom {
                width: 500px;
        max-width: 90%;
        border-radius: 20px;
        padding: 30px 20px;
    }

    .main-header .navbar-custom .navbar-collapse {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }
    .main-header .navbar-custom .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px;
        margin-bottom: 0px !important;
    }
    .main-header .navbar-custom .navbar-nav .nav-item {
        margin-left: 0px !important;
    }
    .main-header .navbar-custom .navbar-nav .nav-item .nav-link {
        margin-left: 0px !important;
        padding: 0px !important;
    }
    .main-header .main-logo img {
        width: 100px;
        height: auto;
        object-fit: contain;
        margin-right: 0px;
    }

    .home-icon {
        display: none;
    }

    .main-header .navbar-custom .navbar-collapse {
        flex-direction: column-reverse;
    }

    .main-header .navbar-custom .navbar-nav {
        justify-content: center;
        gap: 20px;
    }

    .basket-sidebar-btn {
        position: absolute;
        bottom: 30px;
        right: 20px;
                width: 40px !important;
        height: 30px !important;
    }

    .search-container input {
        width: calc(100% - 50px);
    }

    .search-container .search-btn {
        right: 50px;
    }

    .mobile-reverse {
        flex-direction: column-reverse;
    }

    html,
    body {
        overflow-x: hidden;
    }

        .basket-add-btn,
    .fav-add-btn,
    .detail-link-btn {

        font-size: 12px;

    }
}

@media  (max-width: 575.98px) {
    .main-header .navbar-custom .navbar-nav .nav-item .nav-link {
        font-size: 12px;
        gap: 5px;
    }

    .navbar-expand-lg .nav-link .custom-icon {
        width: 16px;
        height: 16px;
    }
    .navbar-expand-lg .nav-link .custom-icon.icon-hamburger {
        width: 20px;
        height: 20px;
    }

    .product-controls {
        margin-bottom: 30px;
    }

    .product-card {
        padding: 10px 15px;
    }

    .product-card .product-info {
        flex-wrap: wrap;
        gap: 5px;
    }



    /* .product-detail-content-quantity-label {
        display: none;
    } */


    .product-detail-container .basket-add-btn, .product-detail-container .fav-add-btn {
        width: 100%;
    }

    .product-detail-bottom-container {
        flex-direction: column;
        gap: 10px;
    }



}


/* ============================= */
/* === FILTER SIDEBAR === */
/* ============================= */

.filter-sidebar-area {
    max-width: 300px;
    margin: auto;
}

.filter-sidebar {
    background-color: var(--fasty-red-opacity);
    border-radius: 0 0 34px 34px;
    padding: 1.5rem;
    color: white;
    border-top: 20px solid var(--fasty-yellow);
}

/* Section */
.filter-sidebar__section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.filter-sidebar__section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
    padding-bottom: 0;
}

/* Title */
.filter-sidebar__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--fasty-yellow);
    margin-bottom: 12px;
    font-family: var(--font-family-1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search Input */
.filter-sidebar__search {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-sidebar__search-input {
    width: 100%;
    padding: 10px 45px 10px 14px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: var(--fasty-white);
    transition: box-shadow 0.3s ease;
}

.filter-sidebar__search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 212, 26, 0.4);
}

.filter-sidebar__search-input::placeholder {
    color: #999;
}

.filter-sidebar__search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: var(--fasty-yellow);
    color: var(--fasty-red);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.filter-sidebar__search-btn:hover {
    background-color: var(--opet-dark);
    color: var(--fasty-yellow);
    transform: translateY(-50%) scale(1.05);
}

/* Checkbox Group */
.filter-sidebar__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Custom Checkbox */
.filter-sidebar__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
    margin: 0;
}

.filter-sidebar__checkbox:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.filter-sidebar__checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.filter-sidebar__checkbox-mark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--fasty-white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-color: transparent;
}

.filter-sidebar__checkbox-mark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--fasty-red);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
    position: relative;
    top: -1px;
}

.filter-sidebar__checkbox input[type="checkbox"]:checked + .filter-sidebar__checkbox-mark {
    background-color: var(--fasty-yellow);
    border-color: var(--fasty-yellow);
}

.filter-sidebar__checkbox input[type="checkbox"]:checked + .filter-sidebar__checkbox-mark::after {
    transform: rotate(45deg) scale(1);
}

.filter-sidebar__checkbox-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--fasty-white);
    font-family: var(--font-family-2);
    transition: color 0.2s ease;
}

.filter-sidebar__checkbox:hover .filter-sidebar__checkbox-text {
    color: var(--fasty-yellow);
}

.filter-sidebar__checkbox input[type="checkbox"]:checked ~ .filter-sidebar__checkbox-text {
    color: var(--fasty-yellow);
    font-weight: 600;
}

/* Price Filter */
.filter-sidebar__price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.filter-sidebar__price-input {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.filter-sidebar__price-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-family-2);
}

.filter-sidebar__price-field {
    width: 100%;
    padding: 10px 28px 10px 12px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: var(--fasty-white);
    transition: box-shadow 0.3s ease;
    text-align: left;
}

.filter-sidebar__price-field:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 212, 26, 0.4);
}

.filter-sidebar__price-field::placeholder {
    color: #bbb;
    font-weight: 400;
}

.filter-sidebar__price-currency {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--fasty-red);
    font-family: var(--font-family-2);
}

.filter-sidebar__price-separator {
    font-size: 16px;
    font-weight: 700;
    color: var(--fasty-yellow);
    padding-bottom: 6px;
}

/* Action Buttons */
.filter-sidebar__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.5rem;
}

.filter-sidebar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-sidebar__btn i {
    font-size: 12px;
}

.filter-sidebar__btn--apply {
    background-color: var(--fasty-yellow);
    color: var(--opet-dark);
}

.filter-sidebar__btn--apply:hover {
    background-color: #e5bf17;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 212, 26, 0.4);
}

.filter-sidebar__btn--clear {
    background-color: transparent;
    color: var(--fasty-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.filter-sidebar__btn--clear:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--fasty-white);
    transform: translateY(-2px);
}

/* Filter Sidebar Responsive */
@media (max-width: 991.98px) {
    .filter-sidebar-area {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .filter-sidebar {
        border-radius: 20px;
        border-top: 10px solid var(--fasty-yellow);
    }
    
    .filter-sidebar__price {
        flex-direction: row;
    }
    
    .filter-sidebar__checkbox-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .filter-sidebar__actions {
        flex-direction: row;
    }
    
    .filter-sidebar__btn {
        flex: 1;
    }

    
    .filter-sidebar-area .filter-sidebar-logo img {
        max-width: 300px;
        margin: 0 auto 45px auto;
    }
}

@media (max-width: 575.98px) {
    .filter-sidebar {
        padding: 1.2rem;
    }
    
    .filter-sidebar__checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar__actions {
        flex-direction: column;
    }
    
    .filter-sidebar__btn {
        width: 100%;
    }
}


/* ============================= */
/* === COMMON FORM STYLES === */
/* ============================= */

/* Form Container - Light background like product-detail-container */
.form-container {
    background-color: var(--fasty-white);
    border-radius: 20px;
    padding: 40px 50px;
    margin-top: 20px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Top Section */
.form-top {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(151, 0, 49, 0.1);
}

.form-top-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-1);
    margin-bottom: 12px;
}

.form-top-description {
    font-size: 14px;
    color: #666;
    font-family: var(--font-family-2);
    line-height: 1.6;
    margin: 0;
}

.form-top-description a {
    color: var(--fasty-red);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-top-description a:hover {
    color: #7a0026;
    text-decoration: underline;
}

/* Common Form Base */
.common-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Form Group */
.common-form .form-group {
    margin-bottom: 22px;
}



/* Form Label */
.common-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* Form Control - Inputs, Selects, Textareas */
.common-form .form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.common-form .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.common-form .form-control:hover {
    border-color: #ccc;
    background-color: #fff;
}

.common-form .form-control:focus {
    border-color: var(--fasty-yellow);
    background-color: var(--fasty-white);
    box-shadow: 0 0 0 4px rgba(254, 212, 26, 0.2);
}

.common-form .form-control:focus::placeholder {
    opacity: 0.5;
}

/* Form Control - Select specific */
.common-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23970031' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

/* Form Control - Textarea specific */
.common-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Form Control - Date Input specific */
.common-form input[type="date"].form-control {
    cursor: pointer;
    position: relative;
}

.common-form input[type="date"].form-control::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.common-form input[type="date"].form-control:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* Form Control - Tel Input specific */
.common-form input[type="tel"].form-control {
    letter-spacing: 0.5px;
}

/* Checkbox text with link */
.common-form .form-checkbox-text .form-link {
    font-weight: 600;
}

/* Password Input Wrapper */
.common-form .input-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.common-form .input-password-wrapper .form-control {
    padding-right: 50px;
}

/* Password Toggle Button */
.common-form .password-toggle-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.common-form .password-toggle-btn:hover {
    color: var(--fasty-red);
    background-color: rgba(151, 0, 49, 0.08);
}

.common-form .password-toggle-btn:focus {
    outline: none;
    color: var(--fasty-red);
}

.common-form .password-toggle-btn.active {
    color: var(--fasty-red);
}

/* Form Group Inline - for checkbox + link row */
.common-form .form-group-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Custom Checkbox */
.common-form .form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.common-form .form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.common-form .form-checkbox-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
}

.common-form .form-checkbox-mark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--fasty-white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
    position: relative;
    top: -1px;
}

.common-form .form-checkbox:hover .form-checkbox-mark {
    border-color: var(--fasty-yellow);
}

.common-form .form-checkbox input[type="checkbox"]:checked + .form-checkbox-mark {
    background-color: var(--fasty-red);
    border-color: var(--fasty-red);
}

.common-form .form-checkbox input[type="checkbox"]:checked + .form-checkbox-mark::after {
    transform: rotate(45deg) scale(1);
}

.common-form .form-checkbox-text {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    font-family: var(--font-family-2);
    transition: color 0.2s ease;
}

.common-form .form-checkbox:hover .form-checkbox-text {
    color: var(--opet-dark);
}

/* Form Link */
.common-form .form-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--fasty-red);
    font-family: var(--font-family-2);
    text-decoration: none;
    transition: all 0.2s ease;
}

.common-form .form-link:hover {
    color: #7a0026;
    text-decoration: underline;
}

/* Submit Button */
.common-form .form-submit-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family-1);
    color: var(--fasty-white);
    background: linear-gradient(135deg, var(--fasty-red) 0%, #7a0026 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(151, 0, 49, 0.25);
}

.common-form .form-submit-btn:hover {
    background: linear-gradient(135deg, #7a0026 0%, var(--fasty-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 0, 49, 0.35);
}

.common-form .form-submit-btn:active {
    transform: translateY(0);
}

.common-form .form-submit-btn i {
    font-size: 16px;
    position: relative;
    bottom: 2px;
}

/* Secondary Button (for forms with multiple buttons) */
.common-form .form-secondary-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family-1);
    color: var(--opet-dark);
    background-color: var(--fasty-yellow);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.common-form .form-secondary-btn:hover {
    background-color: #e5bf17;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 212, 26, 0.4);
}

/* Form Row - for side-by-side fields */
.common-form .form-row {
    display: flex;
    gap: 20px;
}

.common-form .form-row .form-group {
    flex: 1;
}

/* Form Row - 4 column layout */
.common-form .form-row-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 20px;
}

.common-form .form-row-4 .form-group {
    flex: none;
}

/* Form Buttons Container */
.common-form .form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.common-form .form-buttons .form-submit-btn,
.common-form .form-buttons .form-secondary-btn {
    width: auto;
    padding: 12px 30px;
}

/* Textarea Styling */
.common-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Form Divider */
.common-form .form-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.common-form .form-divider-line {
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.common-form .form-divider-text {
    font-size: 13px;
    color: #999;
    font-family: var(--font-family-2);
    font-weight: 500;
}

/* Form Section Title */
.common-form .form-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 30px 0 20px 0;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.common-form .form-section-title .text-danger {
    color: var(--fasty-red);
}

/* Form Hint/Help Text */
.common-form .form-hint {
    font-size: 12px;
    color: #888;
    font-family: var(--font-family-2);
    margin-top: 6px;
    line-height: 1.4;
}

/* Form Error State */
.common-form .form-control.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.03);
}

.common-form .form-control.error:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

.common-form .form-error-message {
    font-size: 12px;
    color: #dc3545;
    font-family: var(--font-family-2);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Form Success State */
.common-form .form-control.success {
    border-color: #28a745;
}

.common-form .form-control.success:focus {
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
}

/* Form Container Variants */
.form-container.form-container-wide {
    max-width: 900px;
}

.form-container.form-container-full {
    max-width: 100%;
}

/* === FORM RESPONSIVE === */
@media (max-width: 1199.98px) {
    .common-form .form-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .form-container {
        padding: 30px 25px;
        margin: 15px;
        max-width: calc(100% - 30px);
    }
    
    .form-top-title {
        font-size: 22px;
    }
    
    .form-top-description {
        font-size: 13px;
    }
    
    .common-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .common-form .form-row-4 {
        grid-template-columns: 1fr;
    }
    
    .common-form .form-group-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .common-form .form-buttons {
        flex-direction: column;
    }
    
    .common-form .form-buttons .form-submit-btn,
    .common-form .form-buttons .form-secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .form-top {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .form-top-title {
        font-size: 20px;
    }
    
    .common-form .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .common-form .form-submit-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}


/* ============================= */
/* === SELECT2 CUSTOM STYLES === */
/* ============================= */

/* Select2 Container - Match form-control style */
.common-form .select2-container {
    width: 100% !important;
}

.common-form .select2-container--default .select2-selection--single {
    width: 100%;
    padding: 14px 45px 14px 18px;
    height: auto;
    min-height: 53px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    transition: all 0.3s ease;
    outline: none;
    display: flex;
    align-items: center;
}

.common-form .select2-container--default .select2-selection--single:hover {
    border-color: #ccc;
    background-color: #fff;
}

.common-form .select2-container--default.select2-container--open .select2-selection--single,
.common-form .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--fasty-yellow);
    background-color: var(--fasty-white);
    box-shadow: 0 0 0 4px rgba(254, 212, 26, 0.2);
}

/* Selected text */
.common-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--opet-dark);
    padding-left: 0;
    padding-right: 30px;
    line-height: 1.4;
    font-weight: 500;
}

/* Placeholder */
.common-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
    font-weight: 400;
}

/* Arrow (dropdown indicator) */
.common-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.common-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--fasty-red) transparent transparent transparent;
    border-width: 6px 5px 0 5px;
    margin-left: -5px;
    margin-top: -3px;
}

.common-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--fasty-red) transparent;
    border-width: 0 5px 6px 5px;
}

/* Dropdown Container */
.select2-container--default .select2-dropdown {
    background-color: var(--fasty-white);
    border: 2px solid var(--fasty-yellow);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin-top: 4px;
    overflow: hidden;
}

.select2-container--default .select2-dropdown--below {
    border-top: 2px solid var(--fasty-yellow);
}

.select2-container--default .select2-dropdown--above {
    border-bottom: 2px solid var(--fasty-yellow);
    border-radius: 14px;
}

/* Search Box */
.select2-container--default .select2-search--dropdown {
    padding: 12px 14px;
    background-color: #fafafa;
    border-bottom: 1px solid #eee;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: var(--fasty-white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--fasty-yellow);
    box-shadow: 0 0 0 3px rgba(254, 212, 26, 0.15);
}

.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
    color: #aaa;
}

/* Results/Options List */
.select2-container--default .select2-results__options {
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--fasty-yellow) #f0f0f0;
}

.select2-container--default .select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.select2-container--default .select2-results__options::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
    background: var(--fasty-yellow);
    border-radius: 10px;
}

.select2-container--default .select2-results__options::-webkit-scrollbar-thumb:hover {
    background: var(--fasty-red);
}

/* Option Item */
.select2-container--default .select2-results__option {
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    transition: all 0.15s ease;
    border-bottom: 1px solid #f5f5f5;
}

.select2-container--default .select2-results__option:last-child {
    border-bottom: none;
}

/* Option - Hover */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(254, 212, 26, 0.2);
    color: var(--opet-dark);
}

/* Option - Selected */
.select2-container--default .select2-results__option--selected {
    background-color: rgba(254, 212, 26, 0.35);
    font-weight: 600;
    color: var(--fasty-red);
}

/* Option - Disabled */
.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #aaa;
    background-color: #f9f9f9;
}

/* No Results Message */
.select2-container--default .select2-results__message {
    padding: 15px 16px;
    font-size: 13px;
    color: #888;
    font-family: var(--font-family-2);
    text-align: center;
}

/* Clear selection button (if used) */
.select2-container--default .select2-selection--single .select2-selection__clear {
    color: var(--fasty-red);
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #7a0026;
}

/* Multiple Select (if needed) */
.common-form .select2-container--default .select2-selection--multiple {
    min-height: 52px;
    padding: 8px 40px 8px 14px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-2);
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
}

/* Multiple Select Arrow */
.common-form .select2-container--default .select2-selection--multiple::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.common-form .select2-container--default.select2-container--open .select2-selection--multiple::after {
    transform: translateY(-50%) rotate(180deg);
}

.common-form .select2-container--default .select2-selection--multiple:hover {
    border-color: #ccc;
    background-color: #fff;
}

.common-form .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--fasty-yellow);
    background-color: var(--fasty-white);
    box-shadow: 0 0 0 4px rgba(254, 212, 26, 0.2);
}

.common-form .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--fasty-yellow);
    color: var(--opet-dark);
    border: none;
    border-radius: 8px;
    padding: 4px 10px;
    margin: 3px 5px 3px 0;
    font-size: 13px;
    font-weight: 600;
}

.common-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--fasty-red);
    margin-right: 5px;
    font-weight: 700;
    border-right: none;
}

.common-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #7a0026;
    background-color: transparent;
}

.common-form .select2-container--default .select2-selection--multiple .select2-search__field {
    font-family: var(--font-family-2);
    font-size: 14px;
    color: var(--opet-dark);
}

.common-form .select2-container--default .select2-selection--multiple .select2-search__field::placeholder {
    color: #999;
}

/* Highlight matched text in search */
.select2-container--default .select2-results__option .select2-result-match,
.select2-container--default .select2-results__option mark {
    background-color: var(--fasty-yellow);
    color: var(--opet-dark);
    padding: 0 2px;
    border-radius: 3px;
}

/* Loading indicator */
.select2-container--default .select2-results__option--load-more,
.select2-container--default .select2-results__option--loading {
    text-align: center;
    color: #888;
    font-style: italic;
}

/* === SELECT2 RESPONSIVE === */
@media (max-width: 768px) {
    .common-form .select2-container--default .select2-selection--single {
        padding: 12px 40px 12px 15px;
        min-height: 48px;
    }
    
    .select2-container--default .select2-results__option {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .select2-container--default .select2-search--dropdown .select2-search__field {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .common-form .select2-container--default .select2-selection--single {
        padding: 10px 38px 10px 12px;
        min-height: 44px;
        font-size: 13px;
    }
    
    .common-form .select2-container--default .select2-selection--single .select2-selection__arrow {
        right: 12px;
    }
}

/* === SELECT2 IN MODALS === */
.modal .select2-container {
    z-index: 1060;
}

.modal .select2-container--open {
    z-index: 1061;
}

.select2-container--open .select2-dropdown {
    z-index: 1065 !important;
}

/* Modal içinde Select2 dropdown pozisyonu düzeltme */
.modal-content .select2-container--open .select2-dropdown--below,
.modal-content .select2-container--open .select2-dropdown--above {
    z-index: 1065 !important;
}


/* ============================= */
/* === GENERIC TABLE === */
/* ============================= */

/* Tablo Wrapper */
.generic-table-wrapper {
    background-color: var(--fasty-white);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

/* Tablo */
.generic-table-wrapper .generic-table {
    width: 100%;
    border-collapse: collapse;
}

/* Tablo Header */
.generic-table-wrapper .generic-table__thead {
    background-color: #fafafa;
    border-bottom: 2px solid #eee;
}

.generic-table-wrapper .generic-table__th {
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    font-family: var(--font-family-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.generic-table-wrapper .generic-table__th--product {
    width: 45%;
    padding-left: 30px;
}

.generic-table-wrapper .generic-table__th--price,
.generic-table-wrapper .generic-table__th--quantity,
.generic-table-wrapper .generic-table__th--total {
    text-align: center;
    width: 18%;
}

/* Tablo Body */
.generic-table-wrapper .generic-table__tbody .generic-table__row {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.generic-table-wrapper .generic-table__tbody .generic-table__row:last-child {
    border-bottom: none;
}

.generic-table-wrapper .generic-table__tbody .generic-table__row:hover {
    background-color: rgba(254, 212, 26, 0.05);
}

.generic-table-wrapper .generic-table__td {
    padding: 20px;
    vertical-align: middle;
}

.generic-table-wrapper .generic-table__td--product {
    padding-left: 30px;
}

.generic-table-wrapper .generic-table__td--price,
.generic-table-wrapper .generic-table__td--quantity,
.generic-table-wrapper .generic-table__td--total {
    text-align: center;
}

/* Ürün Hücresi */
.generic-table-wrapper .generic-table__product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.generic-table-wrapper .generic-table__product-image {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    background-color: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.generic-table-wrapper .generic-table__product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Ürün Kaldır Butonu */
.generic-table-wrapper .generic-table__remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #ddd;
    border: 2px solid var(--fasty-white);
    color: #666;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.generic-table-wrapper .generic-table__remove-btn:hover {
    background-color: var(--fasty-red);
    color: var(--fasty-white);
    transform: scale(1.1);
}

/* Ürün Adı */
.generic-table-wrapper .generic-table__product-name {
    font-size: 15px;
    font-weight: 600;
    color: #0088CE;
    font-family: var(--font-family-2);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.generic-table-wrapper .generic-table__product-name:hover {
    color: var(--fasty-red);
    text-decoration: underline;
}

/* Fiyat */
.generic-table-wrapper .generic-table__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

/* Miktar Kontrolleri */
.generic-table-wrapper .generic-table__quantity {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.generic-table-wrapper .generic-table__quantity-btn {
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    border: none;
    color: #666;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.generic-table-wrapper .generic-table__quantity-btn:hover {
    background-color: var(--fasty-yellow);
    color: var(--opet-dark);
}

.generic-table-wrapper .generic-table__quantity-btn:active {
    background-color: var(--fasty-red);
    color: var(--fasty-white);
}

.generic-table-wrapper .generic-table__quantity-input {
    width: 45px;
    height: 36px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    background-color: var(--fasty-white);
    -moz-appearance: textfield;
}

.generic-table-wrapper .generic-table__quantity-input::-webkit-outer-spin-button,
.generic-table-wrapper .generic-table__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Toplam Fiyat */
.generic-table-wrapper .generic-table__total-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

/* Tablo Footer (Kupon vb.) */
.generic-table-wrapper .generic-table__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px 30px;
    border-top: 1px solid #eee;
    background-color: #fafafa;
}

.generic-table-wrapper .generic-table__footer-input {
    flex: 0 1 220px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: var(--fasty-white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.generic-table-wrapper .generic-table__footer-input::placeholder {
    color: #999;
}

.generic-table-wrapper .generic-table__footer-input:focus {
    outline: none;
    border-color: var(--fasty-yellow);
    box-shadow: 0 0 0 3px rgba(254, 212, 26, 0.2);
}

.generic-table-wrapper .generic-table__footer-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: #e8e8e8;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.generic-table-wrapper .generic-table__footer-btn:hover {
    background-color: var(--fasty-yellow);
    color: var(--opet-dark);
}

/* Sipariş Tablosu Stilleri */
.generic-table-wrapper .generic-table__td {
    color: var(--opet-dark);
    font-size: 14px;
    font-family: var(--font-family-2);
}

.generic-table-wrapper .generic-table__order-no {
    font-size: 14px;
    font-weight: 600;
    color: #0088CE;
    font-family: var(--font-family-2);
    letter-spacing: 0.5px;
}

.generic-table-wrapper .generic-table__status {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    font-family: var(--font-family-2);
}

.generic-table-wrapper .generic-table__status--pending {
    background-color: #fff3cd;
    color: #856404;
    width: fit-content;
}

.generic-table-wrapper .generic-table__status--completed {
    background-color: #d4edda;
    color: #155724;
    width: fit-content;
}

.generic-table-wrapper .generic-table__status--cancelled {
    background-color: #f8d7da;
    color: #721c24;
    width: fit-content;
}

.generic-table-wrapper .generic-table__status--shipping {
    background-color: #cce5ff;
    color: #004085;
    width: fit-content;
}

.generic-table-wrapper .generic-table__status--processing {
    background-color: #e2e3ff;
    color: #3730a3;
    width: fit-content;
}

.generic-table-wrapper .generic-table__status--approved {
    background-color: #d1fae5;
    color: #065f46;
    width: fit-content;
}

/* Generic Table Delivery Info */
.generic-table-wrapper .generic-table__delivery-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.generic-table-wrapper .generic-table__delivery-date,
.generic-table-wrapper .generic-table__delivered-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

.generic-table-wrapper .generic-table__delivery-date {
    color: #555;
}

.generic-table-wrapper .generic-table__delivery-date i {
    color: #6c757d;
    font-size: 12px;
    min-width: 14px;
}

.generic-table-wrapper .generic-table__delivered-date--done {
    color: #065f46;
    font-weight: 600;
}

.generic-table-wrapper .generic-table__delivered-date--done i {
    color: #10b981;
    font-size: 12px;
    min-width: 14px;
}

.generic-table-wrapper .generic-table__delivered-date--pending {
    color: #92400e;
}

.generic-table-wrapper .generic-table__delivered-date--pending i {
    color: #f59e0b;
    font-size: 12px;
    min-width: 14px;
}

.generic-table-wrapper .generic-table__delivery-date--cancelled {
    color: #721c24;
    font-weight: 600;
}

.generic-table-wrapper .generic-table__delivery-date--cancelled i {
    color: #dc3545;
    font-size: 12px;
    min-width: 14px;
}

/* Generic Table Link */
.generic-table-wrapper .generic-table__link {
    color: var(--fasty-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.generic-table-wrapper .generic-table__link:hover {
    color: var(--opet-dark);
    text-decoration: underline;
}

/* Generic Table Badge (İade Tipi) */
.generic-table-wrapper .generic-table__badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
    width: fit-content;
}

.generic-table-wrapper .generic-table__badge--refund {
    background-color: #fef3c7;
    color: #92400e;
}

.generic-table-wrapper .generic-table__badge--exchange {
    background-color: #dbeafe;
    color: #1e40af;
}

.generic-table-wrapper .generic-table__action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 2px solid var(--fasty-red);
    border-radius: 8px;
    color: var(--fasty-red);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.generic-table-wrapper .generic-table__action-btn:hover {
    background-color: var(--fasty-red);
    color: var(--fasty-white);
    transform: scale(1.05);
}

.generic-table-wrapper .generic-table__action-btn--success {
    border-color: #28a745;
    color: #fff;
    background-color: #28a745;
}

.generic-table-wrapper .generic-table__action-btn--success:hover {
    background-color: #218838;
    border-color: #218838;
    color: #fff;
}

.generic-table-wrapper .generic-table__action-btn--danger {
    border-color: #dc3545;
    color: #dc3545;
    background-color: transparent;
}

.generic-table-wrapper .generic-table__action-btn--danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.generic-table-wrapper .generic-table__action-btn--warning {
    border-color: #f59e0b;
    color: #fff;
    background-color: #f59e0b;
}

.generic-table-wrapper .generic-table__action-btn--warning:hover {
    background-color: #d97706;
    border-color: #d97706;
    color: #fff;
}

.generic-table-wrapper .generic-table__action-btn--info {
    border-color: var(--fasty-yellow);
    color: var(--opet-dark);
    background-color: var(--fasty-yellow);
}

.generic-table-wrapper .generic-table__action-btn--info:hover {
    background-color: #e5be00;
    border-color: #e5be00;
    color: var(--opet-dark);
}

/* Duyuru Modal Styles */
.duyuru-content {
    padding: 10px 0;
}

.duyuru-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.duyuru-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.duyuru-meta i {
    color: var(--fasty-red);
}

.duyuru-article {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.duyuru-article p {
    margin-bottom: 15px;
}

.duyuru-article ul {
    margin: 15px 0;
    padding-left: 25px;
}

.duyuru-article ul li {
    margin-bottom: 8px;
}

.duyuru-documents {
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.1) 0%, rgba(254, 212, 26, 0.05) 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(254, 212, 26, 0.3);
}

.duyuru-documents h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--opet-dark);
    margin-bottom: 15px;
    font-family: var(--font-family-2);
}

.duyuru-documents h6 i {
    color: var(--fasty-red);
}

.duyuru-documents-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.duyuru-document-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    color: #0088CE;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.duyuru-document-item:hover {
    background: #0088CE;
    color: #fff;
    border-color: #0088CE;
}

.duyuru-document-item i {
    font-size: 18px;
}

/* Destek Header & New Ticket Button */
.destek-header {
    display: flex;
    justify-content: flex-end;
}

.btn-new-ticket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-2);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-new-ticket:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-new-ticket i {
    font-size: 12px;
}

/* Destek Detay Styles */
.destek-detay-form {
    padding: 10px 0;
}

.destek-detay-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    margin-bottom: 20px;
}

.destek-detay-field {
    margin-bottom: 20px;
}

.destek-detay-field--wide {
    margin-bottom: 0;
}

.destek-detay-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0088CE;
    margin-bottom: 8px;
    font-family: var(--font-family-2);
}

.destek-detay-input {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #555;
    min-width: 200px;
}

.destek-detay-textarea {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    min-height: 120px;
}

.destek-detay-textarea--response {
    background-color: rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
    color: #333;
}

.destek-detay-file {
    margin-bottom: 25px;
}

.btn-download-file {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download-file:hover {
    background-color: #218838;
    color: #fff;
    transform: translateY(-2px);
}

.destek-detay-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .destek-detay-row {
        grid-template-columns: 1fr;
    }
    
    .destek-detay-field--wide {
        margin-bottom: 20px;
    }
}

/* Belgeler Page Styles */
.belgeler-dropzone-wrapper {
    margin-bottom: 30px;
}

.belgeler-dropzone {
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.08) 0%, rgba(254, 212, 26, 0.02) 100%);
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.belgeler-dropzone:hover,
.belgeler-dropzone.dz-drag-hover {
    border-color: var(--fasty-red);
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.15) 0%, rgba(254, 212, 26, 0.05) 100%);
}

.belgeler-dropzone .dz-message {
    margin: 0;
}

.belgeler-dropzone-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-bottom: 10px;
    font-family: var(--font-family-2);
}

.belgeler-dropzone-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.belgeler-dropzone-hint {
    font-size: 13px;
    color: var(--fasty-red);
    margin: 0;
}

.belgeler-table-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.belgeler-table-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-bottom: 20px;
    font-family: var(--font-family-2);
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Dropzone Preview Overrides */
.belgeler-dropzone .dz-preview {
    margin: 10px;
}

.belgeler-dropzone .dz-preview .dz-image {
    border-radius: 8px;
}

.belgeler-dropzone .dz-preview .dz-details {
    padding: 10px;
}

.belgeler-dropzone .dz-preview .dz-filename span {
    background: transparent;
}

.belgeler-dropzone .dz-preview .dz-size span {
    background: transparent;
}

@media (max-width: 576px) {
    .belgeler-dropzone {
        padding: 30px 15px;
    }
    
    .belgeler-dropzone-title {
        font-size: 18px;
    }
    
    .belgeler-table-section {
        padding: 15px;
    }
}

.generic-table-wrapper .generic-table.not-basket .generic-table__thead {
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.15) 0%, rgba(254, 212, 26, 0.05) 100%);
}

/* === GENERIC TABLE RESPONSIVE === */

@media (max-width: 991.98px) {
    .generic-table-wrapper .generic-table__th--product {
        padding-left: 20px;
    }
    
    .generic-table-wrapper .generic-table__td--product {
        padding-left: 20px;
    }
    
    .generic-table-wrapper .generic-table__product-image {
        width: 70px;
        height: 70px;
    }
    
    .generic-table-wrapper .generic-table__product-name {
        font-size: 14px;
    }
}

/* Mobil - Kart Görünümü */
@media (max-width: 767.98px) {
    .generic-table-wrapper {
        overflow: visible;
        background-color: transparent;
        box-shadow: none;
        border: none;
    }
    
    .generic-table-wrapper .generic-table {
        display: block;
        min-width: 0;
    }
    
    /* Header'ı gizle */
    .generic-table-wrapper .generic-table__thead {
        display: none;
    }
    
    .generic-table-wrapper .generic-table__tbody {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    /* Her satır bir kart */
    .generic-table-wrapper .generic-table__row {
        display: flex;
        flex-direction: column;
        background-color: var(--fasty-white);
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid #e8e8e8;
        padding: 16px;
        position: relative;
    }
    
    .generic-table-wrapper .generic-table__row:hover {
        background-color: var(--fasty-white) !important;
    }
    
    .generic-table-wrapper .generic-table__td {
        display: block;
        padding: 0;
        text-align: left !important;
        border: none;
    }
    
    /* Ürün hücresi - üstte */
    .generic-table-wrapper .generic-table__td--product {
        padding-left: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .generic-table-wrapper .generic-table__product {
        gap: 15px;
    }
    
    .generic-table-wrapper .generic-table__product-image {
        width: 80px;
        height: 80px;
    }
    
    .generic-table-wrapper .generic-table__product-name {
        font-size: 15px;
    }
    
    /* Fiyat, Miktar, Toplam - yan yana */
    .generic-table-wrapper .generic-table__td--price,
    .generic-table-wrapper .generic-table__td--quantity,
    .generic-table-wrapper .generic-table__td--total {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        width: auto;
    }
    
    .generic-table-wrapper .generic-table__td--price {
        position: absolute;
        bottom: 20px;
        left: 16px;
    }
    
    .generic-table-wrapper .generic-table__td--quantity {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .generic-table-wrapper .generic-table__td--total {
        position: absolute;
        bottom: 20px;
        right: 16px;
    }
    
    /* Data label mobilde göster */
    .generic-table-wrapper .generic-table__td--price::before {
        content: 'Fiyat: ';
        font-size: 12px;
        font-weight: 500;
        color: #888;
        margin-right: 5px;
    }
    
    .generic-table-wrapper .generic-table__td--total::before {
        content: 'Toplam: ';
        font-size: 12px;
        font-weight: 500;
        color: #888;
        margin-right: 5px;
    }
    
    .generic-table-wrapper .generic-table__price {
        font-size: 14px;
    }
    
    .generic-table-wrapper .generic-table__total-price {
        font-size: 16px;
        font-weight: 700;
        color: var(--fasty-red);
    }
    
    .generic-table-wrapper .generic-table__quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .generic-table-wrapper .generic-table__quantity-input {
        width: 40px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Kart padding alt kısım için */
    .generic-table-wrapper .generic-table__row {
        padding-bottom: 60px;
    }
    
    /* Footer */
    .generic-table-wrapper .generic-table__footer {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        background-color: var(--fasty-white);
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid #e8e8e8;
        margin-top: 15px;
    }
    
    .generic-table-wrapper .generic-table__footer-input {
        flex: 1;
        width: 100%;
    }
    
    .generic-table-wrapper .generic-table__footer-btn {
        width: 100%;
    }
}

/* Daha küçük ekranlar */
@media (max-width: 480px) {
    .generic-table-wrapper .generic-table__product-image {
        width: 70px;
        height: 70px;
    }
    
    .generic-table-wrapper .generic-table__product-name {
        font-size: 14px;
    }
    
    .generic-table-wrapper .generic-table__td--price::before,
    .generic-table-wrapper .generic-table__td--total::before {
        display: none;
    }
    
    .generic-table-wrapper .generic-table__td--price {
        left: 16px;
    }
    
    .generic-table-wrapper .generic-table__td--total {
        right: 16px;
    }
    
    .generic-table-wrapper .generic-table__quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .generic-table-wrapper .generic-table__quantity-input {
        width: 35px;
        height: 28px;
        font-size: 13px;
    }
}

/* === NOT-BASKET TABLE (Sipariş Listesi) MOBILE === */
@media (max-width: 767.98px) {
    .generic-table-wrapper .generic-table.not-basket {
        display: block;
    }
    
    .generic-table-wrapper .generic-table.not-basket .generic-table__thead {
        display: none;
    }
    
    .generic-table-wrapper .generic-table.not-basket .generic-table__tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .generic-table-wrapper .generic-table.not-basket .generic-table__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
        background-color: var(--fasty-white);
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid #e8e8e8;
        padding: 16px;
        position: static;
        padding-bottom: 16px;
    }
    
    .generic-table-wrapper .generic-table.not-basket .generic-table__td {
        display: flex;
        flex-direction: column;
        padding: 0;
        position: static;
        text-align: left !important;
    }
    
    .generic-table-wrapper .generic-table.not-basket .generic-table__td::before {
        content: attr(data-label);
        font-size: 11px;
        font-weight: 600;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }
    
    /* Sipariş No - Tam genişlik */
    .generic-table-wrapper .generic-table.not-basket .generic-table__td:nth-child(1) {
        grid-column: 1 / -1;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 12px;
    }
    
    .generic-table-wrapper .generic-table.not-basket .generic-table__order-no {
        font-size: 15px;
    }
    
    /* Tutar ve Tarih yan yana */
    .generic-table-wrapper .generic-table.not-basket .generic-table__td:nth-child(2),
    .generic-table-wrapper .generic-table.not-basket .generic-table__td:nth-child(3) {
        grid-column: span 1;
    }
    
    /* Durum ve İşlem yan yana */
    .generic-table-wrapper .generic-table.not-basket .generic-table__td:nth-child(4),
    .generic-table-wrapper .generic-table.not-basket .generic-table__td:nth-child(5) {
        grid-column: span 1;
    }
    

    
    .generic-table-wrapper .generic-table.not-basket .generic-table__action-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .generic-table-wrapper .generic-table.not-basket .generic-table__row {
        gap: 10px 12px;
        padding: 14px;
    }
    
    .generic-table-wrapper .generic-table.not-basket .generic-table__order-no {
        font-size: 13px;
    }
    
    .generic-table-wrapper .generic-table.not-basket .generic-table__price {
        font-size: 13px;
    }
    
    .generic-table-wrapper .generic-table.not-basket .generic-table__status {
        font-size: 11px;
        padding: 5px 10px;
    }
}


/* ============================= */
/* === ORDER DETAIL PAGE === */
/* ============================= */

/* Order Detail Header */
.order-detail-header {
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.15) 0%, rgba(254, 212, 26, 0.05) 100%);
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(254, 212, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.order-detail-header__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-detail-header__title i {
    color: var(--fasty-red);
    font-size: 20px;
}

.order-detail-header__no {
    color: #0088CE;
    font-weight: 700;
}

.order-detail-status {
    display: inline-block;
    background-color: #0088CE;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-family-2);
}

/* Order Info Grid */
.order-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Order Info Card */
.order-info-card {
    background-color: var(--fasty-white);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.order-info-card__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-info-card__item:last-child {
    border-bottom: none;
}

.order-info-card__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

.order-info-card__value {
    font-size: 14px;
    font-weight: 500;
    color: #0088CE;
    font-family: var(--font-family-2);
    text-align: right;
}

/* Order Address Card */
.order-address-card {
    background-color: var(--fasty-white);
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.order-address-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.order-address-card__header {
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.18) 0%, rgba(254, 212, 26, 0.06) 100%);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    border-bottom: 1px solid #ebebeb;
}

.order-address-card__header i {
    color: var(--fasty-red);
    font-size: 16px;
}

.order-address-card__body {
    padding: 18px 20px;
}

.order-address-card__body p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    line-height: 1.5;
}

.order-address-card__body p:last-child {
    margin-bottom: 0;
}

.order-address-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--opet-dark);
    background-color: rgba(254, 212, 26, 0.25);
    border-radius: 20px;
    font-family: var(--font-family-2);
    margin-bottom: 12px;
}

.order-address-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark) !important;
}

.order-address-card__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888 !important;
    font-size: 13px !important;
}

.order-address-card__location i {
    color: var(--fasty-red);
    font-size: 12px;
    flex-shrink: 0;
}

.order-address-card__detail {
    color: #555 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.order-address-card__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--opet-dark) !important;
    font-weight: 600;
    font-size: 14px !important;
}

.order-address-card__phone i {
    color: var(--fasty-red);
    font-size: 13px;
}

.order-address-card__company {
    padding: 12px 0 0 0;
    margin-top: 12px;
    border-top: 1px dashed #e0e0e0;
}

.order-address-card__company p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    font-family: var(--font-family-2);
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.order-address-card__company p:last-child {
    margin-bottom: 0;
}

.order-address-card__company i {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* Order Products Section */
.order-products-section {
    margin-bottom: 20px;
}

.order-products-table .generic-table__product-link {
    font-size: 14px;
    font-weight: 600;
    color: #0088CE;
    font-family: var(--font-family-2);
}

.order-products-table .generic-table__code {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    font-family: monospace;
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
}

.order-products-table .generic-table__total {
    font-size: 14px;
    font-weight: 700;
    color: var(--fasty-red);
    font-family: var(--font-family-2);
}

/* Order Bottom Section - Actions & Summary Side by Side */
.order-bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Order Summary */
.order-summary {
    background-color: var(--fasty-white);
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.order-summary__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.2) 0%, rgba(254, 212, 26, 0.08) 100%);
    border-bottom: 1px solid rgba(254, 212, 26, 0.3);
}

.order-summary__title i {
    color: var(--fasty-red);
    font-size: 16px;
}

.order-summary__content {
    padding: 15px 20px;
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-summary__row:last-child {
    border-bottom: none;
}

.order-summary__row--total {
    border-top: 2px solid var(--fasty-yellow);
    border-bottom: none;
    margin-top: 8px;
    padding-top: 12px;
}

.order-summary__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

.order-summary__row--total .order-summary__label {
    font-size: 15px;
    font-weight: 700;
}

.order-summary__value {
    font-size: 13px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

.order-summary__value--free {
    color: #28a745;
}

.order-summary__row--total .order-summary__value {
    font-size: 17px;
    font-weight: 700;
    color: var(--fasty-red);
}

/* Order Detail Actions */
.order-detail-actions {
    background-color: var(--fasty-white);
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.order-detail-actions__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.2) 0%, rgba(254, 212, 26, 0.08) 100%);
    border-bottom: 1px solid rgba(254, 212, 26, 0.3);
}

.order-detail-actions__title i {
    color: var(--fasty-red);
    font-size: 16px;
}

.order-detail-actions__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.order-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-2);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.order-detail-btn i {
    font-size: 14px;
}

.order-detail-btn--outline {
    background-color: #f8f9fa;
    color: var(--opet-dark);
    border: 2px solid #e0e0e0;
}

.order-detail-btn--outline:hover {
    border-color: var(--opet-dark);
    color: var(--opet-dark);
    background-color: #f0f0f0;
}

.order-detail-btn--primary {
    background: linear-gradient(135deg, var(--fasty-red) 0%, #7a0026 100%);
    color: var(--fasty-white);
    border: none;
    box-shadow: 0 4px 12px rgba(151, 0, 49, 0.25);
}

.order-detail-btn--primary:hover {
    background: linear-gradient(135deg, #7a0026 0%, var(--fasty-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(151, 0, 49, 0.35);
}

.order-detail-btn--secondary {
    background: linear-gradient(135deg, var(--opet-blue) 0%, var(--opet-dark) 100%);
    color: var(--fasty-white);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 71, 143, 0.25);
}

.order-detail-btn--secondary:hover {
    background: linear-gradient(135deg, var(--opet-dark) 0%, var(--opet-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 71, 143, 0.35);
}

/* === ORDER DETAIL RESPONSIVE === */
@media (max-width: 767.98px) {
    .order-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-detail-header {
        padding: 15px 18px;
    }
    
    .order-detail-header__title {
        font-size: 15px;
        flex-wrap: wrap;
    }
    
    .order-info-card {
        padding: 15px;
    }
    
    .order-info-card__item {
        flex-direction: column;
        gap: 4px;
    }
    
    .order-info-card__value {
        text-align: left;
    }
    
    .order-address-card__header {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .order-address-card__body {
        padding: 15px;
    }

    .order-address-card__name {
        font-size: 14px;
    }

    .order-address-card__location {
        font-size: 12px !important;
    }

    .order-address-card__detail {
        font-size: 13px !important;
    }

    .order-address-card__phone {
        font-size: 13px !important;
    }

    .order-address-card__company p {
        font-size: 12px;
    }
    
    .order-bottom-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-summary {
        order: 1;
    }
    
    .order-detail-actions {
        order: 2;
    }
    
    .order-detail-actions__buttons {
        padding: 16px;
        gap: 10px;
    }
    
    .order-detail-btn {
        padding: 12px 20px;
    }
    
    /* Order Products Table Mobile */
    .order-products-table.not-basket .generic-table__row {
        grid-template-columns: 1fr 1fr;
    }
    
    .order-products-table.not-basket .generic-table__td:nth-child(1) {
        grid-column: 1 / -1;
    }
    
    .order-products-table.not-basket .generic-table__td:nth-child(7) {
        grid-column: 1 / -1;
        border-top: 1px solid #f0f0f0;
        padding-top: 12px;
        margin-top: 5px;
    }
    
    .order-products-table .generic-table__total {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .order-detail-header__title {
        font-size: 14px;
    }
    
    .order-info-card__label {
        font-size: 12px;
    }
    
    .order-info-card__value {
        font-size: 13px;
    }
    
    .order-summary__label,
    .order-summary__value {
        font-size: 13px;
    }
    
    .order-summary__row--total .order-summary__label {
        font-size: 14px;
    }
    
    .order-summary__row--total .order-summary__value {
        font-size: 16px;
    }
    
    .order-detail-btn {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .order-summary__title,
    .order-detail-actions__title {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .order-summary__content {
        padding: 12px 16px;
    }
    
    .order-detail-actions__buttons {
        padding: 14px;
    }
}


/* ============================= */
/* === ORDER LOG (Teslimat Süreci) === */
/* ============================= */

.order-log {
    background-color: var(--fasty-white);
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 20px;
}

.order-log__header {
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.2) 0%, rgba(254, 212, 26, 0.08) 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.order-log__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0;
}

.order-log__title i {
    color: var(--fasty-red);
    font-size: 17px;
}

.order-log__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family-2);
    padding: 5px 14px;
    border-radius: 20px;
}

.order-log__badge--pending {
    background-color: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #92400e;
}

.order-log__badge--pending i {
    color: #f59e0b;
}

.order-log__badge--active {
    background-color: rgba(0, 136, 206, 0.12);
    border: 1px solid rgba(0, 136, 206, 0.25);
    color: #004085;
}

.order-log__badge--active i {
    color: #0088CE;
}

.order-log__badge--done {
    background-color: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #065f46;
}

.order-log__badge--done i {
    color: #10b981;
}

.order-log__badge--cancelled {
    background-color: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #991b1b;
}

.order-log__badge--cancelled i {
    color: #ef4444;
}

.order-log__target {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background-color: rgba(230, 57, 70, 0.07);
    border-bottom: 1px solid rgba(230, 57, 70, 0.12);
    font-size: 13px;
    color: #6b2d33;
    font-family: var(--font-family-2);
}

.order-log__target i {
    color: var(--fasty-red);
    font-size: 14px;
    flex-shrink: 0;
}

.order-log__target strong {
    color: var(--opet-dark);
    font-weight: 700;
}

.order-log__body {
    padding: 0;
}

/* Log List */
.order-log__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.order-log__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.order-log__item:last-child {
    border-bottom: none;
}

.order-log__item:hover {
    background-color: #fafafa;
}

/* En son adım (latest) vurgusu */
.order-log__item--latest {
    background-color: rgba(0, 136, 206, 0.04);
    border-left: 3px solid #0088CE;
}

.order-log__item--latest:hover {
    background-color: rgba(0, 136, 206, 0.07);
}

/* Dot */
.order-log__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ced4da;
    flex-shrink: 0;
    margin-top: 5px;
}

.order-log__item--latest .order-log__dot {
    background-color: #0088CE;
    box-shadow: 0 0 0 3px rgba(0, 136, 206, 0.2);
}

/* Info */
.order-log__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.order-log__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    line-height: 1.3;
}

.order-log__item--latest .order-log__label {
    color: #0088CE;
}

.order-log__desc {
    font-size: 13px;
    font-weight: 400;
    color: #666;
    font-family: var(--font-family-2);
    line-height: 1.4;
}

/* Date */
.order-log__date {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    font-family: var(--font-family-2);
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.4;
}

.order-log__item--latest .order-log__date {
    color: #0088CE;
}

/* Order Detail Status Variants */
.order-detail-status--shipping {
    background-color: #cce5ff !important;
    color: #004085 !important;
}

.order-detail-status--pending {
    background-color: #fff3cd !important;
    color: #856404 !important;
}

.order-detail-status--cancelled {
    background-color: #f8d7da !important;
    color: #721c24 !important;
}

/* === ORDER LOG RESPONSIVE === */
@media (max-width: 767.98px) {
    .order-log__header {
        padding: 14px 18px;
    }

    .order-log__title {
        font-size: 14px;
    }

    .order-log__target {
        padding: 9px 18px;
        font-size: 12px;
    }

    .order-log__item {
        padding: 14px 18px;
        gap: 12px;
    }

    .order-log__label {
        font-size: 13px;
    }

    .order-log__desc {
        font-size: 12px;
    }

    .order-log__date {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .order-log__header {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .order-log__target {
        padding: 8px 14px;
        font-size: 11.5px;
        gap: 8px;
    }

    .order-log__item {
        padding: 12px 14px;
        gap: 10px;
    }

    .order-log__dot {
        width: 8px;
        height: 8px;
        margin-top: 5px;
    }

    .order-log__label {
        font-size: 12px;
    }

    .order-log__desc {
        font-size: 11px;
    }

    .order-log__date {
        font-size: 10px;
    }
}


/* ============================= */
/* === RETURN DETAIL PAGE === */
/* ============================= */

/* Section Title */
.order-products-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--opet-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fasty-yellow);
}

.order-products-section__title i {
    color: var(--fasty-red);
    font-size: 18px;
}

/* Order Info Card Value Highlight */
.order-info-card__value--highlight {
    color: var(--fasty-red);
    font-weight: 700;
    font-size: 16px;
}

/* Order Detail Status Variants */
.order-detail-status--pending {
    background-color: #fff3cd;
    color: #856404;
}

.order-detail-status--processing {
    background-color: #e2e3ff;
    color: #3730a3;
}

.order-detail-status--approved {
    background-color: #d1fae5;
    color: #065f46;
}

.order-detail-status--completed {
    background-color: #d4edda;
    color: #155724;
}

.order-detail-status--cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

/* Return Photos Section */
.return-photos-section {
    margin-top: 20px;
}

.return-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px; 
  padding: 16px;
}

.return-photo-item {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.return-photo-item:hover {
    border-color: var(--fasty-yellow);
    transform: scale(1.05);
}

.return-photo-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.return-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.return-photo-item:hover .return-photo-overlay {
    opacity: 1;
}

.return-photo-overlay i {
    color: white;
    font-size: 24px;
}

/* Response Card */
.order-address-card--response {
    border: 2px solid #e2e3ff;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.order-address-card__header--response {
    background: linear-gradient(135deg, #e2e3ff 0%, #d1d5ff 100%);
    color: #3730a3;
    justify-content: flex-start;
}

.order-address-card__header--response .response-date {
    margin-left: auto;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

/* Return Timeline */
.return-timeline-section {
    margin-top: 20px;
}

.return-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.return-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.return-timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.return-timeline__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #999;
    transition: all 0.3s ease;
}

.return-timeline__item--active .return-timeline__icon {
    background: var(--fasty-yellow);
    border-color: var(--fasty-yellow);
    color: var(--opet-dark);
}

.return-timeline__item--completed .return-timeline__icon {
    background: #d4edda;
    border-color: #28a745;
    color: #28a745;
}

.return-timeline__content {
    text-align: center;
}

.return-timeline__title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--opet-dark);
    margin-bottom: 2px;
}

.return-timeline__date {
    display: block;
    font-size: 11px;
    color: #888;
}

.return-timeline__item--active .return-timeline__title {
    color: var(--fasty-red);
}

/* Return Bottom Grid (Photos + Response Side by Side) */
.return-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.return-right-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.return-right-section .return-response-section {
    margin-top: 0;
}

.return-right-section .order-detail-actions {
    margin-top: auto;
}

/* Return Action Buttons inside Card */
.return-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.return-action-buttons .order-detail-btn {
    justify-content: center;
}

/* Return Response Section */
.return-response-section {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .return-bottom-grid {
        grid-template-columns: 1fr;
    }
}

/* Return Detail Responsive */
@media (max-width: 992px) {
    .return-timeline {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }
    
    .return-timeline::before {
        top: 25px;
        bottom: 25px;
        left: 24px;
        right: auto;
        width: 3px;
        height: auto;
        transform: none;
    }
    
    .return-timeline__item {
        flex-direction: row;
        gap: 15px;
        justify-content: flex-start;
    }
    
    .return-timeline__content {
        text-align: left;
    }
    
    .return-timeline__icon {
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {

    
    .return-timeline__icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .return-timeline::before {
        left: 19px;
    }
    
    .order-products-section__title {
        font-size: 14px;
    }
    
    .order-products-section__title i {
        font-size: 16px;
    }
}


/* ============================= */
/* === BASKET PAGE (SEPET) === */
/* ============================= */

.basket-page {
    margin-bottom: 60px;
}

/* Sepet Özeti */
.basket-page .basket-page__summary {
    background-color: var(--fasty-white);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    padding: 30px;
    position: sticky;
    top: 20px;
}

.basket-page .basket-page__summary-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.basket-page .basket-page__summary-rows {
    margin-bottom: 20px;
}

.basket-page .basket-page__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.basket-page .basket-page__summary-row:last-child {
    border-bottom: none;
}

.basket-page .basket-page__summary-label {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    font-family: var(--font-family-2);
}

.basket-page .basket-page__summary-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

.basket-page .basket-page__summary-value--free {
    color: #28a745;
}

/* Genel Toplam */
.basket-page .basket-page__summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 25px;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.basket-page .basket-page__summary-total-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

.basket-page .basket-page__summary-total-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--fasty-red);
    font-family: var(--font-family-2);
}

/* Ödeme Butonu */
.basket-page .basket-page__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family-1);
    color: var(--fasty-white);
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    border: none;
    border-radius: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.basket-page .basket-page__checkout-btn:hover {
    background: linear-gradient(135deg, var(--fasty-red) 0%, #7a0026 100%);
    color: var(--fasty-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 0, 49, 0.35);
}

.basket-page .basket-page__checkout-btn .custom-icon {
    width: 20px;
    height: 20px;
    background-color: var(--fasty-white);
    margin: 0;
    transition: transform 0.3s ease;
}

.basket-page .basket-page__checkout-btn:hover .custom-icon {
    transform: translateX(4px);
}

/* === BASKET PAGE RESPONSIVE === */

@media (max-width: 991.98px) {
    .basket-page .basket-page__summary {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .basket-page .basket-page__summary {
        padding: 20px;
    }
    
    .basket-page .basket-page__summary-title {
        font-size: 18px;
    }
    
    .basket-page .basket-page__summary-total-value {
        font-size: 22px;
    }
    
    .basket-page .basket-page__checkout-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}


/* ============================= */
/* === PAYMENT PAGE (ÖDEME) === */
/* ============================= */

.payment-page {
    margin-bottom: 60px;
}

/* Section */
.payment-page .payment-page__section {
    background-color: var(--fasty-white);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    padding: 25px 30px;
    margin-bottom: 20px;
}

.payment-page .payment-page__section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-page .payment-page__section-title i {
    color: var(--fasty-red);
    font-size: 20px;
}

/* Ödeme Yöntemleri */
.payment-page .payment-page__methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-page .payment-page__method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background-color: #f8f9fa;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.payment-page .payment-page__method:hover {
    border-color: var(--fasty-yellow);
    background-color: rgba(254, 212, 26, 0.08);
}

.payment-page .payment-page__method input[type="radio"] {
    display: none;
}

.payment-page .payment-page__method input[type="radio"]:checked + .payment-page__method-radio {
    border-color: var(--fasty-red);
    background-color: var(--fasty-red);
}

.payment-page .payment-page__method input[type="radio"]:checked + .payment-page__method-radio::after {
    transform: scale(1);
}

.payment-page .payment-page__method input[type="radio"]:checked ~ .payment-page__method-icon {
    background-color: var(--fasty-red);
    color: var(--fasty-white);
}

.payment-page .payment-page__method-radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.payment-page .payment-page__method-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--fasty-white);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.payment-page .payment-page__method-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: #e8e8e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
}

.payment-page .payment-page__method-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-page .payment-page__method-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

.payment-page .payment-page__method-desc {
    font-size: 13px;
    color: #888;
    font-family: var(--font-family-2);
}

/* Kredi Kartı Formu */
.payment-page .payment-page__card-form {
    margin-top: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 14px;
    border: 1px dashed #ddd;
}

.payment-page .payment-page__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin-bottom: 8px;
}

.payment-page .payment-page__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: var(--fasty-white);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-page .payment-page__input:focus {
    outline: none;
    border-color: var(--fasty-yellow);
    box-shadow: 0 0 0 4px rgba(254, 212, 26, 0.2);
}

.payment-page .payment-page__input::placeholder {
    color: #bbb;
    font-size: 14px;
}

/* Date Input */
.payment-page .payment-page__date-input {
    cursor: pointer;
}

.payment-page .payment-page__date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.payment-page .payment-page__date-input::-webkit-calendar-picker-indicator:hover {
    background-color: rgba(254, 212, 26, 0.3);
}

.payment-page .payment-page__card-number {
    position: relative;
}

.payment-page .payment-page__card-icons {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    font-size: 24px;
    color: #999;
}

.payment-page .payment-page__card-icons .fa-cc-visa {
    color: #1a1f71;
}

.payment-page .payment-page__card-icons .fa-cc-mastercard {
    color: #eb001b;
}

/* Banka Bilgisi */
.payment-page .payment-page__bank-info,
.payment-page .payment-page__cod-info {
    margin-top: 20px;
}

.payment-page .payment-page__bank-alert,
.payment-page .payment-page__cod-alert {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: rgba(254, 212, 26, 0.15);
    border: 1px solid rgba(254, 212, 26, 0.4);
    border-radius: 14px;
}

.payment-page .payment-page__bank-alert > i,
.payment-page .payment-page__cod-alert > i {
    font-size: 24px;
    color: var(--fasty-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-page .payment-page__bank-alert strong,
.payment-page .payment-page__cod-alert strong {
    font-size: 15px;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    display: inline-block;
    margin-bottom: 5px;
}

.payment-page .payment-page__bank-alert p,
.payment-page .payment-page__cod-alert p {
    font-size: 14px;
    color: #555;
    font-family: var(--font-family-2);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.payment-page .payment-page__bank-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

/* Ödeme Yöntemi Bilgi Listesi */
.payment-page .payment-page__info-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-page .payment-page__info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #444;
    font-family: var(--font-family-2);
    line-height: 1.5;
}

.payment-page .payment-page__info-list li i {
    font-size: 14px;
    color: #28a745;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-page .payment-page__info-list li i.text-warning {
    color: #e8a317 !important;
}

/* IBAN Satırı ve Kopyalama Butonu */
.payment-page .payment-page__iban-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-page .payment-page__copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    background: var(--fasty-white);
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.payment-page .payment-page__copy-btn:hover {
    background: var(--fasty-yellow);
    border-color: var(--fasty-yellow);
    color: var(--opet-dark);
    transform: scale(1.08);
}

.payment-page .payment-page__copy-btn.copied {
    background: #28a745;
    border-color: #28a745;
    color: var(--fasty-white);
}

.payment-page .payment-page__copy-btn.copied:hover {
    background: #28a745;
    border-color: #28a745;
    color: var(--fasty-white);
}

/* Teslimat Tarihi */
.payment-page .payment-page__delivery-dates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-page .payment-page__date-option {
    cursor: pointer;
    margin: 0;
}

.payment-page .payment-page__date-option input[type="radio"] {
    display: none;
}

.payment-page .payment-page__date-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 15px;
    background-color: #f8f9fa;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-page .payment-page__date-option:hover .payment-page__date-card {
    border-color: var(--fasty-yellow);
    background-color: rgba(254, 212, 26, 0.08);
}

.payment-page .payment-page__date-option input[type="radio"]:checked + .payment-page__date-card {
    border-color: var(--fasty-red);
    background-color: rgba(151, 0, 49, 0.08);
}

.payment-page .payment-page__date-day {
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin-bottom: 4px;
}

.payment-page .payment-page__date-full {
    font-size: 13px;
    color: #666;
    font-family: var(--font-family-2);
    margin-bottom: 8px;
}

.payment-page .payment-page__date-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--fasty-red);
    font-family: var(--font-family-2);
    background-color: rgba(151, 0, 49, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Sipariş Notu */
.payment-page .payment-page__textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.payment-page .payment-page__textarea:focus {
    outline: none;
    border-color: var(--fasty-yellow);
    background-color: var(--fasty-white);
    box-shadow: 0 0 0 4px rgba(254, 212, 26, 0.2);
}

.payment-page .payment-page__textarea::placeholder {
    color: #999;
}

/* Adres Kartı */
.payment-page .payment-page__address-card {
    background-color: var(--fasty-white);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.payment-page .payment-page__address-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.payment-page .payment-page__address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.18) 0%, rgba(254, 212, 26, 0.06) 100%);
    border-bottom: 1px solid #ebebeb;
}

.payment-page .payment-page__address-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--opet-dark);
    background-color: rgba(254, 212, 26, 0.25);
    border-radius: 20px;
    font-family: var(--font-family-2);
}

.payment-page .payment-page__address-default {
    font-size: 12px;
    font-weight: 600;
    color: var(--fasty-white);
    background-color: var(--fasty-red);
    padding: 4px 12px;
    border-radius: 20px;
}

.payment-page .payment-page__address-body {
    padding: 18px 20px;
}

.payment-page .payment-page__address-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0 0 8px 0;
}

.payment-page .payment-page__address-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    font-family: var(--font-family-2);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.payment-page .payment-page__address-location i {
    color: var(--fasty-red);
    font-size: 12px;
    flex-shrink: 0;
}

.payment-page .payment-page__address-text {
    font-size: 14px;
    color: #555;
    font-family: var(--font-family-2);
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.payment-page .payment-page__address-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0;
}

.payment-page .payment-page__address-phone i {
    color: var(--fasty-red);
    font-size: 13px;
}

.payment-page .payment-page__address-company {
    padding: 12px 0 0 0;
    margin-top: 12px;
    border-top: 1px dashed #e0e0e0;
}

.payment-page .payment-page__address-company p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    font-family: var(--font-family-2);
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.payment-page .payment-page__address-company p:last-child {
    margin-bottom: 0;
}

.payment-page .payment-page__address-company i {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* Sidebar */
.payment-page .payment-page__sidebar {
    position: sticky;
    top: 80px;
}

/* Sidebar Box (Teslimat Tarihi, Sipariş Notu vb.) */
.payment-page .payment-page__sidebar-box {
    background-color: var(--fasty-white);
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    padding: 18px;
    margin-bottom: 15px;
}

.payment-page .payment-page__sidebar-box-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-page .payment-page__sidebar-box-title i {
    color: var(--fasty-red);
    font-size: 14px;
}

.payment-page .payment-page__sidebar-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-page .payment-page__sidebar-input:focus {
    outline: none;
    border-color: var(--fasty-yellow);
    background-color: var(--fasty-white);
    box-shadow: 0 0 0 3px rgba(254, 212, 26, 0.2);
}

.payment-page .payment-page__sidebar-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 13px;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    resize: none;
    transition: all 0.3s ease;
}

.payment-page .payment-page__sidebar-textarea:focus {
    outline: none;
    border-color: var(--fasty-yellow);
    background-color: var(--fasty-white);
    box-shadow: 0 0 0 3px rgba(254, 212, 26, 0.2);
}

.payment-page .payment-page__sidebar-textarea::placeholder {
    color: #999;
    font-size: 12px;
}

/* Sepet Özeti */
.payment-page .payment-page__cart-summary {
    background-color: var(--fasty-white);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    padding: 20px;
    margin-bottom: 15px;
}

.payment-page .payment-page__cart-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.payment-page .payment-page__cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-page .payment-page__cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-page .payment-page__cart-item-image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.payment-page .payment-page__cart-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-page .payment-page__cart-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-page .payment-page__cart-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-page .payment-page__cart-item-qty {
    font-size: 12px;
    color: #888;
    font-family: var(--font-family-2);
}

.payment-page .payment-page__cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    white-space: nowrap;
}

/* Sipariş Özeti */
.payment-page .payment-page__order-summary {
    background-color: var(--fasty-white);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    padding: 20px;
    margin-bottom: 15px;
}

.payment-page .payment-page__order-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.payment-page .payment-page__summary-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.payment-page .payment-page__summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--font-family-2);
}

.payment-page .payment-page__summary-row span:first-child {
    color: #666;
}

.payment-page .payment-page__summary-row span:last-child {
    font-weight: 600;
    color: var(--opet-dark);
}

.payment-page .payment-page__free {
    color: #28a745 !important;
}

.payment-page .payment-page__summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px solid #eee;
    font-family: var(--font-family-2);
}

.payment-page .payment-page__summary-total span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
}

.payment-page .payment-page__summary-total span:last-child {
    font-size: 22px;
    font-weight: 800;
    color: var(--fasty-red);
}

/* Sözleşme Onayı */
.payment-page .payment-page__agreement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background-color: var(--fasty-white);
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    margin-bottom: 15px;
    cursor: pointer;
}

.payment-page .payment-page__agreement input[type="checkbox"] {
    display: none;
}

.payment-page .payment-page__agreement-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
    margin-top: 2px;
}

.payment-page .payment-page__agreement-check::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--fasty-white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
    position: relative;
    top: -1px;
}

.payment-page .payment-page__agreement:hover .payment-page__agreement-check {
    border-color: var(--fasty-yellow);
}

.payment-page .payment-page__agreement input[type="checkbox"]:checked + .payment-page__agreement-check {
    background-color: var(--fasty-red);
    border-color: var(--fasty-red);
}

.payment-page .payment-page__agreement input[type="checkbox"]:checked + .payment-page__agreement-check::after {
    transform: rotate(45deg) scale(1);
}

.payment-page .payment-page__agreement-text {
    font-size: 13px;
    color: #555;
    font-family: var(--font-family-2);
    line-height: 1.5;
}

.payment-page .payment-page__agreement-text a {
    color: var(--fasty-red);
    font-weight: 600;
    text-decoration: none;
}

.payment-page .payment-page__agreement-text a:hover {
    text-decoration: underline;
}

/* Siparişi Ver Butonu */
.payment-page .payment-page__submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family-1);
    color: var(--fasty-white);
    background: linear-gradient(135deg, var(--fasty-red) 0%, #7a0026 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(151, 0, 49, 0.3);
    margin-bottom: 15px;
}

.payment-page .payment-page__submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #7a0026 0%, var(--fasty-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 0, 49, 0.4);
}

.payment-page .payment-page__submit-btn:disabled {
    background: linear-gradient(135deg, #777 0%, #444 100%);
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none;
}

.payment-page .payment-page__submit-btn i {
    font-size: 16px;
}

.payment-page .payment-page__submit-price {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Güvenlik */
.payment-page .payment-page__security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    font-family: var(--font-family-2);
}

.payment-page .payment-page__security i {
    color: #28a745;
}

/* === PAYMENT PAGE RESPONSIVE === */

@media (max-width: 991.98px) {
    .payment-page .payment-page__sidebar {
        position: static;
        margin-top: 10px;
    }
    
    .payment-page .payment-page__delivery-dates {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .payment-page .payment-page__section {
        padding: 20px;
    }
    
    .payment-page .payment-page__method {
        padding: 15px;
    }
    
    .payment-page .payment-page__method-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .payment-page .payment-page__method-title {
        font-size: 14px;
    }
    
    .payment-page .payment-page__card-form {
        padding: 20px 15px;
    }
    
    .payment-page .payment-page__delivery-dates {
        grid-template-columns: 1fr;
    }
    
    .payment-page .payment-page__date-card {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 18px;
    }
    
    .payment-page .payment-page__date-day {
        margin-bottom: 0;
    }
    
    .payment-page .payment-page__date-full {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .payment-page .payment-page__section-title {
        font-size: 16px;
    }
    
    .payment-page .payment-page__section-title i {
        font-size: 18px;
    }
    
    .payment-page .payment-page__method {
        flex-wrap: wrap;
    }
    
    .payment-page .payment-page__summary-total span:last-child {
        font-size: 20px;
    }
    
    .payment-page .payment-page__submit-btn {
        padding: 16px 20px;
        font-size: 15px;
    }

    .payment-page .payment-page__address-header {
        padding: 12px 15px;
    }

    .payment-page .payment-page__address-body {
        padding: 15px;
    }

    .payment-page .payment-page__address-name {
        font-size: 14px;
    }

    .payment-page .payment-page__address-location {
        font-size: 12px;
    }

    .payment-page .payment-page__address-text {
        font-size: 13px;
    }

    .payment-page .payment-page__address-phone {
        font-size: 13px;
    }

    .payment-page .payment-page__address-company p {
        font-size: 12px;
    }
}

/* === ÖDEME SAYFA GÖRSELLERİ === */

/* Kart Numarası Görseli */
.payment-page .payment-page__card-icons img {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.payment-page .payment-page__card-icons:hover img {
    opacity: 1;
}

/* CVV Wrapper */
.payment-page .payment-page__cvv-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.payment-page .payment-page__cvv-wrapper .payment-page__input {
    padding-right: 50px;
}

.payment-page .payment-page__cvv-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    cursor: help;
}

.payment-page .payment-page__cvv-icon img {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    transition: all 0.3s ease;
}

.payment-page .payment-page__cvv-icon:hover img {
    opacity: 1;
    transform: scale(1.08);
}

/* Güvenli Ödeme Badge */
.payment-page .odeme-safe {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    margin: 10px auto;
}

.payment-page .odeme-safe img {
    max-width: 100%;
    height: auto;
    max-height: 45px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.payment-page .odeme-safe:hover img {
    opacity: 1;
}

/* Responsive - Ödeme Görselleri */
@media (max-width: 575.98px) {
    .payment-page .payment-page__card-icons img,
    .payment-page .payment-page__cvv-icon img {
        height: 24px;
    }
    
    .payment-page .odeme-safe img {
        max-height: 38px;
    }
}


/* ===== SİPARİŞ BAŞARILI SAYFASI ===== */
.siparis-basarili-page {
    padding: 20px 0 60px;
}

.order-success-alert {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--fasty-yellow);
    position: relative;
    overflow: hidden;
}

.order-success-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--fasty-red) 0%, var(--fasty-yellow) 50%, var(--fasty-red) 100%);
}

.order-success-alert__icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, var(--fasty-yellow) 0%, #f5c800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(254, 212, 26, 0.5);
    animation: successPulse 2s ease-in-out infinite;
}

.order-success-alert__icon i {
    font-size: 48px;
    color: var(--fasty-red);
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(254, 212, 26, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(254, 212, 26, 0.7);
    }
}

.order-success-alert__content {
    margin-bottom: 35px;
}

.order-success-alert__title {
    font-family: var(--font-family-1);
    font-size: 28px;
    font-weight: 700;
    color: var(--fasty-red);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.order-success-alert__message {
    font-family: var(--font-family-2);
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.order-success-alert__order-no {
    background: linear-gradient(145deg, var(--fasty-red) 0%, #7a0028 100%);
    padding: 18px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(151, 0, 49, 0.3);
}

.order-success-alert__label {
    font-family: var(--font-family-2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.order-success-alert__value {
    font-family: var(--font-family-1);
    font-size: 20px;
    font-weight: 700;
    color: var(--fasty-yellow);
    letter-spacing: 1px;
}

.order-success-alert__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: var(--fasty-brand-card-bg-light);
    border-radius: 12px;
}

.order-success-alert__info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-family-2);
    font-size: 15px;
    color: #555;
}

.order-success-alert__info-item i {
    color: var(--fasty-red);
    font-size: 18px;
}

.order-success-alert__info-item strong {
    color: var(--fasty-red);
}

.order-success-alert__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.order-success-alert__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-family-1);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-success-alert__btn--primary {
    background: linear-gradient(145deg, var(--fasty-red) 0%, #7a0028 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(151, 0, 49, 0.35);
}

.order-success-alert__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(151, 0, 49, 0.45);
    color: var(--fasty-yellow);
}

.order-success-alert__btn--secondary {
    background: linear-gradient(145deg, var(--fasty-yellow) 0%, #f5c800 100%);
    color: var(--fasty-red);
    box-shadow: 0 6px 20px rgba(254, 212, 26, 0.4);
}

.order-success-alert__btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 212, 26, 0.55);
    color: var(--fasty-red);
}

/* Responsive - Sipariş Başarılı */
@media (max-width: 576px) {
    .order-success-alert {
        padding: 35px 20px;
        border-radius: 16px;
    }
    
    .order-success-alert__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .order-success-alert__icon i {
        font-size: 36px;
    }
    
    .order-success-alert__title {
        font-size: 22px;
    }
    
    .order-success-alert__message {
        font-size: 14px;
    }
    
    .order-success-alert__order-no {
        flex-direction: column;
        gap: 6px;
        padding: 15px 20px;
    }
    
    .order-success-alert__value {
        font-size: 18px;
    }
    
    .order-success-alert__info-item {
        font-size: 13px;
        text-align: center;
    }
    
    .order-success-alert__actions {
        flex-direction: column;
    }
    
    .order-success-alert__btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}


/* ===== SİPARİŞ BAŞARISIZ SAYFASI ===== */
.siparis-basarisiz-page {
    padding: 20px 0 60px;
}

.order-failed-alert {
    background: linear-gradient(145deg, #ffffff 0%, #fff5f5 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid #dc3545;
    position: relative;
    overflow: hidden;
}

.order-failed-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
}

.order-failed-alert__icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
    animation: failedShake 0.5s ease-in-out;
}

.order-failed-alert__icon i {
    font-size: 48px;
    color: #fff;
}

@keyframes failedShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
}

.order-failed-alert__content {
    margin-bottom: 35px;
}

.order-failed-alert__title {
    font-family: var(--font-family-1);
    font-size: 28px;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.order-failed-alert__message {
    font-family: var(--font-family-2);
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.order-failed-alert__error-code {
    background: linear-gradient(145deg, #343a40 0%, #23272b 100%);
    padding: 18px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(52, 58, 64, 0.3);
}

.order-failed-alert__label {
    font-family: var(--font-family-2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.order-failed-alert__value {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #ff6b6b;
    letter-spacing: 1px;
}

.order-failed-alert__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #fff5f5;
    border-radius: 12px;
    border: 1px solid #ffe0e0;
}

.order-failed-alert__info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-family-2);
    font-size: 15px;
    color: #555;
}

.order-failed-alert__info-item i {
    color: #dc3545;
    font-size: 18px;
    width: 24px;
}

.order-failed-alert__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.order-failed-alert__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-family-1);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-failed-alert__btn--primary {
    background: linear-gradient(145deg, var(--fasty-red) 0%, #7a0028 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(151, 0, 49, 0.35);
}

.order-failed-alert__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(151, 0, 49, 0.45);
    color: var(--fasty-yellow);
}

.order-failed-alert__btn--secondary {
    background: linear-gradient(145deg, #6c757d 0%, #545b62 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.35);
}

.order-failed-alert__btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 117, 125, 0.45);
    color: #fff;
}

.order-failed-alert__support {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.order-failed-alert__support p {
    font-family: var(--font-family-2);
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.order-failed-alert__support a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 600;
    color: var(--fasty-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-failed-alert__support a:hover {
    color: var(--opet-blue);
}

.order-failed-alert__support a i {
    font-size: 20px;
}

/* Responsive - Sipariş Başarısız */
@media (max-width: 576px) {
    .order-failed-alert {
        padding: 35px 20px;
        border-radius: 16px;
    }
    
    .order-failed-alert__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .order-failed-alert__icon i {
        font-size: 36px;
    }
    
    .order-failed-alert__title {
        font-size: 22px;
    }
    
    .order-failed-alert__message {
        font-size: 14px;
    }
    
    .order-failed-alert__error-code {
        flex-direction: column;
        gap: 6px;
        padding: 15px 20px;
    }
    
    .order-failed-alert__value {
        font-size: 14px;
    }
    
    .order-failed-alert__info-item {
        font-size: 13px;
        text-align: left;
        justify-content: flex-start;
    }
    
    .order-failed-alert__actions {
        flex-direction: column;
    }
    
    .order-failed-alert__btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}


.cat-link.active {
    color: var(--fasty-yellow);
}

.cat-link.active .cat-icon .custom-icon {
    background-color: var(--fasty-yellow);
}


/* ============================= */
/* === ADDRESS CARDS === */
/* ============================= */

.address-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.address-card {
    background-color: var(--fasty-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.address-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header */
.address-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.18) 0%, rgba(254, 212, 26, 0.06) 100%);
    border-bottom: 1px solid #ebebeb;
}

.address-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
}

.address-card__title i {
    color: var(--fasty-red);
    font-size: 16px;
}

/* Add Button */
.address-card__add-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family-2);
    color: var(--fasty-white);
    background: linear-gradient(135deg, var(--fasty-red) 0%, #7a0026 100%);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.address-card__add-btn:hover {
    background: linear-gradient(135deg, #7a0026 0%, var(--fasty-red) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(151, 0, 49, 0.3);
    color: var(--fasty-white);
}

.address-card__add-btn i {
    font-size: 11px;
}

/* Body */
.address-card__body {
    padding: 18px 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

/* Content (when address exists) */
.address-card__content {
    flex: 1;
}

.address-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--opet-dark);
    background-color: rgba(254, 212, 26, 0.25);
    border-radius: 20px;
    font-family: var(--font-family-2);
    margin-bottom: 12px;
}

.address-card__tag i {
    font-size: 11px;
    color: var(--fasty-red);
}

.address-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0 0 8px 0;
}

.address-card__location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    font-family: var(--font-family-2);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.address-card__location i {
    color: var(--fasty-red);
    font-size: 12px;
    flex-shrink: 0;
}

.address-card__text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #555;
    font-family: var(--font-family-2);
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.address-card__text i {
    color: var(--fasty-red);
    font-size: 13px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    margin-top: 4px;
}

.address-card__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    margin: 0 0 14px 0;
}

.address-card__phone i {
    color: var(--fasty-red);
    font-size: 13px;
}

.address-card__company {
    padding: 12px 0 0 0;
    margin: 0 0 14px 0;
    border-top: 1px dashed #e0e0e0;
}

.address-card__company p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    font-family: var(--font-family-2);
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.address-card__company p:last-child {
    margin-bottom: 0;
}

.address-card__company i {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* Action Buttons */
.address-card__actions {
    display: flex;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.address-card__edit-btn,
.address-card__delete-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family-2);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.address-card__edit-btn {
    flex: 1;
    color: var(--opet-dark);
    background-color: var(--fasty-yellow);
}

.address-card__edit-btn:hover {
    background-color: #e5bf17;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 212, 26, 0.4);
    color: var(--opet-dark);
}

.address-card__delete-btn {
    color: var(--fasty-red);
    background-color: rgba(151, 0, 49, 0.08);
}

.address-card__delete-btn:hover {
    background-color: rgba(151, 0, 49, 0.15);
    transform: translateY(-1px);
    color: var(--fasty-red);
}

/* Empty State */
.address-card__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
}

.address-card__empty i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.address-card__empty p {
    font-size: 14px;
    color: #999;
    font-family: var(--font-family-2);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .address-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .address-card__header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .address-card__add-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .address-card__body {
        padding: 15px;
    }

    .address-card__name {
        font-size: 14px;
    }

    .address-card__location {
        font-size: 12px;
    }

    .address-card__text {
        font-size: 13px;
    }

    .address-card__phone {
        font-size: 13px;
    }

    .address-card__company p {
        font-size: 12px;
    }
    
    .address-card__actions {
        flex-direction: column;
    }
    
    .address-card__edit-btn,
    .address-card__delete-btn {
        width: 100%;
        justify-content: center;
    }
}

.generic-table__thead.yellow-bg {
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.15) 0%, rgba(254, 212, 26, 0.05) 100%);
}

/* =====================================================
   TABLE FILTER STYLES
   ===================================================== */
.table-filter {
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(254, 212, 26, 0.2);
}

.table-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(254, 212, 26, 0.3);
}

.table-filter__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-1);
    margin: 0;
}

.table-filter__title i {
    color: var(--fasty-red);
    font-size: 18px;
}

.table-filter__toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--fasty-red);
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.table-filter__toggle.collapsed {
    transform: rotate(180deg);
}

.table-filter__body {
    /* Bootstrap row handles the grid */
}

.table-filter__body.collapsed {
    display: none;
}

.table-filter__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.table-filter__label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    font-family: var(--font-family-2);
}

.table-filter__input,
.table-filter__select {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-family-2);
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    background-color: #fff;
    color: var(--opet-dark);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.table-filter__input[type="date"] {
    min-width: 0;
}

.table-filter__input[type="number"] {
    min-width: 0;
}

.table-filter__input::placeholder {
    color: #999;
}

.table-filter__input:hover,
.table-filter__select:hover {
    border-color: #ccc;
}

.table-filter__input:focus,
.table-filter__select:focus {
    outline: none;
    border-color: var(--fasty-yellow);
    box-shadow: 0 0 0 4px rgba(254, 212, 26, 0.2);
}

.table-filter__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8.5L1 3.5h10L6 8.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.table-filter__range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-filter__range-inputs .table-filter__input {
    flex: 1;
    min-width: 0;
}

.table-filter__range-separator {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    flex-shrink: 0;
}

.table-filter__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(254, 212, 26, 0.3);
    margin-top: 5px;
}

.table-filter__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.table-filter__btn--primary {
    background: linear-gradient(135deg, var(--fasty-red) 0%, #7a0026 100%);
    color: var(--fasty-white);
    border: none;
}

.table-filter__btn--primary:hover {
    background: linear-gradient(135deg, #7a0026 0%, var(--fasty-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(151, 0, 49, 0.3);
}

.table-filter__btn--secondary {
    background: #fff;
    color: #666;
    border: 2px solid #e0e0e0;
}

.table-filter__btn--secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* =====================================================
   TABLE PAGINATION STYLES
   ===================================================== */
.table-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 0 0 20px 20px;
    border-top: 2px solid rgba(254, 212, 26, 0.2);
    margin-top: -1px;
}

.table-pagination__nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.table-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.table-pagination__btn:hover {
    border-color: var(--fasty-yellow);
    background: rgba(254, 212, 26, 0.1);
    color: var(--opet-dark);
}

.table-pagination__btn--active {
    background: linear-gradient(135deg, var(--fasty-red) 0%, #7a0026 100%);
    color: var(--fasty-white);
    border-color: var(--fasty-red);
}

.table-pagination__btn--active:hover {
    background: linear-gradient(135deg, #7a0026 0%, var(--fasty-red) 100%);
    border-color: #7a0026;
    color: var(--fasty-white);
}

.table-pagination__btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.table-pagination__btn i {
    font-size: 12px;
}

.table-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    font-size: 14px;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .table-filter {
        padding: 20px;
    }
    
    .table-filter__toggle {
        display: block;
    }
    
    .table-filter__actions {
        flex-direction: column;
    }
    
    .table-filter__btn {
        width: 100%;
        justify-content: center;
    }
    
    .table-pagination {
        padding: 15px 20px;
    }
    
    .table-pagination__nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .table-pagination__btn {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .table-filter__header {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .table-filter__title {
        font-size: 14px;
    }
    
    .table-filter__range-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .table-filter__range-inputs .table-filter__input {
        width: 100%;
    }
    
    .table-filter__range-separator {
        display: none;
    }
    
    .table-pagination__btn {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }
}

/* Destek header düzeltmesi */
.destek-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}

/* =====================================================
   EDITOR CONTENT - ARTICLE STYLES
   ===================================================== */
.editor-container {
    background: var(--fasty-white);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.editor-content {
    font-family: var(--font-family-2);
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Başlıklar */
.editor-content h1 {
    font-family: var(--font-family-1);
    font-size: 32px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-bottom: 25px;
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--fasty-yellow);
}

.editor-content h2 {
    font-family: var(--font-family-1);
    font-size: 26px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(254, 212, 26, 0.5);
}

.editor-content h2:first-child {
    margin-top: 0;
}

.editor-content h3 {
    font-family: var(--font-family-1);
    font-size: 22px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.editor-content h4 {
    font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.editor-content h5,
.editor-content h6 {
    font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 700;
    color: var(--opet-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Paragraflar */
.editor-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.editor-content p:last-child {
    margin-bottom: 0;
}

/* Linkler */
.editor-content a {
    color: #0088CE;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.editor-content a:hover {
    color: var(--fasty-red);
    border-bottom-color: var(--fasty-red);
}

/* Kalın ve Vurgulu Metinler */
.editor-content strong,
.editor-content b {
    font-weight: 700;
    color: var(--opet-dark);
}

.editor-content em,
.editor-content i {
    font-style: italic;
    color: #555;
}

.editor-content mark {
    background: linear-gradient(120deg, rgba(254, 212, 26, 0.4) 0%, rgba(254, 212, 26, 0.2) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Blockquote - Alıntı */
.editor-content blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.1) 0%, rgba(254, 212, 26, 0.05) 100%);
    border-left: 4px solid var(--fasty-yellow);
    border-radius: 0 12px 12px 0;
    font-size: 17px;
    font-style: italic;
    color: #555;
    position: relative;
}

.editor-content blockquote::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 60px;
    color: var(--fasty-yellow);
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.5;
}

.editor-content blockquote p {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Listeler */
.editor-content ul,
.editor-content ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.editor-content ul li,
.editor-content ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.editor-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--fasty-red);
    border-radius: 50%;
}

.editor-content ol {
    counter-reset: list-counter;
}

.editor-content ol li {
    counter-increment: list-counter;
}

.editor-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--fasty-red);
    color: var(--fasty-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* İç içe listeler */
.editor-content ul ul,
.editor-content ol ol,
.editor-content ul ol,
.editor-content ol ul {
    margin: 10px 0;
    padding-left: 20px;
}

.editor-content ul ul li::before {
    width: 6px;
    height: 6px;
    background: transparent;
    border: 2px solid var(--fasty-red);
}

/* Tablolar */
.editor-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.editor-content table thead {
    background: linear-gradient(135deg, var(--opet-dark) 0%, var(--opet-blue) 100%);
    color: var(--fasty-white);
}

.editor-content table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    font-family: var(--font-family-1);
}

.editor-content table td {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.editor-content table tbody tr:last-child td {
    border-bottom: none;
}

.editor-content table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.editor-content table tbody tr:hover {
    background-color: rgba(254, 212, 26, 0.1);
}

/* Görseller */
.editor-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.editor-content figure {
    margin: 25px 0;
    text-align: center;
}

.editor-content figcaption {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* Ayırıcı Çizgi */
.editor-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--fasty-yellow) 50%, transparent 100%);
    margin: 40px 0;
}

/* Kod Blokları */
.editor-content code {
    font-family: 'Consolas', 'Monaco', monospace;
    background-color: #f4f4f4;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--fasty-red);
}

.editor-content pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 20px 25px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 25px 0;
    font-size: 14px;
    line-height: 1.6;
}

.editor-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* Responsive */
@media (max-width: 991px) {
    .editor-container {
        padding: 30px 35px;
    }
    
    .editor-content {
        font-size: 15px;
    }
    
    .editor-content h1 {
        font-size: 28px;
    }
    
    .editor-content h2 {
        font-size: 22px;
    }
    
    .editor-content h3 {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .editor-container {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .editor-content {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .editor-content h1 {
        font-size: 24px;
    }
    
    .editor-content h2 {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .editor-content h3 {
        font-size: 17px;
    }
    
    .editor-content blockquote {
        padding: 20px;
        font-size: 15px;
    }
    
    .editor-content blockquote::before {
        font-size: 40px;
        top: -5px;
        left: 10px;
    }
    
    .editor-content table {
        font-size: 13px;
    }
    
    .editor-content table th,
    .editor-content table td {
        padding: 10px 12px;
    }
}

@media (max-width: 575px) {
    .editor-container {
        padding: 20px 15px;
    }
    
    .editor-content p {
        text-align: left;
    }
    
    .editor-content ul li,
    .editor-content ol li {
        padding-left: 24px;
    }
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */
.contact-container {
    margin-bottom: 60px;
}

/* İletişim Bilgileri Kartı */
.contact-info-card {
    background: var(--fasty-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

.contact-info-card__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family-1);
    font-size: 20px;
    font-weight: 700;
    color: var(--opet-dark);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(254, 212, 26, 0.4);
}

.contact-info-card__title i {
    color: var(--fasty-red);
    font-size: 22px;
}

.contact-info-card__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-item__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--fasty-yellow) 0%, #f0c800 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item__icon i {
    font-size: 18px;
    color: var(--opet-dark);
}

.contact-info-item__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-item__label {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item__value {
    font-size: 15px;
    font-weight: 500;
    color: var(--opet-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-info-item__value:hover {
    color: var(--fasty-red);
}

/* SSS - FAQ Accordion */
.contact-faq {
    background: var(--fasty-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}

.contact-faq__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family-1);
    font-size: 20px;
    font-weight: 700;
    color: var(--opet-dark);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(254, 212, 26, 0.4);
}

.contact-faq__title i {
    color: var(--fasty-red);
    font-size: 22px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion__item {
    border: 2px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion__item:hover {
    border-color: rgba(254, 212, 26, 0.5);
}

.faq-accordion__item.active {
    border-color: var(--fasty-yellow);
    box-shadow: 0 4px 15px rgba(254, 212, 26, 0.2);
}

.faq-accordion__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-accordion__header span {
    font-family: var(--font-family-2);
    font-size: 15px;
    font-weight: 600;
    color: var(--opet-dark);
}

.faq-accordion__header i {
    font-size: 14px;
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion__item.active .faq-accordion__header {
    background: linear-gradient(135deg, rgba(254, 212, 26, 0.15) 0%, rgba(254, 212, 26, 0.05) 100%);
}

.faq-accordion__item.active .faq-accordion__header i {
    transform: rotate(180deg);
    color: var(--fasty-red);
}

/* ===============================================
   STICKY HEADER
   =============================================== */
.main-header {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.main-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 10px 20px;
    
    /* ========== ALTERNATİF 1: Opet Koyu Mavi (Mevcut - Varsayılan) ========== */
     background: linear-gradient(135deg, rgba(0, 45, 92, 0.80) 0%, rgba(0, 71, 143, 0.85) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(254, 212, 26, 0.1); 
    
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideDown 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Sticky header'da logo küçülsün */
.main-header.is-sticky .main-logo img {
    width: 80px;
    transition: width 0.3s ease;
}

/* Sticky header'da navbar stili */
.main-header.is-sticky .navbar-custom {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

/* Sticky placeholder - header sticky olunca sayfa kaymayı engellemek için */
.sticky-placeholder {
    display: none;
    height: 0;
}

.sticky-placeholder.active {
    display: block;
}

/* Mobil responsive sticky - Normal görünümle uyumlu */
@media (max-width: 991.98px) {
   .main-header.is-sticky {
        flex-direction: column;
        padding: 12px 5%;
        gap: 10px;
    }
    
    .main-header.is-sticky .main-logo img {
        width: 75px;
        margin-right: 0;
    }
    
    .main-header.is-sticky .navbar-custom {
        width: 500px;
        max-width: 90%;
        border-radius: 18px;
        padding: 20px 16px;
        background: rgba(0, 136, 206, 0.97);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .main-header.is-sticky .navbar-custom .navbar-collapse {
        gap: 15px;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .main-header.is-sticky .navbar-custom .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 15px;
        margin-bottom: 0 !important;
    }
    
    .main-header.is-sticky .navbar-nav .nav-item {
        margin-left: 0 !important;
    }
    
    .main-header.is-sticky .navbar-nav .nav-item .nav-link {
        margin-left: 0 !important;
        padding: 0 !important;
        font-size: 13px;
    }
    
    .main-header.is-sticky .search-container {
        margin: 0;
    }
    
    .main-header.is-sticky .search-container input {
        height: 32px;
        font-size: 12px;
    }
    
    .main-header.is-sticky .search-container .search-btn {
        width: 32px;
        height: 32px;
    }
    
    /* Basket button - normal pozisyonda */
    .main-header.is-sticky .basket-sidebar-btn {
        position: absolute;
        bottom: 20px;
        right: 16px;
        width: 36px !important;
        height: 28px !important;
    }
}

@media (max-width: 575.98px) {
    .main-header.is-sticky {
        padding: 10px 4%;
        gap: 8px;
    }
    
    .main-header.is-sticky .main-logo img {
        width: 65px;
    }
    
    .main-header.is-sticky .navbar-custom {
        max-width: 95%;
        padding: 16px 14px;
        border-radius: 16px;
    }
    
    .main-header.is-sticky .navbar-custom .navbar-collapse {
        gap: 12px;
    }
    
    .main-header.is-sticky .navbar-nav {
        gap: 12px !important;
    }
    
    .main-header.is-sticky .navbar-nav .nav-item .nav-link {
        font-size: 12px;
        gap: 4px;
    }
    
    .main-header.is-sticky .search-container input {
        height: 30px;
        font-size: 11px;
    }
    
    .main-header.is-sticky .search-container .search-btn {
        width: 30px;
        height: 30px;
    }
    
    .main-header.is-sticky .basket-sidebar-btn {
        bottom: 16px;
        right: 14px;
        width: 32px !important;
        height: 26px !important;
    }
    
    .main-header.is-sticky .basket-badge {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}

.faq-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion__item.active .faq-accordion__body {
    max-height: 300px;
}

.faq-accordion__body p {
    padding: 0 20px 20px 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* İletişim Formu Kartı */
.contact-form-card {
    background: var(--fasty-white);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}

.contact-form-card__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family-1);
    font-size: 22px;
    font-weight: 700;
    color: var(--opet-dark);
    margin: 0 0 10px 0;
}

.contact-form-card__title i {
    color: var(--fasty-red);
    font-size: 22px;
}

.contact-form-card__desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Custom Checkbox */
.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check-custom input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0px;
    accent-color: var(--fasty-red);
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-custom label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}

.form-check-custom label a {
    color: var(--fasty-red);
    font-weight: 600;
    text-decoration: none;
}

.form-check-custom label a:hover {
    text-decoration: underline;
}

/* Contact Page Responsive */
@media (max-width: 991px) {
    .contact-form-card {
        padding: 30px;
        margin-top: 25px;
    }
    
    .contact-info-card,
    .contact-faq {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .contact-container {
        margin-bottom: 40px;
    }
    
    .contact-info-card,
    .contact-faq,
    .contact-form-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .contact-info-card__title,
    .contact-faq__title,
    .contact-form-card__title {
        font-size: 18px;
    }
    
    .contact-info-item__icon {
        width: 42px;
        height: 42px;
    }
    
    .contact-info-item__icon i {
        font-size: 16px;
    }
    
    .faq-accordion__header {
        padding: 14px 16px;
    }
    
    .faq-accordion__header span {
        font-size: 14px;
    }
    
    .faq-accordion__body p {
        padding: 0 16px 16px 16px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        background: #fafafa;
        border-radius: 12px;
    }
    
    .contact-info-card__list {
        gap: 15px;
    }
}

.make-sticky {
    position: sticky;
    top: 60px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .generic-table-wrapper {
        overflow-x: auto;
    }
}


.select2-container--default .select2-selection--multiple .select2-selection__clear {
    display: none;
}



/* ===== GENERIC INFO ALERT ===== */
.alert-generic-info {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: rgba(254, 212, 26, 0.15);
    border: 1px solid rgba(254, 212, 26, 0.4);
    border-radius: 14px;
    margin-top: 20px;
}

.alert-generic-info__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, var(--fasty-yellow) 0%, #f5c800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(254, 212, 26, 0.35);
}

.alert-generic-info__icon i {
    font-size: 18px;
    color: var(--fasty-red);
}

.alert-generic-info__title {
    font-family: var(--font-family-2);
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    margin: 0 0 5px 0;
}

.alert-generic-info__text {
    font-family: var(--font-family-2);
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.alert-generic-info__text a {
    color: var(--fasty-red);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.alert-generic-info__text a:hover {
    color: #7a0026;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
    .alert-generic-info {
        padding: 16px;
        gap: 12px;
    }

    .alert-generic-info__icon {
        width: 36px;
        height: 36px;
    }

    .alert-generic-info__icon i {
        font-size: 16px;
    }

    .alert-generic-info__title {
        font-size: 14px;
    }

    .alert-generic-info__text {
        font-size: 13px;
    }
}


/* ===== RETURN PRODUCT LIST ===== */
.return-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.return-product-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.return-product-item:hover {
    border-color: #ccc;
    background-color: #fff;
}

.return-product-item.active {
    border-color: var(--fasty-yellow);
    background-color: rgba(254, 212, 26, 0.06);
    box-shadow: 0 0 0 4px rgba(254, 212, 26, 0.12);
}

/* Checkbox */
.return-product-item__check {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.return-product-item__check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Return Product Checkbox Styles */
.return-product-item__check .form-checkbox-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
}

.return-product-item__check .form-checkbox-mark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--fasty-white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
    position: relative;
    top: -1px;
}

.return-product-item__check:hover .form-checkbox-mark {
    border-color: var(--fasty-yellow);
}

.return-product-item__check input[type="checkbox"]:checked + .form-checkbox-mark {
    background-color: var(--fasty-red);
    border-color: var(--fasty-red);
}

.return-product-item__check input[type="checkbox"]:checked + .form-checkbox-mark::after {
    transform: rotate(45deg) scale(1);
}

/* Product Info */
.return-product-item__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.return-product-item__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.return-product-item__barcode {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    font-family: var(--font-family-2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.return-product-item__barcode i {
    font-size: 11px;
    color: #aaa;
}

/* Quantity Section */
.return-product-item__qty {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.return-product-item.active .return-product-item__qty {
    opacity: 1;
    pointer-events: auto;
}

.return-product-item__qty-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    white-space: nowrap;
}

.return-product-item__qty-controls {
    display: inline-flex;
    align-items: center;
    background-color: rgba(254, 212, 26, 0.2);
    border-radius: 25px;
    padding: 4px 6px;
    gap: 0;
}

.return-product-item__qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: var(--fasty-red);
    color: var(--fasty-white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: var(--font-family-2);
    flex-shrink: 0;
    line-height: 1;
}

.return-product-item__qty-btn:hover:not(:disabled) {
    background-color: #7a0026;
    transform: scale(1.1);
}

.return-product-item__qty-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.return-product-item__qty-input {
    width: 42px;
    height: 30px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    -moz-appearance: textfield;
}

.return-product-item__qty-input::-webkit-outer-spin-button,
.return-product-item__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.return-product-item__qty-input:focus {
    outline: none;
}

.return-product-item__qty-hint {
    font-size: 11px;
    font-weight: 500;
    color: #999;
    font-family: var(--font-family-2);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 767px) {
    .return-product-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 14px;
    }

    .return-product-item__info {
        flex: 1 1 calc(100% - 46px);
        order: 1;
    }

    .return-product-item__check {
        order: 0;
    }

    .return-product-item__qty {
        order: 2;
        width: 100%;
        padding-left: 36px;
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .return-product-item__qty {
        flex-wrap: wrap;
        padding-left: 36px;
    }

    .return-product-item__qty-label {
        width: 100%;
        margin-bottom: -4px;
    }
}




    /* Filter Sidebar - Accordion */
.filter-sidebar .filter-sidebar__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 2px 0;
    user-select: none;
    -webkit-user-select: none;
}

.filter-sidebar .filter-sidebar__section-header .filter-sidebar__title {
    margin-bottom: 0;
    flex: 1;
}

.filter-sidebar .filter-sidebar__section-header .filter-sidebar__section-icon {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 10px;
    flex-shrink: 0;
    position: relative;
    bottom: 2px;
}

.filter-sidebar .filter-sidebar__section.opened > .filter-sidebar__section-header .filter-sidebar__section-icon {
    transform: rotate(180deg);
    color: var(--fasty-yellow);
}

.filter-sidebar .filter-sidebar__section-header:hover .filter-sidebar__section-icon {
    color: var(--fasty-yellow);
}

.filter-sidebar .filter-sidebar__section-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.filter-sidebar .filter-sidebar__section.opened > .filter-sidebar__section-body {
    max-height: unset;
    opacity: 1;
    margin-top: 0.75rem;
}



.payments-logo-footer {
    width: 150px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 5px 10px 0px 10px;
    border-radius: 10px;
    background-color: var(--fasty-white);
    transition: all 0.3s ease;
}








/* 19 şubat revizyonu */

.generic-table-wrapper .generic-table.not-basket .generic-table__action-btn.for-return-order {
    border-color: #555;
    color: #555;
    margin-left: 5px;
}

.generic-table-wrapper .generic-table.not-basket .generic-table__action-btn.for-return-order:hover {
    background-color: #555;
    color: var(--fasty-white);
}

.order-detail-btn--info {
    background-color: var(--fasty-yellow);
    color: var(--opet-dark);
    border: none;
    box-shadow: 0 4px 12px rgba(254, 212, 26, 0.25);
}

.order-detail-btn--info:hover {
    background-color: #e5be00;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(254, 212, 26, 0.35);
}

@media (max-width: 767.98px) {
.generic-table-wrapper .generic-table.not-basket .generic-table__td:last-child {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
}

.generic-table-wrapper .generic-table.not-basket .generic-table__td:last-child::before {
    width: 100%;
}


}


.return-product-item__barcode-input-wrap {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    margin-top: 2px;
}

.return-product-item__barcode-input-wrap i {
    font-size: 14px;
    color: #aaa;
    flex-shrink: 0;
}

.return-product-item__barcode-input {
    width: 100%;
    max-width: 200px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-family-2);
    color: var(--opet-dark);
    text-align: center;
    background-color: #f9f9f9;
    transition: border-color 0.2s, background-color 0.2s;
}

.return-product-item__barcode-input:focus {
    outline: none;
    border-color: var(--fasty-yellow);
    background-color: #fff;
}

.return-product-item__barcode-input:disabled {
    background-color: #f0f0f0;
    color: #bbb;
    cursor: not-allowed;
}

.return-product-item.active .return-product-item__barcode-input-wrap i {
    color: var(--fasty-red);
}

/* 19 şubat revizyonu */


.return-product-item__qty {
    flex-direction: column;
}

.return-product-item__barcode-input-wrap-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

@media (max-width: 992.98px) {
    .return-product-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    .return-product-item__qty {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-left: 0px;
    }
}






/* Bank Account Card */
.bank-account-card__desc {
    font-family: var(--font-family-2);
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bank-account-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bank-account-item {
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.bank-account-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(254, 212, 26, 0.5);
}

.bank-account-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--opet-dark) 0%, var(--opet-blue) 100%);
}

.bank-account-item__icon {
    width: 36px;
    height: 36px;
    background: rgba(254, 212, 26, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bank-account-item__icon i {
    font-size: 16px;
    color: var(--fasty-yellow);
}

.bank-account-item__bank-name {
    font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 700;
    color: var(--fasty-white);
    letter-spacing: 0.3px;
}

.bank-account-item__body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fcfcfc;
}

.bank-account-item__row {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bank-account-item__label {
    font-family: var(--font-family-2);
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-account-item__value {
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 500;
    color: var(--opet-dark);
}

.bank-account-item__value--iban {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.bank-account-item__iban-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.iban-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border: 1.5px solid var(--fasty-yellow);
    border-radius: 8px;
    background: transparent;
    color: var(--opet-dark);
    font-family: var(--font-family-2);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.iban-copy-btn i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.iban-copy-btn:hover {
    background: var(--fasty-yellow);
    color: var(--opet-dark);
    box-shadow: 0 2px 8px rgba(254, 212, 26, 0.3);
}

.iban-copy-btn:hover i {
    transform: scale(1.15);
}

.iban-copy-btn.copied {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.iban-copy-btn.copied i {
    transform: scale(1.1);
}

@media (max-width: 575.98px) {
    .bank-account-item__header {
        padding: 12px 16px;
    }

    .bank-account-item__body {
        padding: 14px 16px;
    }

    .bank-account-item__value--iban {
        font-size: 11.5px;
        letter-spacing: 0.5px;
    }

    .bank-account-item__iban-wrap {
        gap: 8px;
    }
}


/* Address Selector (Ödeme Sayfası) */
.address-selector {
    margin-bottom: 20px;
}

.address-selector__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-2);
    font-size: 13px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}

.address-selector__label i {
    font-size: 14px;
    color: var(--fasty-red);
}

.address-selector__wrapper {
    position: relative;
    margin-bottom: 20px;
}

.address-selector__select {
    width: 100%;
    padding: 14px 48px 14px 18px;
    font-family: var(--font-family-2);
    font-size: 15px;
    font-weight: 600;
    color: var(--opet-dark);
    background-color: var(--fasty-white);
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.address-selector__select:focus {
    outline: none;
    border-color: var(--fasty-yellow);
    box-shadow: 0 0 0 4px rgba(254, 212, 26, 0.2);
}

.address-selector__select:hover {
    border-color: rgba(254, 212, 26, 0.6);
}

.address-selector__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--fasty-yellow) 0%, #f0c800 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-selector__icon i {
    font-size: 11px;
    color: var(--opet-dark);
}

@media (max-width: 575.98px) {
    .address-selector__select {
        padding: 12px 44px 12px 14px;
        font-size: 14px;
        border-radius: 12px;
    }

    .address-selector__icon {
        right: 12px;
        width: 26px;
        height: 26px;
    }
}



.fav-add-btn.added-wishlist i {
    color: var(--fasty-red);
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.fav-add-btn.added-wishlist:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}


.product-card .product-name {
    min-height: 41px;
}


/*27 şuabat revizyonları*/

.search-result-item {
    position: relative;
}
.search-result-content {
    max-width: calc(100% - 200px);
}

.search-result-thumb {
    width: auto;
    height: 70px;
    aspect-ratio: 1; 
}

.search-result-meta {
   flex-direction: column;
    align-items: end;
    position: absolute;
    bottom: 15px;
    right: 20px; 
}

@media (min-width:992px) and (max-width:1199.98px) {
   .search-result-content {
        max-width: unset;
    } 

    .search-result-meta {
        flex-direction: column;
        align-items: start;
        position: unset;
        bottom: unset;
        right: unset; 
    }

    .search-result-thumb {
        width: 70px;
        height: auto;
        aspect-ratio: 4/5; 
    }
}
@media (max-width:575.98px) {
   .search-result-content {
        max-width: unset;
    } 

    .search-result-meta {
        flex-direction: column;
        align-items: start;
        position: unset;
        bottom: unset;
        right: unset; 
    }

    .search-result-thumb {
        width: 70px;
        height: auto;
        aspect-ratio: 4/5; 
    }
}