/* Header Styles */
#header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 9998;
    transition: all 0.3s ease;
}

#header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 9998;
}

#header.sticky .header-top {
    display: none;
}

#header.sticky .header-main {
    padding: 10px 0;
}

/* Header Top Styles */
.header-top {
    background-color: #333;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.welcome-text {
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    color: white;
    font-size: 16px;
}

.phone {
    font-weight: bold;
}

.phone.whatsapp {
    color: #25d366;
}

.phone-numbers {
    display: flex;
    gap: 15px;
}

.brand-logos {
    display: flex;
    gap: 10px;
}

.brand-logo {
    height: 30px;
    width: auto;
}

/* Search Box Styles */
.header-top .search-box {
    position: relative;
    max-width: 400px;
}

.header-top .search-box .search-form {
    display: flex;
    align-items: center;
}

.header-top .search-box input {
    padding: 8px 40px 8px 15px;
    border: none;
    border-radius: 20px;
    width: 100%;
    background: white;
    color: #333;
}

.header-top .btn-search {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #e74c3c;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.header-top .btn-search:hover {
    background: #c0392b;
}

/* Header Main Styles */
.header-main {
    background-color: #ffd700;
    padding: 15px 0;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-fallback {
    height: 60px;
    width: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #e74c3c 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo-text-fallback {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.logo-text {
    flex: 1;
    min-width: 0;
    max-width: 400px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #333;
    line-height: 1.2;
}

.logo-text .phone-number {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
    color: #333;
}

.logo-text .tagline {
    font-size: 12px;
    margin: 0;
    color: #666;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    height: 100%;
    min-height: 80px;
}

/* Desktop Menü */
.nav-menu.desktop-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #e74c3c;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn span {
    width: 22px;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover span {
    background-color: #e74c3c;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 10001;
    pointer-events: auto;
}

.mobile-menu.active {
    right: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10001;
    pointer-events: auto;
}

.mobile-menu-header {
    background: #ffd700;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e6c200;
    position: relative;
    z-index: 10003;
}

.mobile-menu-header span {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10004;
    pointer-events: auto;
}

.mobile-menu-close:hover {
    background-color: rgba(0,0,0,0.1);
    color: #e74c3c;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10003;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 10003;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10003;
    pointer-events: auto;
}

.mobile-nav-menu li a:hover {
    background-color: #f8f9fa;
    color: #e74c3c;
    padding-left: 25px;
}

.mobile-nav-menu li a i {
    width: 20px;
    text-align: center;
    color: #e74c3c;
}

/* Mobile Left Menu Styles */
#nav-mobile-left {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

#nav-mobile-left.active {
    left: 0;
}

