:root {
    --primary: #c5a059;
    /* Gold/Bronze */
    --primary-dark: #a8874a;
    --bg-dark: #0a0a0c;
    --bg-card: #141418;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass: rgba(20, 20, 24, 0.8);
    --border: rgba(197, 160, 89, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html, body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(197, 160, 89, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
    }

    100% {
        box-shadow: 0 0 5px rgba(197, 160, 89, 0.2);
    }
}

.reveal {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 1 !important;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0; /* Prevent the logo from shrinking */
}

.logo-icon {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.4));
    flex-shrink: 0;
}

.logo {
    font-size: 1.25rem; /* Slightly smaller to fit the long text */
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
    margin-right: 2rem;
}

/* Base sidebar styles to prevent overflow */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 2000;
    padding: 2.5rem;
    transform: translateX(100%);
    transition: var(--transition);
    border-left: 1px solid var(--border);
    visibility: hidden;
}

.cart-sidebar.open {
    transform: translateX(0);
    visibility: visible;
}

.cart-icon-wrapper {
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a20 0%, #0a0a0c 100%);
    position: relative;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #ffffff 40%, #c5a059 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    background: #e6bc6b;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Products Section */
.products {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(145deg, #141418 0%, #0d0d10 100%);
    border-radius: 16px;
    padding: 0;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    animation: glow 2s infinite;
}

.product-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    padding: 0 1.5rem 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    padding: 0 1.5rem;
}

/* Contact */
.contact {
    padding: 8rem 0;
    background: #0d0d10;
}

.contact-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.whatsapp-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

/* Cart Specific Styles */
.cart-icon-wrapper {
    position: relative;
    list-style: none;
}

.cart-btn {
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}

#cartCount {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

@media (max-width: 768px) {
    #cartCount {
        right: 0;
    }
}

.cart-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 3000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    visibility: hidden;
}

.cart-sidebar.open {
    transform: translateX(0);
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.close-cart {
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.cart-item-info p {
    color: var(--primary);
    font-weight: 700;
}

.cart-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.empty-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 3rem;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}


footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stats-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

@media (max-width: 768px) {
    .stats-container {
        gap: 1.5rem;
        padding: 1rem;
    }
    .stats-value {
        font-size: 1.4rem;
    }
}

.product-img {
    width: 100%;
    height: 280px;
    object-fit: contain; /* Görseli kesmeden tamamını sığdırır */
    padding: 1.5rem; /* Kenarlardan boşluk vererek nefes almasını sağlar */
    background: transparent; /* Kartın kendi arkaplan rengiyle bütünleşir */
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    display: block;
}

.product-card:hover .product-img {
    border-color: var(--primary);
}

/* Best Seller Badge */
.best-seller-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #D48F11 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212, 143, 17, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: pulseBadge 2s infinite;
}

.best-seller-badge::before {
    content: '★';
    font-size: 1rem;
    color: #000;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(212, 143, 17, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(212, 143, 17, 0.7); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(212, 143, 17, 0.4); }
}

/* Alternative Best Seller Badge */
.best-seller-badge-alt {
    position: absolute;
    top: 15px;
    left: -1px;
    background: rgba(255, 51, 51, 0.15);
    backdrop-filter: blur(8px);
    color: #ff4d4d;
    padding: 8px 16px;
    border-radius: 0 15px 15px 0;
    border: 1px solid rgba(255, 51, 51, 0.6);
    border-left: none;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
    animation: glowRed 2s infinite alternate;
}

.best-seller-badge-alt::before {
    content: '🔥';
    font-size: 1.1rem;
}

@keyframes glowRed {
    from { box-shadow: 0 0 10px rgba(255, 51, 51, 0.2); }
    to { box-shadow: 0 0 25px rgba(255, 51, 51, 0.7); }
}

/* Product Detail Page Styles */
.product-page-header {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, #1a1a20 0%, #0a0a0c 100%);
}

