/* =========================================
   1. GENEL AYARLAR VE DEĞİŞKENLER
   ========================================= */
:root {
    --ana-renk: #e3006d; 
    --koyu-renk: #111111; 
    --gri-ton: #f4f4f4;   
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--gri-ton);
    color: #333;
    overflow-x: hidden;
}

a { text-decoration: none; }

/* =========================================
   2. NAVBAR (ÜST MENÜ)
   ========================================= */
.navbar-brand img { height: 38px; width: auto; }
.nav-link { font-weight: 500; transition: color 0.3s ease; }
.nav-link:hover { color: var(--ana-renk) !important; }
.bg-dark { background-color: var(--koyu-renk) !important; }

.eva-navbar { padding-top: 8px; padding-bottom: 8px; }
.eva-navbar.sticky-top { z-index: 1040; }
.eva-navbar .container { gap: 6px; }

/* Nav linkler - tek satır, kompakt */
.eva-navbar .navbar-nav .nav-link {
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 8px 9px !important;
    color: #fff;
    position: relative;
    white-space: nowrap;
}
.eva-navbar .navbar-nav .nav-link.active {
    color: var(--ana-renk) !important;
}
.eva-navbar .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 2px;
    height: 2px;
    background: var(--ana-renk);
    border-radius: 2px;
}
.eva-navbar .dropdown-toggle::after {
    margin-left: 0.25em;
    vertical-align: 0.16em;
    border-top-width: 0.3em;
    border-right-width: 0.3em;
    border-left-width: 0.3em;
    opacity: 0.7;
}

