/* ============================================================
   CUSTOM STYLES — Bootstrap 5.3.3 + Font Awesome 6
   Clean, minimal, conflict-free. Let Bootstrap handle the rest.
   ============================================================ */

/* === 1. BASE (body, links, images) === */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
p { margin-bottom: 12px; }
a {
    color: #f97316;
}
a:hover {
    color: #ea580c;
}
img {
    max-width: 100%;
    height: auto;
}

/* === 2. TOP BAR === */
.top-announce-bar {
    background: #1e293b;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 6px 0;
}

/* === 3. HEADER === */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.header-logo img {
    max-height: 50px;
    width: auto;
}
.header-action {
    color: #334155;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-action:hover {
    color: #f97316;
}
.header-action i {
    font-size: 20px;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f97316;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-input {
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    padding: 8px 40px 8px 16px;
}
.search-input:focus {
    border-color: #f97316;
    outline: none;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
}

/* Live Search Dropdown */
.live-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 1070;
    max-height: 400px;
    overflow-y: auto;
}
.live-search-results.active {
    display: block;
}
.live-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: #334155;
    transition: background 0.15s;
    border-bottom: 1px solid #f1f5f9;
}
.live-search-item:last-child {
    border-bottom: none;
}
.live-search-item:hover {
    background: #f8fafc;
    color: #f97316;
}
.live-search-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8fafc;
    flex-shrink: 0;
}
.live-search-item .ls-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}
.live-search-item .ls-price {
    font-size: 12px;
    color: #f97316;
    font-weight: 600;
}
.live-search-all {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #f97316;
    text-decoration: none;
    border-top: 1px solid #e2e8f0;
}
.live-search-all:hover {
    background: #fff7ed;
    color: #ea580c;
}

/* === 4. NAVIGATION === */
.main-nav {
    background: #1e293b;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.nav-link-item {
    color: rgba(255,255,255,0.85);
    padding: 12px 16px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}
.nav-link-item:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.nav-item-dropdown {
    position: relative;
}
.mega-menu,
.dropdown-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    z-index: 1060;
    display: none;
}
.mega-menu {
    left: -200px;
    width: 700px;
}
.nav-item-dropdown:hover > .mega-menu,
.nav-item-dropdown:hover > .dropdown-nav {
    display: block;
}
.mega-menu-item {
    color: #334155;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 8px;
}
.mega-menu-item:hover {
    background: #f8fafc;
    color: #f97316;
}
.mega-menu-item i {
    font-size: 14px;
}
.dropdown-nav {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}
.dropdown-nav a {
    display: block;
    padding: 8px 20px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
}
.dropdown-nav a:hover {
    background: #f8fafc;
    color: #f97316;
}

/* === 5. MOBILE MENU === */
.mobile-menu-btn {
    font-size: 24px;
    color: #334155;
    background: none;
    border: none;
    padding: 4px 8px;
}
.mobile-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
}
.mobile-nav a:hover {
    color: #f97316;
}
.mobile-contact a {
    display: block;
    padding: 8px 0;
    color: #334155;
    text-decoration: none;
}

/* === 6. MOBILE BOTTOM NAV === */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    color: #94a3b8;
    text-decoration: none;
    padding: 4px 12px;
    gap: 2px;
}
.bottom-nav-item i {
    font-size: 18px;
}
.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: #f97316;
}
.bottom-cart-badge {
    position: absolute;
    top: -2px;
    right: 2px;
    background: #f97316;
    color: #fff;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 991.98px) {
    body {
        padding-bottom: 65px;
    }
}
@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* === 7. PAGE HEADER + BREADCRUMB === */
.pg-header {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 28px 0;
}
.pg-header h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
}
.pg-header .breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
}
.pg-header .breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}
.pg-header .breadcrumb a:hover {
    color: #fff;
}
.pg-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.45);
}
.pg-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.35);
}