#imgCikis {
    text-align: right;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.a1menu {
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

.a2menu {
    padding-left: 15px;
}

.a2altmenu {
    padding: 8px 0;
    color: #666;
}

.a3menu {
    padding-left: 15px;
}

.a3altmenu {
    padding: 5px 0;
}

.a3altmenu a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-main {
        padding: 10px 0;
        min-height: auto;
    }
    
    .header-main .row {
        align-items: center;
    }
    
    .logo-section {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        display: flex;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo-text {
        flex: 1;
        margin-right: 15px;
        margin-left: 15px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text .slogan {
        display: none;
    }
    
    .logo-text .tagline {
        font-size: 10px;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        margin-left: auto;
        flex-shrink: 0;
        z-index: 10002;
        transition: opacity 0.3s ease;
        visibility: visible !important;
        padding: 5px;
    }
    
    /* Mobil menü açıkken hamburger ikonunu gizle */
    body.menu-open .mobile-menu-toggle {
        display: none !important;
    }
    
    .main-navigation {
        justify-content: flex-end;
        align-items: center;
        display: flex;
        height: auto;
        min-height: auto;
        padding: 0;
    }
    
    .desktop-menu {
        display: none !important;
    }
    
    /* Mobil menü başlangıçta gizli */
    .mobile-menu {
        display: none !important;
        visibility: hidden !important;
    }
    
    .mobile-menu.active {
        right: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box {
        justify-content: center;
        margin-top: 10px;
    }
    
    .search-form {
        max-width: 100%;
    }
    
    .phone-numbers {
        flex-direction: column;
        gap: 5px;
    }
    
    .brand-logos {
        justify-content: center;
    }
    
    body.sticky-header {
        padding-top: 60px;
    }
    
    #header.sticky .header-main {
        padding: 5px 0;
        min-height: auto;
    }
    
    .product-detail-container {
        flex-direction: column;
    }
    
    .product-image-section {
        flex: none;
    }
    
    /* Mobilde ürün başlıkları */
    .product-info h3 {
        font-size: 14px;
        height: 2.6em;
        line-height: 1.3;
    }
    
    /* Mobilde sayfalama */
    .pagination {
        flex-wrap: wrap;
        gap: 3px;
    }
    
    .pagination li a,
    .pagination li span {
        min-width: 35px;
        height: 35px;
        padding: 6px 8px;
        font-size: 14px;
        cursor: pointer;
    }
    
    .pagination li a:hover {
        background-color: #f8f9fa;
        border-color: #e74c3c;
        color: #e74c3c;
    }
    
    .slide {
        height: 300px;
    }
    
    .slide-content {
        padding: 25px;
        max-width: 90%;
    }
    
    .slide-logo {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .slide-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .slide-content .phone-number {
        font-size: 16px;
    }
    
    .slide-content .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-content .btn {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text .tagline {
        font-size: 11px;
    }
    
    .header-contact {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Menü açıkken body scroll'u engelle */
body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    pointer-events: none;
}

/* Mobil menü overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Sol Menü Stilleri */
.leftBlocks {
    margin-bottom: 20px;
}

.leftBlocks ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.leftBlocks li {
    margin-bottom: 10px;
}

.blockWrapper {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.blockTop {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 2px solid #e6c200;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle-btn {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.menu-toggle-btn:hover {
    background-color: rgba(0,0,0,0.1);
    color: #000;
}

.blockMiddle {
    padding: 0;
}

.menu-dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-dd li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.menu-dd li:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.menu-item-header a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
}

.menu-item-header a:hover {
    background-color: #f8f9fa;
    color: #e74c3c;
    padding-left: 20px;
}

.submenu-toggle {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 12px;
    margin-right: 5px;
}

.submenu-toggle:hover {
    background-color: rgba(0,0,0,0.1);
    color: #000;
}

.menu-dd li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-dd li a:hover {
    background-color: #f8f9fa;
    color: #e74c3c;
    padding-left: 20px;
}

.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: none;
}

.submenu li {
    border-bottom: 1px solid #e9ecef;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu .menu-item-header a {
    font-weight: normal;
    font-size: 13px;
    padding: 10px 15px 10px 25px;
    color: #666;
}

.submenu .menu-item-header a:hover {
    background-color: #e9ecef;
    color: #e74c3c;
    padding-left: 30px;
}

.submenu .submenu {
    background-color: #f1f3f4;
    border-top: 1px solid #dee2e6;
}

.submenu .submenu .menu-item-header a {
    padding: 8px 15px 8px 35px;
    font-size: 12px;
    color: #777;
}

.submenu .submenu .menu-item-header a:hover {
    background-color: #e9ecef;
    color: #e74c3c;
    padding-left: 40px;
}

.submenu li a {
    font-weight: normal;
    font-size: 13px;
    padding: 10px 15px 10px 25px;
    color: #666;
}

.submenu li a:hover {
    background-color: #e9ecef;
    color: #e74c3c;
    padding-left: 30px;
}

.submenu .submenu li a {
    padding: 8px 15px 8px 35px;
    font-size: 12px;
    color: #777;
}

.submenu .submenu li a:hover {
    background-color: #e9ecef;
    color: #e74c3c;
    padding-left: 40px;
}

/* Ürün Kartları */
.product-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
    background-color: white;
}

.product-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 3px;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 3px;
}

.product-info h3 {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    margin: 10px 0;
}

.model {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.product-actions {
    margin-top: 15px;
}

.product-actions .btn {
    margin-right: 5px;
    margin-bottom: 5px;
}

.btn-success {
    background-color: #27ae60;
    border-color: #27ae60;
}

.btn-success:hover {
    background-color: #229954;
    border-color: #229954;
}

/* Ürün Detay Sayfası */
.product-detail-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.product-image-section {
    flex: 0 0 400px;
}

.product-info-section {
    flex: 1;
}

.product-detail-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.product-description {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.related-products {
    margin-top: 40px;
}

/* Sayfalama Stilleri */
.pagination-wrapper {
    margin-top: 30px;
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination li {
    margin: 0 2px;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: white;
    cursor: pointer;
}

.pagination li a {
    cursor: pointer;
    text-decoration: none;
}

.pagination li a:hover {
    background-color: #f8f9fa;
    border-color: #e74c3c;
    color: #e74c3c;
    text-decoration: none;
}

.pagination li span.current {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: white;
    cursor: default;
}

.pagination li span.disabled {
    background-color: #f8f9fa;
    border-color: #ddd;
    color: #999;
    cursor: not-allowed;
    text-decoration: none;
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

.pagination .prev a,
.pagination .next a {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #333;
}

.pagination .prev a:hover,
.pagination .next a:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #333;
}

.pagination-info {
    margin-bottom: 15px;
}

.pagination-info small {
    font-size: 14px;
    color: #666;
}

/* Sayfalama linklerinin daha belirgin olması için */
.pagination li a:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

.pagination li a:active {
    transform: scale(0.95);
}

/* Slider Styles */
.slider-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #ffd700 50%, #e74c3c 75%, #1e3c72 100%);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    z-index: 1;
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.slide-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 3;
    max-width: 600px;
    width: 90%;
}

.slide-logo {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.slide-content .phone-number {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffd700;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-content .subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.9;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-content .btn {
    font-size: 16px;
    padding: 12px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.slide-content .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
}

.slide-content .btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
}

.slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.slide-content .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.slide-content .btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0d6b5a 100%);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: #ffd700;
    border-color: #ffd700;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: #ffd700;
    color: #ffd700;
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .slider-navigation {
        bottom: 15px;
        gap: 15px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}