/* Dropdown menüler */
.eva-navbar .dropdown-menu {
    z-index: 1030;
}
.eva-dropdown {
    background: #1a1d23;
    border: 1px solid #2a2d33;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
    margin-top: 4px;
}
.eva-dropdown .dropdown-item {
    color: #e8e8e8;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}
.eva-dropdown .dropdown-item small {
    color: rgba(255, 255, 255, 0.45) !important;
    transition: color 0.2s ease;
}
.eva-dropdown .dropdown-item:hover,
.eva-dropdown .dropdown-item:focus,
.eva-dropdown .dropdown-item.active {
    background: rgba(227, 0, 109, 0.15);
    color: #fff;
    border-left-color: var(--ana-renk);
}
.eva-dropdown .dropdown-item:hover small,
.eva-dropdown .dropdown-item:focus small,
.eva-dropdown .dropdown-item.active small {
    color: rgba(255, 255, 255, 0.75) !important;
}
.eva-dropdown .dropdown-divider {
    border-top: 1px solid #2a2d33;
    margin: 6px 0;
}
.eva-dropdown-header {
    color: var(--ana-renk);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 6px 18px 4px;
    text-transform: uppercase;
}

/* Katalog - ince çerçeveli, kompakt */
.eva-katalog-link {
    color: var(--ana-renk) !important;
    font-weight: 700 !important;
    border: 1px solid var(--ana-renk);
    border-radius: 5px;
    padding: 6px 11px !important;
    transition: all 0.25s ease;
}
.eva-katalog-link:hover,
.eva-katalog-link:focus {
    background: var(--ana-renk);
    color: #fff !important;
}

/* Sepet butonu - kompakt versiyon */
.eva-navbar .btn-custom {
    padding: 6px 14px;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-width: 1px;
    border-radius: 5px;
    white-space: nowrap;
}
.eva-navbar .btn-custom i { font-size: 0.85rem; }

/* Ürün ara butonu - kompakt */
.eva-navbar .gs-nav-btn {
    padding: 6px 11px !important;
    font-size: 0.72rem !important;
    border-radius: 5px !important;
}
.eva-navbar .gs-nav-btn i { font-size: 0.78rem !important; }

/* Mega menu (MAKİNELER) - desktop'ta 2 kolon */
@media (min-width: 1200px) {
    .eva-mega-menu {
        min-width: 460px;
        padding: 12px 0;
    }
    .eva-mega-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 14px;
        padding: 0 4px;
    }
    .eva-navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Geniş ekran için ekstra sıkışıklık önleme */
@media (min-width: 1400px) {
    .eva-navbar .navbar-nav .nav-link {
        font-size: 0.78rem;
        padding: 8px 11px !important;
    }
}

/* Tablet/mobil (hamburger menu açıkken) */
@media (max-width: 1199.98px) {
    /* Açılan menünün kendi içinde scroll olsun, sayfa scroll'unu engellemesin */
    .eva-navbar .navbar-collapse {
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        background: #111111;
        margin: 0 -12px;
        padding: 4px 16px 16px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .eva-navbar .navbar-collapse::-webkit-scrollbar { width: 4px; }
    .eva-navbar .navbar-collapse::-webkit-scrollbar-thumb {
        background: rgba(227, 0, 109, 0.5);
        border-radius: 2px;
    }

    .eva-navbar .navbar-nav {
        padding-top: 8px;
        gap: 2px;
    }
    .eva-navbar .navbar-nav .nav-link {
        padding: 11px 14px !important;
        white-space: normal;
        font-size: 0.82rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
    }
    .eva-navbar .navbar-nav .nav-link.active::after {
        display: none;
    }
    .eva-navbar .navbar-nav .nav-link.active {
        background: rgba(227, 0, 109, 0.12);
        border-left: 3px solid var(--ana-renk);
        padding-left: 11px !important;
    }
    .eva-navbar .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
        opacity: 0.6;
    }

    /* Dropdown içerikleri açıldığında (collapsed mode) */
    .eva-dropdown {
        background: rgba(255,255,255,0.03);
        border: none;
        box-shadow: none;
        margin: 4px 0 8px 0;
        padding: 6px 0;
        border-left: 2px solid var(--ana-renk);
        border-radius: 0;
        min-width: 0;
        width: 100%;
    }
    .eva-dropdown .dropdown-item {
        padding: 9px 18px;
        font-size: 0.82rem;
        white-space: normal;
        border-left: none;
    }
    .eva-dropdown .dropdown-item small {
        font-size: 0.68rem !important;
    }
    .eva-dropdown-header {
        padding: 8px 18px 4px;
        font-size: 0.66rem;
    }
    .eva-mega-menu {
        padding: 4px 0 !important;
    }
    .eva-mega-grid { display: block; }
    .eva-mega-grid > div + div {
        margin-top: 6px;
        padding-top: 4px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    /* Katalog mobilde tam genişlikte düzenli buton */
    .eva-katalog-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin: 12px 0 4px !important;
        padding: 11px 14px !important;
        border-radius: 6px;
        font-size: 0.85rem !important;
    }

    /* Sepet butonu mobilde tam genişlik */
    .eva-navbar .btn-custom {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 8px 0 4px !important;
        width: 100%;
        padding: 11px 14px !important;
        font-size: 0.85rem;
    }
    .eva-navbar .btn-custom i {
        margin-right: 6px;
    }

    /* Ürün ara butonu mobilde gizli (zaten d-xl-none var) */
    .eva-navbar .gs-mobile-btn {
        margin-right: 6px;
    }
}

/* Çok dar mobil ekranlar için ekstra optimizasyon */
@media (max-width: 575.98px) {
    .eva-navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .navbar-brand img { height: 32px; }
    .eva-navbar .navbar-collapse {
        margin: 0 -12px;
        padding: 4px 12px 14px;
    }
}

/* =========================================
   2c. SEPET MODALI - MOBİL OPTİMİZASYONU
   ========================================= */
@media (max-width: 767.98px) {
    /* Mobile'da sepet modali tam ekran ve scrollable */
    #sepetModal .modal-dialog {
        margin: 0;
        max-width: 100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        align-items: stretch;
    }
    #sepetModal .modal-content {
        border-radius: 0;
        height: 100%;
        max-height: 100%;
        border: none;
        display: flex;
        flex-direction: column;
    }
    #sepetModal .modal-header {
        flex-shrink: 0;
        padding: 14px 16px;
    }
    #sepetModal .modal-body {
        flex: 1 1 auto;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 12px;
    }
    #sepetModal .modal-footer {
        flex-shrink: 0;
        padding: 10px 12px;
        border-top: 1px solid #eee;
    }

    /* Mobil sepet tablosu - daha kompakt */
    #sepetModal .table {
        font-size: 12px;
    }
    #sepetModal .table thead { display: none; }
    #sepetModal .table tbody tr {
        display: grid;
        grid-template-columns: 60px 1fr auto;
        gap: 8px;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        align-items: center;
    }
    #sepetModal .table tbody td {
        border: none;
        padding: 0 !important;
    }
    #sepetModal .table tbody td:nth-child(1) {
        grid-row: 1 / 3;
    }
    #sepetModal .table tbody td:nth-child(2) {
        grid-column: 2 / 4;
    }
    #sepetModal .table tbody td:nth-child(3) {
        grid-column: 2;
        text-align: left !important;
    }
    #sepetModal .table tbody td:nth-child(4) {
        grid-column: 3;
        text-align: right !important;
        font-size: 13px;
    }
    #sepetModal .table tbody td:nth-child(5) {
        grid-column: 4;
        position: absolute;
        top: 8px;
        right: 8px;
    }
    #sepetModal .table tbody tr {
        position: relative;
    }
    #sepetModal .table img {
        width: 56px !important;
        height: 56px !important;
    }

    #sepetModal .modal-footer .fs-4 {
        font-size: 1.2rem !important;
    }
    #sepetModal .modal-footer .fs-5 {
        font-size: 1rem !important;
    }
}