/* === 8. PRODUCT CARDS === */
.product-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: transparent;
}
.product-card .card-img-top {
    height: 200px;
    object-fit: contain;
    background: #f8fafc;
    padding: 12px;
}
.product-card .card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}
.product-card .card-title a {
    color: #334155;
    text-decoration: none;
}
.product-card .card-title a:hover {
    color: #f97316;
}
.product-card .price-new {
    font-weight: 700;
    color: #f97316;
    font-size: 16px;
}
.product-card .price-old {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 6px;
}
.product-card .badge-discount {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

/* OLD product class support (ul.products > li.product) */
ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
li.product {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
li.product figure {
    margin: 0;
    overflow: hidden;
    background: #f8fafc;
}
li.product figure img,
.img-animi img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
}
li.product h4,
.card.product h4,
.card-body h4,
.product-card h4 {
    padding: 0 12px 12px;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}
li.product h4 a,
.card.product h4 a,
.card-body h4 a,
.product-card h4 a {
    color: #334155;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
li.product h4 a:hover,
.card.product h4 a:hover,
.card-body h4 a:hover,
.product-card h4 a:hover {
    color: #f97316;
}
li.product h4 a:hover {
    color: #f97316;
}
.tag.new {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}
.price-wrap {
    padding: 4px 12px;
}
.price ins {
    font-weight: 700;
    color: #f97316;
    font-size: 16px;
    text-decoration: none;
}
.price del {
    font-size: 13px;
    color: #94a3b8;
    margin-left: 6px;
}
.img-animi {
    position: relative;
    overflow: hidden;
    margin: 0;
}
/* Stok badge */
.stock-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
}

/* === 8B. PRODUCT IMAGE === */
.product-image-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    cursor: zoom-in;
    overflow: hidden;
}
.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 15px;
    transition: transform 0.3s;
}
.product-image-wrap:hover .product-main-img {
    transform: scale(1.8);
    transform-origin: var(--zoom-x, center) var(--zoom-y, center);
}
.zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    pointer-events: none;
    transition: opacity 0.3s;
}
.product-image-wrap:hover .zoom-hint {
    opacity: 0;
}
/* Fullscreen overlay */
.fullscreen-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.fullscreen-overlay.active {
    display: flex;
}
.fullscreen-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    touch-action: pinch-zoom;
}
.fullscreen-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.fullscreen-close:hover {
    background: rgba(255,255,255,0.3);
}
@media (max-width: 991.98px) {
    .product-image-wrap {
        height: 350px;
        cursor: pointer;
    }
    .product-image-wrap:hover .product-main-img {
        transform: none;
    }
}
@media (max-width: 575.98px) {
    .product-image-wrap {
        height: 280px;
    }
}

/* === 9. PRODUCT DETAIL === */
.summary h2 {
    font-size: 22px;
    font-weight: 700;
}
.summary .price-wrap {
    padding: 8px 0;
}
.summary .price ins {
    font-size: 22px;
    font-weight: 700;
    color: #f97316;
}
.summary .price del {
    font-size: 15px;
    color: #94a3b8;
    margin-left: 8px;
}
.summary .stock-badge {
    font-size: 16px;
    padding: 8px 18px;
}
.doviz-karsilik {
    margin-top: 6px;
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #94a3b8;
}
.doviz-karsilik span {
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 500;
}
.doviz-mini {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}
.sepete-ekle-btn {
    background: #f97316;
    border-color: #f97316;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}
.sepete-ekle-btn:hover {
    background: #ea580c;
    border-color: #ea580c;
    color: #fff;
}
.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}
.whatsapp-btn:hover {
    background: #1da851;
    color: #fff;
}
.product-description-section {
    margin-top: 30px;
}

/* === 10. SIDEBAR === */
.sidebar .card,
.sidebar_widget {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}
.widget_title h4,
.widget_title h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f97316;
}
.detail-cat {
    list-style: none;
    padding: 0;
    margin: 0;
}
.detail-cat li {
    margin-bottom: 6px;
}
.detail-cat li a {
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    display: block;
}
.detail-cat li a:hover {
    color: #f97316;
    padding-left: 4px;
}

/* === 11. BLOG === */
.blog-wrap .card {
    border-radius: 12px;
    overflow: hidden;
}
.post-title a {
    color: #334155;
    text-decoration: none;
}
.post-title a:hover {
    color: #f97316;
}
.entry-info {
    font-size: 13px;
    color: #94a3b8;
}
.post-tag a {
    background: #f1f5f9;
    color: #64748b;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    margin-right: 4px;
}
.post-tag a:hover,
.post-tag a.active {
    background: #f97316;
    color: #fff;
}
.blog-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* === 12. FORMS === */
.eticaret-form .form-control {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
}
.eticaret-form .form-control:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.eticaret-form .btn-primary {
    background: #f97316;
    border-color: #f97316;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 8px;
}
.eticaret-form .btn-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
}

/* === 13. CART === */
.cart-table img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8fafc;
}
.cart-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}
.cart-summary .grand-total {
    font-size: 20px;
    font-weight: 700;
    color: #f97316;
}