.product-detail-flex {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.product-image-container {
    flex: 1;
    max-width: 50%;
}

.product-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.product-info-container {
    flex: 1;
    max-width: 50%;
}

/* Product Detail Page: action buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.btn-action-cart {
    background: var(--primary);
    color: #000;
}

.btn-action-cart:hover {
    background: #e6bc6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn-action-wa {
    background: transparent;
    border: 2px solid #25d366;
    color: #25d366;
}

.btn-action-wa:hover {
    background: #25d366;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2.5rem 0;
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--primary);
    width: 80%;
    max-width: 900px;
    border-radius: 15px;
    position: relative;
    animation: fadeInUp 0.5s ease;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: var(--text-muted);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--primary);
}

.modal-body {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.modal-img {
    width: 50%;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.modal-info {
    width: 50%;
}

.modal-info h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-info p {
    border-radius: 4px;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.cart-item-info p {
    color: var(--primary);
    font-weight: 700;
}

.cart-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.empty-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 3rem;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}


footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(10, 10, 12, 0.5) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.stats-item:hover {
    transform: translateY(-5px);
}

.stats-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary);
    background: rgba(197, 160, 89, 0.1);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.stats-item:hover .stats-icon {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.stats-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.stats-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, #c5a059 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.2));
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 2rem;
        margin: 0 1rem 2.5rem;
    }
    .stats-value {
        font-size: 2rem;
    }
}

/* Duplicate .product-img block removed to allow the correct object-fit rule to apply */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2.5rem 0;
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--primary);
    width: 80%;
    max-width: 900px;
    border-radius: 15px;
    position: relative;
    animation: fadeInUp 0.5s ease;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: var(--text-muted);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--primary);
}

.modal-body {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.modal-img {
    width: 50%;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.modal-info {
    width: 50%;
}

.modal-info h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

@media (max-width: 992px) {
    .logo {
        font-size: 1rem;
    }
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.4s ease-in-out;
        z-index: 1050;
        display: flex;
        transform: translateX(100%);
        visibility: hidden;
        margin: 0;
    }
    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }
    .menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
    .menu-btn span {
        width: 30px;
        height: 2px;
        background-color: var(--primary);
        transition: var(--transition);
    }
    .menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-btn.active span:nth-child(2) { opacity: 0; }
    .menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-content h1 { font-size: 2.5rem; }
    .product-grid { grid-template-columns: 1fr; }
    .modal-body { flex-direction: column; }
    .modal-img, .modal-info { width: 100%; }
    .cart-sidebar { width: 100%; max-width: 100%; }
    .lang-switcher { margin-left: 0; margin-top: 1rem; }

    /* Product Detail Mobile Adjustments */
    .product-page-header {
        padding-top: 80px;
    }
    .product-page-header .container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    .product-detail-flex {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .product-image-container {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .product-image-container img {
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }
    .product-info-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1.5rem 3rem;
    }
    .product-info-container h1 {
        font-size: 2rem;
    }
    .contact-info p {
        font-size: 1.2rem;
    }
}
/* Shared Hero Section */
.video-page-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a20 0%, #0a0a0c 100%);
}

.video-page-hero h1 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-content {
    padding: 60px 0;
}

/* Videos Page Styles */
.video-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}
.video-section:last-child { border-bottom: none; }
.video-section h2 { color: var(--primary); margin-bottom: 2rem; font-size: 2rem; text-align: center; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.video-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.video-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.iframe-container { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; }
.iframe-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-info { padding: 1.5rem; text-align: center; }
.video-info h3 { font-size: 1.1rem; color: var(--text-main); }

.lang-switcher {
    display: flex;
    gap: 12px;
    margin-left: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    align-items: center;
}

.lang-switcher span {
    cursor: pointer;
    color: #888;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
    user-select: none;
    line-height: 1;
}

.lang-switcher span:hover {
    color: var(--primary);
    background: rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.2);
}

[lang="tr"] .lang-switcher span:nth-child(1),
[lang="en"] .lang-switcher span:nth-child(2),
[lang="ar"] .lang-switcher span:nth-child(3) {
    color: #000;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .logo-wrapper {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: 20px;
}