/* =========================================
   2d. FLOATING CART BAR - MOBİL
   ========================================= */
@media (max-width: 575.98px) {
    #floatingCartBar .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    #floatingCartBar #floatingCartInfo {
        font-size: 12px !important;
    }
    #floatingCartBar button,
    #floatingCartBar a {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }
}

/* =========================================
   2b. KATEGORİ GERİ DÖN BARI (sticky)
   ========================================= */
.kategori-geri-bar {
    position: sticky;
    top: 56px;
    z-index: 1020;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Seri sayfası bölge filtresi (göğüs, sırt, kol vs.) */
.eva-bolge-filtre {
    background: #fafbfc;
    border: 1px solid #e8ebef;
    border-radius: 12px;
    padding: 14px 18px;
}
.eva-bolge-baslik {
    font-size: 0.92rem;
    color: #2d3436;
}
.eva-bolge-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #2d3436;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    line-height: 1;
}
.eva-bolge-btn i {
    font-size: 12px;
    color: var(--bolge-renk, #888);
    transition: color 0.18s ease;
}
.eva-bolge-btn .eva-bolge-sayi {
    background: #f0f0f0;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    transition: all 0.18s ease;
}
.eva-bolge-btn:hover {
    border-color: var(--bolge-renk, #aaa);
    color: var(--bolge-renk, #2d3436);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.eva-bolge-btn.active {
    background: var(--bolge-renk, #e3006d);
    border-color: var(--bolge-renk, #e3006d);
    color: #fff;
}
.eva-bolge-btn.active i { color: #fff; }
.eva-bolge-btn.active .eva-bolge-sayi {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* =========================================
   3. ÖZEL RENK VE BUTONLAR
   ========================================= */
.text-primary-custom { color: var(--ana-renk) !important; }

.btn-custom {
    background-color: var(--ana-renk);
    color: white;
    border: 2px solid var(--ana-renk);
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: transparent;
    color: var(--ana-renk);
    border-color: var(--ana-renk);
}

/* =========================================
   4. SLIDER VE KAPAK GÖRSELLERİ
   ========================================= */
.carousel { background-color: #111; }
.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: initial;
    z-index: 10;
}

.page-header {
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.header-urunler { background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('image/1.webp'); }
.header-hizmetler { background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('image/2.webp'); }
.header-kurumsal { background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('image/3.webp'); }
.header-iletisim { background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('image/4.webp'); }

/* =========================================
   5. KATEGORİ VE ÜRÜN KARTLARI
   ========================================= */
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    border-radius: 10px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

/* Kapak Görselleri İçin Güncelleme (Kesilmeyi Önler) */
.category-card .card-img-top {
    height: 250px;
    object-fit: contain; /* Cover yerine contain yaptık */
    padding: 15px; /* Makine çeperlere yapışmasın diye pay verdik */
    transition: transform 0.5s ease;
}

.category-card:hover .card-img-top { transform: scale(1.05); }

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    padding: 0;
    border-radius: 10px;
    background: #f7f7f7;
}

/* =========================================
   6. SABİT İLETİŞİM BUTONLARI
   ========================================= */
.whatsapp-float, .instagram-float {
    position: fixed;
    width: 70px; height: 70px; right: 40px; color: #FFF;
    border-radius: 50px; text-align: center; font-size: 40px; 
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3); z-index: 1000;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}

.whatsapp-float { bottom: 40px; background-color: #25d366; }
.whatsapp-float:hover { background-color: #128C7E; color: #FFF; transform: scale(1.1); }

.instagram-float { bottom: 125px; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.instagram-float:hover { color: #FFF; transform: scale(1.1); box-shadow: 0 0 15px rgba(214, 36, 159, 0.5); }

/* =========================================
   7. DİĞER BİLEŞENLER VE MOBİL UYUM
   ========================================= */
.bg-light { background-color: #ffffff !important; }
.form-control:focus, .form-select:focus { border-color: var(--ana-renk); box-shadow: 0 0 0 0.25rem rgba(227, 0, 109, 0.25); }
.bg-black { background-color: #000 !important; }
.footer-link { transition: all 0.3s ease; }
.footer-link:hover { color: var(--ana-renk) !important; padding-left: 5px; }
.social-icons a i { transition: color 0.3s ease; }
.social-icons a:hover i { color: var(--ana-renk) !important; }

/* Adet seçici - spinner ok gizle */
.adet-input::-webkit-outer-spin-button,
.adet-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.adet-input { -moz-appearance: textfield; }
.adet-secici .btn:hover { background-color: var(--ana-renk); border-color: var(--ana-renk); color: #fff; }

@media (max-width: 768px) {
    .carousel-caption h1 { font-size: 2.5rem; }
    .page-header h1 { font-size: 2rem; }
    .whatsapp-float, .instagram-float { width: 60px; height: 60px; right: 20px; font-size: 35px; }
    .whatsapp-float { bottom: 20px; }
    .instagram-float { bottom: 95px; }
}

/* =========================================
   8. ÜRÜN DETAY MODALI
   ========================================= */
#urunDetayModal .modal-content {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}

#productList .card,
#aramaSonuclari .card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#productList .card:hover,
#aramaSonuclari .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12) !important;
}

.pdm-img-col {
    background: #000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.pdm-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pdm-img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pdm-img:hover {
    transform: scale(1.05);
}

/* Uzun açıklamalarda görselin altında boşluk kalmasın: masaüstünde görsel kaydırırken sabit kalsın */
@media (min-width: 992px) {
    .pdm-img-wrap {
        position: sticky;
        top: 0;
        align-self: flex-start;
    }
}

.pdm-info-col {
    background: #fff;
}

.pdm-info {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pdm-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pdm-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1d23 0%, #2d3038 100%);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', monospace;
}

.pdm-kategori {
    display: inline-block;
    background: #f0f0f4;
    color: #666;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.pdm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1d23;
    margin-bottom: 6px;
    line-height: 1.3;
}

.pdm-specs {
    flex: 1;
    margin-bottom: 20px;
}

.pdm-specs-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1d23;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--ana-renk);
    display: inline-block;
}

.pdm-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.pdm-spec-table tr:nth-child(even) td {
    background: #fafafa;
}

.pdm-spec-table td {
    padding: 10px 14px;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.pdm-spec-label {
    font-weight: 600;
    color: #444;
    width: 45%;
    white-space: nowrap;
}

.pdm-spec-value {
    color: #1a1d23;
    font-weight: 500;
}

.pdm-ozet {
    margin-bottom: 20px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}
.pdm-ozet-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pdm-ozet-list li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    border-bottom: 1px solid #f4f4f4;
}
.pdm-ozet-list li:last-child {
    border-bottom: none;
}
.pdm-ozet-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 7px;
    color: #e3006d;
    font-size: 11px;
}

.pdm-renk-sec, .paket-renk-sec {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}
.pdm-renk-baslik, .paket-renk-baslik {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    margin-bottom: 10px;
}
.pdm-renk-grid, .paket-renk-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.renk-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.renk-swatch i {
    display: none;
    font-size: 12px;
}
.renk-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.renk-swatch.secili {
    border: 3px solid var(--ana-renk);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ana-renk);
    transform: scale(1.1);
}
.renk-swatch.secili i {
    display: block;
}
.pdm-renk-secili, .paket-renk-secili {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.pdm-bottom {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pdm-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ana-renk);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pdm-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pdm-cart-btn {
    flex: 1;
    min-width: 160px;
    background: linear-gradient(135deg, var(--ana-renk) 0%, #c2005c 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(227, 0, 109, 0.3);
}
.pdm-cart-btn:hover {
    background: linear-gradient(135deg, #c2005c 0%, #a3004d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 0, 109, 0.4);
    color: #fff;
}

.pdm-wp-btn {
    flex: 1;
    min-width: 160px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.pdm-wp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0d6b5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    color: #fff;
}

@media (max-width: 991px) {
    .pdm-img-col {
        min-height: 0;
    }
    .pdm-info {
        padding: 24px 20px;
    }
    .pdm-title {
        font-size: 1.25rem;
    }
    .pdm-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .pdm-actions {
        flex-direction: column;
    }
    .pdm-cart-btn, .pdm-wp-btn {
        min-width: auto;
        text-align: center;
    }
}

/* =========================================
   9. GLOBAL ÜRÜN ARAMA
   ========================================= */
.gs-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.gs-nav-btn:hover {
    background: var(--ana-renk);
    border-color: var(--ana-renk);
}
.gs-nav-btn i {
    font-size: 14px;
}
.gs-mobile-btn {
    padding: 8px 12px;
    margin-right: 8px;
    order: 2;
}

.gs-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    backdrop-filter: blur(4px);
}
.gs-overlay.gs-active {
    opacity: 1;
    visibility: visible;
}

.gs-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    width: 94%;
    max-width: 720px;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.2s ease 0.05s, transform 0.25s ease;
}
.gs-active .gs-container {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.gs-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.gs-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.gs-input-icon {
    position: absolute;
    left: 14px;
    color: #bbb;
    font-size: 15px;
    pointer-events: none;
}

.gs-input {
    width: 100%;
    border: none;
    outline: none;
    background: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 12px 40px 12px 42px;
    border-radius: 10px;
    border: 2px solid #eee;
    transition: border-color 0.2s;
}
.gs-input:focus {
    border-color: var(--ana-renk);
}
.gs-input::placeholder {
    color: #bbb;
    font-size: 14px;
}

.gs-clear-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}
.gs-clear-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.gs-close-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.2s;
    flex-shrink: 0;
}
.gs-close-btn:hover {
    background: #f0f0f0;
    color: var(--ana-renk);
}

.gs-count {
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.gs-results {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    min-height: 200px;
    max-height: 55vh;
}

.gs-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
}

.gs-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gs-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.15s;
}
.gs-card:hover {
    background: #f5f5f8;
}

.gs-card-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f8fa;
    padding: 4px;
    flex-shrink: 0;
}

.gs-card-info {
    flex: 1;
    min-width: 0;
}

.gs-card-code {
    font-weight: 700;
    font-size: 14px;
    color: #1a1d23;
    font-family: 'Poppins', monospace;
}

.gs-card-name {
    font-size: 13px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gs-card-cat {
    font-size: 11px;
    color: #999;
}

.gs-card-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--ana-renk);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .gs-container {
        width: 98%;
        max-height: 90vh;
        border-radius: 12px;
    }
    .gs-input::placeholder {
        font-size: 12px;
    }
    .gs-card-img {
        width: 48px;
        height: 48px;
    }
}

/* =========================================
   9a. SEPETE EKLENDİ - BUTON FEEDBACK
   ========================================= */
.btn.eva-eklendi-aktif {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: transparent !important;
    pointer-events: none;
    position: relative;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn.eva-eklendi-aktif::after {
    content: '\2713  Eklendi!';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: inherit;
    font-family: inherit;
    pointer-events: none;
    animation: evaEklendiPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes evaEklendiPop {
    0%   { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1);    opacity: 1; }
}

/* =========================================
   9b. EKİPMAN TİPİ HIZLI FİLTRE (urunler.html)
   ========================================= */
.eva-tip-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-bottom: 1px solid #eee;
}

.eva-tip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.eva-tip-card {
    --tip-renk: #e3006d;
    background: #fff;
    border: 2px solid #ececec;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.eva-tip-card:hover { color: inherit; text-decoration: none; }
.eva-tip-card.aktif:hover { color: #fff; }

.eva-tip-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--tip-renk);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.eva-tip-card:hover {
    transform: translateY(-3px);
    border-color: var(--tip-renk);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.eva-tip-card.aktif {
    border-color: var(--tip-renk);
    background: var(--tip-renk);
    color: #fff;
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.eva-tip-card.aktif .eva-tip-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.eva-tip-card.aktif .eva-tip-aciklama {
    color: rgba(255,255,255,0.85);
}

.eva-tip-card.aktif .eva-tip-sayi {
    background: rgba(255,255,255,0.22);
    color: #fff;
}

.eva-tip-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--tip-renk) 12%, white);
    color: var(--tip-renk);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

@supports not (background: color-mix(in srgb, red, blue)) {
    .eva-tip-icon { background: rgba(227,0,109,0.10); }
}

.eva-tip-text {
    flex: 1;
    min-width: 0;
}

.eva-tip-ad {
    font-weight: 700;
    font-size: 15px;
    color: #1a1d23;
    line-height: 1.2;
    margin-bottom: 3px;
}

.eva-tip-card.aktif .eva-tip-ad { color: #fff; }

.eva-tip-aciklama {
    font-size: 12px;
    color: #888;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.eva-tip-sayi {
    background: #f3f3f5;
    color: #555;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 999px;
    flex-shrink: 0;
    min-width: 38px;
    text-align: center;
    transition: all 0.2s ease;
}

.eva-tip-sonuc {
    margin-top: 22px;
    padding: 22px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    animation: evaTipFadeIn 0.25s ease-out;
}

.eva-tip-seri-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e3e3e8;
}

.eva-tip-seri-tab {
    --tip-renk: #e3006d;
    background: #f5f5f8;
    color: #444;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}
.eva-tip-seri-tab:hover {
    background: #ececf2;
    color: #1a1d23;
    border-color: rgba(0,0,0,0.05);
}
.eva-tip-seri-tab.aktif {
    background: var(--tip-renk);
    color: #fff;
    border-color: var(--tip-renk);
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}
.eva-tip-seri-tab .eva-seri-sayi {
    background: rgba(0,0,0,0.08);
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 999px;
    min-width: 22px;
    text-align: center;
}
.eva-tip-seri-tab.aktif .eva-seri-sayi {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

@media (max-width: 575px) {
    .eva-tip-seri-tab { font-size: 11.5px; padding: 6px 10px; }
}

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

.eva-tip-urun-card {
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eva-tip-urun-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10) !important;
}

.eva-seriler-baslik {
    margin-top: 0;
}

@media (max-width: 575px) {
    .eva-tip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .eva-tip-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 12px;
        gap: 10px;
    }
    .eva-tip-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .eva-tip-ad { font-size: 13px; }
    .eva-tip-aciklama { font-size: 11px; -webkit-line-clamp: 3; line-clamp: 3; }
    .eva-tip-sayi {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* =========================================
   10. PAKET KARTI BÖLÜMÜ (ANASAYFA)
   ========================================= */
.paket-section {
    background: linear-gradient(170deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.paket-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(227,0,109,0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(227,0,109,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.paket-section .section-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.paket-section .section-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    margin-bottom: 50px;
}

.paket-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(227,0,109,0.15);
    min-height: 420px;
}
.paket-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}
.paket-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
}
.paket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(227,0,109,0.2);
    border-color: rgba(227,0,109,0.5);
}

.paket-card-header {
    padding: 32px 28px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.paket-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--ana-renk) 0%, #c2005c 100%);
    color: #fff;
}

.paket-card-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.paket-card-header p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.paket-stats {
    padding: 0 28px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.paket-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(227,0,109,0.15);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.paket-stat i {
    color: var(--ana-renk);
    font-size: 11px;
}

.paket-card-footer {
    padding: 0 28px 28px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: auto;
}
.paket-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(135deg, var(--ana-renk), #c2005c);
    color: #fff;
}
.paket-btn:hover {
    background: linear-gradient(135deg, #ff1a80, var(--ana-renk));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227,0,109,0.4);
}

@media (max-width: 991px) {
    .paket-section { padding: 60px 0; }
    .paket-section .section-title { font-size: 1.8rem; }
    .paket-card { min-height: 360px; }
}
@media (max-width: 575px) {
    .paket-card { min-height: 320px; }
}

/* =========================================
   11. PAKET DETAY SAYFASI
   ========================================= */
.paket-hero {
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.paket-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(227,0,109,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.paket-hero .badge-tier {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.paket-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.paket-hero .lead {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.paket-hero-silver,
.paket-hero-gold,
.paket-hero-platinum { background: linear-gradient(170deg, #1a0a14 0%, #0d0d0d 100%); }

.badge-silver,
.badge-gold,
.badge-platinum {
    background: linear-gradient(135deg, var(--ana-renk), #c2005c);
    color: #fff;
}

.paket-kategori-baslik {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1d23;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--ana-renk);
}
.paket-kategori-baslik i {
    color: var(--ana-renk);
    font-size: 1.1rem;
}

.paket-urun-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.paket-urun-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.paket-urun-card .urun-img-wrap {
    background: #f8f8fa;
    padding: 20px;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.paket-urun-card .urun-img-wrap img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.paket-urun-card:hover .urun-img-wrap img {
    transform: scale(1.08);
}
.paket-urun-card .urun-info {
    padding: 16px;
    text-align: center;
}
.paket-urun-card .urun-code {
    display: inline-block;
    background: #1a1d23;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', monospace;
    margin-bottom: 8px;
}
.paket-urun-card .urun-name {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin: 0;
    line-height: 1.3;
}
.paket-urun-card .urun-qty {
    display: inline-block;
    margin-top: 6px;
    background: var(--ana-renk);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
}

.paket-kategori-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
.paket-kategori-section:last-child {
    border-bottom: none;
}

.paket-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.paket-nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.paket-nav-tab:hover, .paket-nav-tab.active {
    background: var(--ana-renk);
    color: #fff;
    border-color: var(--ana-renk);
}

.paket-compare-strip {
    background: #1a1d23;
    padding: 16px 0;
    text-align: center;
}
.paket-compare-strip a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}
.paket-compare-strip a:hover {
    color: var(--ana-renk);
}
.paket-compare-strip a + a {
    margin-left: 30px;
}
.paket-compare-strip a.active-link {
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid var(--ana-renk);
    padding-bottom: 4px;
}

.paket-sepet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--ana-renk), #c2005c);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.paket-sepet-btn:hover {
    background: linear-gradient(135deg, #ff1a80, var(--ana-renk));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227,0,109,0.3);
}

.toplu-sepet-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--ana-renk), #c2005c);
    color: #fff;
    border: 2px solid var(--ana-renk);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(227,0,109,0.3);
}
.toplu-sepet-btn:hover {
    background: linear-gradient(135deg, #ff1a80, var(--ana-renk));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227,0,109,0.4);
}

.toplu-sepet-bar {
    background: rgba(227,0,109,0.08);
    border: 1px solid rgba(227,0,109,0.15);
    border-radius: 16px;
    padding: 20px 28px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .paket-hero h1 { font-size: 1.8rem; }
    .paket-kategori-baslik { font-size: 1.1rem; }
    .paket-urun-card .urun-img-wrap { height: 160px; padding: 14px; }
    .paket-urun-card .urun-img-wrap img { max-height: 120px; }
    .toplu-sepet-btn { font-size: 14px; padding: 14px 24px; }
}