/* === 14. CHECKOUT === */
.checkout-steps {
    display: flex;
    margin-bottom: 24px;
}
.checkout-steps .step {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: #f1f5f9;
    font-weight: 600;
    color: #94a3b8;
}
.checkout-steps .step.active {
    background: #f97316;
    color: #fff;
}
.checkout-steps .step.done {
    background: #10b981;
    color: #fff;
}
.odeme-yontem-box {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.odeme-yontem-box:hover,
.odeme-yontem-box.active {
    border-color: #f97316;
    background: #fff7ed;
}

/* === 15. ACCOUNT === */
.hesabim-tabs .nav-link {
    font-weight: 600;
    color: #64748b;
}
.hesabim-tabs .nav-link.active {
    color: #f97316;
    border-bottom: 2px solid #f97316;
}

/* === 16. BADGES (order status) === */
.badge-beklemede { background: #f59e0b; color: #fff; }
.badge-odeme_bekleniyor { background: #3b82f6; color: #fff; }
.badge-hazirlaniyor { background: #8b5cf6; color: #fff; }
.badge-kargoda { background: #10b981; color: #fff; }
.badge-teslim_edildi { background: #059669; color: #fff; }
.badge-iptal { background: #ef4444; color: #fff; }
.badge-onaylandi { background: #10b981; color: #fff; }
.badge-reddedildi { background: #ef4444; color: #fff; }

/* === 17. FOOTER === */
.site-footer .footer-main {
    background: #1e293b;
    color: rgba(255,255,255,0.75);
    padding: 48px 0 24px;
}
.footer-logo {
    max-height: 45px;
    width: auto;
}
.footer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f97316;
    display: inline-block;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
}
.footer-links a:hover {
    color: #f97316;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-contact a,
.footer-contact span {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
}
.footer-contact a:hover {
    color: #f97316;
}
.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}
.social-icon:hover {
    background: #f97316;
    color: #fff;
}
.footer-bottom {
    background: rgba(0,0,0,0.15);
    padding: 12px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.badge-item {
    font-size: 12px;
    color: #000;
}

/* === 18. UTILITIES === */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: #f97316;
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1040;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.back-to-top.show {
    display: flex;
}
.back-to-top:hover {
    background: #ea580c;
    color: #fff;
}
.seo-content,
.Google {
    position: absolute;
    left: -9999px;
    overflow: hidden;
    height: 0;
    width: 0;
}
.lang-flags img,
img.ws_lang {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-block;
}

/* === 19. HERO (homepage) === */
.hero-section .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}
.feature-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px;
    transition: all 0.3s;
}
.feature-card:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.feature-card img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.category-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s;
}
.category-card:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.category-card img {
    max-height: 70px;
    width: auto;
}

/* === 20. RESPONSIVE === */
@media (max-width: 991.98px) {
    ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-section .carousel-item img {
        height: auto;
    }
}
@media (max-width: 767.98px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    li.product figure img,
    .img-animi img,
    .product-card .card-img-top {
        height: 150px;
    }
    .pg-header {
        padding: 18px 0;
    }
    .pg-header h1 {
        font-size: 18px;
    }
    .hero-section .carousel-item img {
        height: auto;
    }
    .category-card img {
        max-height: 50px;
    }
    .feature-card {
        padding: 10px;
        font-size: 13px;
    }
}
@media (max-width: 575.98px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    li.product figure img,
    .product-card .card-img-top {
        height: 130px;
    }
    li.product h4 {
        font-size: 11px;
        padding: 0 8px 8px;
    }
    .price ins {
        font-size: 13px;
    }
    .price del {
        font-size: 11px;
    }
}

/* WhatsApp Fixed Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 1040;
    text-decoration: none;
    transition: all 0.3s;
}
.whatsapp-float:hover {
    background: #1da851;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
@media (max-width: 991.98px) {
    .whatsapp-float { bottom: 75px; right: 16px; width: 50px; height: 50px; font-size: 24px; }
}

/* YouTube Fixed Button (WhatsApp'in ustunde) */
.youtube-float {
    position: fixed;
    bottom: 148px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #FF0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(255,0,0,0.4);
    z-index: 1040;
    text-decoration: none;
    transition: all 0.3s;
}
.youtube-float:hover {
    background: #cc0000;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255,0,0,0.5);
}
@media (max-width: 991.98px) {
    .youtube-float { bottom: 135px; right: 16px; width: 50px; height: 50px; font-size: 22px; }
}

/* YouTube video kart (ana sayfa "Son Videolarimiz") */
.yt-video-card {
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.25s ease;
}
.yt-video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #FF0000;
}
.yt-thumb-wrap {
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
}
.yt-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.yt-video-card:hover .yt-thumb-wrap img {
    transform: scale(1.05);
}
.yt-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,0,0,0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding-left: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.25s;
}
.yt-video-card:hover .yt-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Announcement Banner */
.duyuru-band {
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
}
.duyuru-band .container {
    position: relative;
}
.duyuru-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.duyuru-lang {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.duyuru-lang-btn {
    width: 26px;
    height: 26px;
    padding: 0;
    border: none;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    line-height: 0;
    opacity: .55;
    filter: grayscale(60%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .35);
    transition: opacity .2s ease, filter .2s ease, transform .2s ease, box-shadow .2s ease;
}
.duyuru-lang-btn svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.duyuru-lang-btn:hover {
    opacity: .85;
    filter: grayscale(0);
}
.duyuru-lang-btn.active {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.12);
    box-shadow: 0 0 0 2px #fff, 0 2px 5px rgba(0, 0, 0, .3);
}
.duyuru-lang-sep {
    display: none;
}
@media (max-width: 575px){
    .duyuru-lang { right: 8px; }
    .duyuru-lang-btn { width: 24px; height: 24px; }
}

/* ============================================================
   İçerik Koruma (Kopyalama Önleme)
   ============================================================ */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input, textarea, select, [contenteditable="true"] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}
