:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --gold-primary: #d4af37;
    --gold-light: #f1e5ac;
    --gold-dark: #996515;
    --gold-gradient: linear-gradient(135deg, #f1e5ac 0%, #d4af37 45%, #996515 100%);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-max: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 100%),
        linear-gradient(rgba(20, 20, 20, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 20, 20, 0.5) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    color: var(--text-white);
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 125px;
    /* Offset for fixed ticker (35px) + header (80px) */
    /* Anti-copy / No selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
}

/* Allow selection for address and phone numbers only */
.footer-contact p,
.contact-number-link,
.maintenance-actions p,
.modal-header h2,
.footer-contact h4 {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

img {
    pointer-events: none;
    /* Photos cannot be dragged or right-clicked for saving easy */
    -webkit-user-drag: none;
}

h1,
h2,
h3,
.logo-main {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Ticker --- */
.top-ticker {
    background: #000;
    border-bottom: 1px solid var(--gold-dark);
    height: 45px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 15s linear infinite;
    align-items: center;
    height: 100%;
    /* GPU hızlandırma ve performans optimizasyonu */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.ticker-item {
    padding: 0 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.ticker-item .price {
    color: var(--gold-primary);
    margin-left: 5px;
}

.trend.up {
    color: #00ff00;
}

.trend.down {
    color: #ff3333;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Header --- */
#main-header {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

#main-header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    /* Daha güçlü bulanıklık */
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0.3rem 0;
    /* Daha ince ve zarif scroll hali */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    /* Daha premium harf boşluğu */
    color: transparent;
    background: linear-gradient(90deg, #996515 0%, #d4af37 50%, #f1e5ac 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldShimmer 5s linear infinite;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-gray);
    margin-top: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    /* Biraz daha geniş boşluk */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.8rem;
    /* Biraz daha küçük ve elit */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    padding: 0.8rem 0;
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--gold-primary);
    letter-spacing: 4px;
    /* Hover'da harfler hafifçe açılır (Premium etkisi) */
    opacity: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.nav-links a.active {
    color: var(--gold-primary);
    opacity: 1;
    letter-spacing: 3px;
    font-weight: 600;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Cart Button Styles */
.cart-wrapper {
    position: relative;
}

.cart-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0);
}

.cart-btn:hover {
    color: var(--gold-primary);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.cart-btn svg {
    transition: transform 0.3s ease;
}

.cart-btn:hover svg {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
}

/* --- Mobile Menu Toggle --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--gold-primary);
    border-radius: 10px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    transform: translateX(10px);
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* --- Cart Notification & Animations --- */
.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid var(--gold-primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    z-index: 3000;
    backdrop-filter: blur(10px);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-msg {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes cartBump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.cart-badge.bump {
    animation: cartBump 0.3s ease-out;
}

/* --- Cart Drawer Styles --- */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-drawer.active {
    display: block;
    opacity: 1;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100%;
    background: #0f0f0f;
    border-left: 1px solid var(--gold-dark);
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-drawer.active .cart-drawer-content {
    right: 0;
}

.cart-drawer-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    letter-spacing: 3px;
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.close-cart {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--gold-primary);
    font-weight: 700;
    margin: 5px 0 12px 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    width: fit-content;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    color: var(--gold-primary);
}

.qty-val {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold-primary);
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: transparent;
    border: none;
    color: #ff4444;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    padding: 10px;
}

.remove-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* --- Payment Modal Styles --- */
.payment-maintenance {
    max-width: 600px !important;
    text-align: center;
}

.maintenance-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.maintenance-text {
    margin-bottom: 3rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.maintenance-text p {
    margin-bottom: 1rem;
}

.maintenance-actions.single-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 2rem;
}

.maintenance-actions.single-contact p {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.contact-number-link {
    font-size: 2rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    letter-spacing: 2px;
}

.contact-number-link:hover {
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .contact-number-link {
        font-size: 1.5rem;
    }
}

.cart-drawer-footer {
    padding: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background: #0a0a0a;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

#cartTotalAmount {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.btn-checkout {
    width: 100%;
    padding: 1.2rem;
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-weight: 800;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-checkout:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-gray);
    margin-top: 4rem;
}

@media (max-width: 480px) {
    .cart-drawer-content {
        width: 100%;
    }
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--gold-dark);
    color: var(--gold-primary);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-buy:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: #000;
}

.toast-btn {
    margin-left: 15px;
    background: var(--gold-primary);
    color: #000;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.toast-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* --- Hero Section --- */
#hero {
    height: calc(100vh - 125px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* Video kalitesini artıran görsel efektler */
    filter: contrast(1.1) brightness(0.9) saturate(1.1);
    background: #000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradyan + Hafif gren efekti (video piksellenmesini gizlemek için) */
    background:
        linear-gradient(0deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 1) 100%),
        url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.85;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.sub-title {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.main-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.text-gold {
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn-gold-large {
    background: var(--gold-gradient);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-gold-large:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.btn-glass {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
}

/* --- Trust Bar --- */
.trust-bar {
    background: #000;
    padding: 4rem 0;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

/* --- Products --- */
#products {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 5rem;
}

.badge {
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-img {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    overflow: hidden;
    /* Dışarı taşmayı engeller */
    border-radius: 8px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Çerçeveyi doldurur ve kenarları kırpar */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
    /* Hover'da hafif bir zoom derinliği */
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
}

.gold-placeholder {
    width: 140px;
    height: 200px;
    background: var(--gold-gradient);
    border-radius: 8px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
}

.gold-placeholder::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-primary);
    color: #000;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-buy:hover {
    background: var(--gold-primary);
    color: #000;
}

/* --- Services --- */
#services {
    padding: 10rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.service-list {
    list-style: none;
    margin-top: 3rem;
}

.service-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-list .icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.service-list li:hover .icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.service-list .icon svg {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.service-list h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.service-list p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.service-visual {
    position: relative;
}

.visual-card {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1610375461246-83df859d849d?auto=format&fit=crop&q=80&w=2670');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gold-dark);
}

.visual-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.visual-text {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
}

.visual-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* --- News --- */
#news {
    padding: 8rem 0;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header-centered h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* --- Typographic Manifesto Section --- */
#manifesto {
    padding: 12rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.manifesto-wrapper {
    position: relative;
}

.manifesto-bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 15rem;
    /* Biraz büyütüldü */
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05);
    /* Görünürlük artırıldı */
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    z-index: 1;
    animation: manifestoScroll 30s linear infinite;
    /* Hızlandırıldı */
    font-family: 'Inter', sans-serif;
    letter-spacing: 15px;
}

@keyframes manifestoScroll {
    0% {
        transform: translateY(-50%) translateX(0);
    }

    100% {
        transform: translateY(-50%) translateX(-50%);
    }
}

.manifesto-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.manifesto-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    /* Daha rafine ve küçük boyut */
    line-height: 1.4;
    font-weight: 400;
    /* Daha zarif bir ağırlık */
    font-style: italic;
    color: var(--text-white);
}

.m-line {
    display: block;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.m-line.gold-text {
    font-weight: 700;
    font-style: normal;
    letter-spacing: 12px;
    background: linear-gradient(90deg,
            #996515 0%,
            #d4af37 25%,
            #f1e5ac 50%,
            #d4af37 75%,
            #996515 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
    text-transform: uppercase;
}

@keyframes goldShimmer {
    to {
        background-position: 200% center;
    }
}

.manifesto-footer {
    margin-top: 5rem;
    position: relative;
    display: inline-block;
}

.manifesto-footer::before,
.manifesto-footer::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--gold-primary);
}

.manifesto-footer::after {
    top: auto;
    bottom: -20px;
}

.manifesto-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 400;
}

/* --- Gold Dust Particles --- */
.manifesto-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px var(--gold-primary);
    opacity: 0;
}

.p1 {
    top: 20%;
    left: 10%;
    animation: particleFloat 15s infinite;
}

.p2 {
    top: 60%;
    left: 80%;
    animation: particleFloat 22s infinite 2s;
}

.p3 {
    top: 30%;
    left: 40%;
    animation: particleFloat 18s infinite 1s;
}

.p4 {
    top: 80%;
    left: 20%;
    animation: particleFloat 25s infinite 3s;
}

.p5 {
    top: 10%;
    left: 70%;
    animation: particleFloat 20s infinite 4s;
}

.p6 {
    top: 50%;
    left: 50%;
    animation: particleFloat 14s infinite 5s;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    50% {
        transform: translate(100px, -100px);
        opacity: 0.3;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translate(200px, -200px);
        opacity: 0;
    }
}

.manifesto-title .m-line {
    animation: textFloat 6s ease-in-out infinite alternate;
}

.manifesto-title .m-line:nth-child(2) {
    animation-delay: 1s;
}

.manifesto-title .m-line:nth-child(3) {
    animation-delay: 2s;
}

@keyframes textFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

/* Mobile Manifesto */
@media (max-width: 768px) {
    #manifesto {
        padding: 8rem 0;
    }

    .manifesto-bg-text {
        font-size: 10rem;
    }

    .manifesto-title {
        font-size: 3.5rem;
    }

    .manifesto-footer p {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

/* --- Footer --- */
footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--gold-dark);
    background: #000;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-gray);
    margin: 1.5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold-primary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Corporate Section --- */
#corporate {
    padding: 10rem 0;
    background: #000;
}

.corporate-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.corporate-img {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gold-dark);
}

.corporate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.corporate-img:hover img {
    transform: scale(1.05);
}

.corporate-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.corporate-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.corporate-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}

.stat-txt {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #000;
}

/* --- Certificates/Logos Section --- */
.certificates-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #000 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
}

.certificates-section h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.certificates-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Logo Carousel - Odaklanmış ve Genişletilmiş Tasarım */
.logo-carousel {
    margin: 5rem auto 0;
    max-width: 1000px;
    /* Biraz daha genişlettik */
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

/* Yanlardaki maskeleme */
.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    /* Geçişleri biraz daha yumuşattık */
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #000 0%, transparent 100%);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(-90deg, #000 0%, transparent 100%);
}

.logo-track {
    display: flex;
    gap: 100px;
    justify-content: flex-start;
    /* Animasyon için sola yaslı başlattık */
    /* İlk logonun merkezlenmesi için offset: (1000px - 350px) / 2 = 325px */
    transform: translateX(325px);
    animation: logoStepScroll 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Hover durumunda animasyonu durdur ve odaklanmayı sağla */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    width: 350px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 0;
    transition: all 0.5s ease;
    overflow: hidden;
    /* Otomatik odaklanma animasyonu */
    animation: logoFocusAuto 12s infinite;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.6) contrast(0.9);
}

/* --- SENKRONİZASYON DÜZELTMESİ (Negatif Delay) --- */
.logo-item:nth-child(1) {
    animation-delay: 0s;
}

.logo-item:nth-child(2) {
    animation-delay: -9.1s;
}

/* Gecikme telafisi eklendi */
.logo-item:nth-child(3) {
    animation-delay: -6.1s;
}

.logo-item:nth-child(4) {
    animation-delay: -3.1s;
}

.logo-item:nth-child(5) {
    animation-delay: 0s;
}

.logo-item:nth-child(6) {
    animation-delay: -9.1s;
}

.logo-item:nth-child(7) {
    animation-delay: -6.1s;
}

.logo-item:nth-child(8) {
    animation-delay: -3.1s;
}



/* Odaklanma (Parlatma ve Büyütme) Animasyonu */
@keyframes logoFocusAuto {
    0% {
        transform: scale(1);
        border-color: rgba(212, 175, 55, 0.15);
        box-shadow: none;
        z-index: 1;
        filter: brightness(0.6) contrast(0.9);
    }

    /* Kademeli olarak parlamaya başlar (Fade-in) */
    5%,
    15% {
        transform: scale(1.1);
        border-color: var(--gold-primary);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
        z-index: 10;
        filter: brightness(1.2) contrast(1.1);
    }

    /* Kademeli olarak sönmeye başlar (Fade-out) */
    20%,
    100% {
        transform: scale(1);
        border-color: rgba(212, 175, 55, 0.15);
        box-shadow: none;
        z-index: 1;
        filter: brightness(0.6) contrast(0.9);
    }
}

/* Mouse ile üzerine gelince yine de durdurabilmek için */
.logo-carousel:hover .logo-track,
.logo-carousel:hover .logo-item {
    animation-play-state: paused;
}

/* Özel padding'leri kaldırıyoruz */
.logo-item img[src="tuvagold.png"] {
    background: #000;
}

/* 4 Fotoğraf için Tam Merkezleme Koordinatları */
/* Başlangıç (Offset) = 325px */
/* Her adım = logo(350) + gap(100) = 450px */
@keyframes logoStepScroll {

    /* 1. Logo (325px) */
    0%,
    20% {
        transform: translateX(325px);
    }

    /* 2. Logo (325 - 450 = -125px) */
    25%,
    45% {
        transform: translateX(-125px);
    }

    /* 3. Logo (-125 - 450 = -575px) */
    50%,
    70% {
        transform: translateX(-575px);
    }

    /* 4. Logo (-575 - 450 = -1025px) */
    75%,
    95% {
        transform: translateX(-1025px);
    }

    /* Başa dönüş */
    100% {
        transform: translateX(325px);
    }
}



/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 1;
}

.modal-content {
    background: #111;
    border: 1px solid var(--gold-dark);
    width: 100%;
    max-width: 900px;
    margin: 4rem auto;
    border-radius: 20px;
    position: relative;
    padding: 4rem;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: var(--gold-primary);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    z-index: 100;
    padding: 10px;
    /* Daha kolay tıklama için */
}

.close-modal:hover {
    transform: rotate(90deg) scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modal-header h2 {
    font-size: 2.5rem;
    margin-top: 1rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.modal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-section p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.modal-full-section {
    padding: 3rem;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 15px;
    margin-bottom: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.modal-full-section h3 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-item strong {
    display: block;
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.modal-about h3 {
    margin-bottom: 1.5rem;
}

.modal-about p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
        border-radius: 12px;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 1.8rem;
    }
}

/* --- Responsive Adjustments --- */

@media (max-width: 1024px) {
    :root {
        --container-max: 960px;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .main-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 105px;
        /* Adjust for ticker + header on mobile */
    }

    .container {
        padding: 0 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .header-actions .btn-outline,
    .header-actions .btn-gold {
        display: none;
        /* Hide action buttons on mobile to clear space or move them into menu */
    }

    .main-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .sub-title {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn-gold-large,
    .hero-cta .btn-glass {
        width: 100%;
        text-align: center;
    }

    /* Trust Bar Optimization */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Corporate Heritage Optimization */
    .corporate-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .corporate-img {
        height: 300px;
        margin-bottom: 2rem;
    }

    .corporate-stats {
        gap: 2rem;
        justify-content: center;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .corporate-text h2 {
        font-size: 2.2rem;
    }

    /* Logo Slider Mobile */
    .certificates-section h3 {
        font-size: 2.22rem;
        padding: 0 1rem;
    }

    .logo-carousel {
        max-width: 100%;
        padding: 1rem 0;
    }

    .logo-item {
        width: 250px;
        height: 180px;
    }

    @keyframes logoStepScroll {

        0%,
        20% {
            transform: translateX(calc(50vw - 125px));
        }

        25%,
        45% {
            transform: translateX(calc(50vw - 125px - 350px));
        }

        50%,
        70% {
            transform: translateX(calc(50vw - 125px - 700px));
        }

        75%,
        95% {
            transform: translateX(calc(50vw - 125px - 1050px));
        }

        100% {
            transform: translateX(calc(50vw - 125px));
        }
    }

    /* Services & Pricing Optimization */
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .manifesto-title {
        font-size: 3rem;
    }

    .manifesto-bg-text {
        font-size: clamp(4rem, 15vw, 6rem);
        letter-spacing: 5px;
    }

    .manifesto-particles {
        display: none;
        /* Mobilde görsel kargaşayı ve performans kaybını önlemek için */
    }

    .manifesto-title .m-line {
        letter-spacing: 2px;
    }

    .service-content-split {
        grid-template-columns: 1fr;
    }

    .service-visual {
        height: 300px;
    }

    /* Footer Optimization */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {

    /* Genel ayarlar */
    body {
        padding-top: 95px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Header daha kompakt */
    .container-header {
        height: 55px;
    }

    #main-header {
        top: 40px;
    }

    /* Ticker daha küçük */
    .top-ticker {
        height: 40px;
    }

    .ticker-item {
        padding: 0 1.2rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    /* Logo küçült */
    .logo-main {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    /* Hero daha kompakt */
    .main-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .sub-title {
        font-size: 0.85rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    /* Butonlar touch-friendly */
    .btn-gold-large,
    .btn-glass {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .hero-cta {
        gap: 1rem;
    }

    /* Trust bar daha kompakt */
    .trust-bar {
        padding: 2rem 0;
    }

    .trust-val {
        font-size: 1.8rem;
    }

    .trust-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* Ürünler bölümü */
    #products {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .product-card {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .product-img {
        height: 180px;
        margin-bottom: 1.5rem;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .btn-buy {
        padding: 0.9rem;
        font-size: 0.85rem;
        min-height: 48px;
    }

    /* Services bölümü */
    #services {
        padding: 4rem 0;
    }

    .service-list li {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-list .icon {
        width: 50px;
        height: 50px;
    }

    .service-list h4 {
        font-size: 1rem;
    }

    .service-list p {
        font-size: 0.9rem;
    }

    .visual-card {
        height: 250px;
    }

    /* Manifesto */
    #manifesto {
        padding: 5rem 0;
    }

    .manifesto-title {
        font-size: 1.8rem;
    }

    .m-line.gold-text {
        letter-spacing: 4px;
    }

    .manifesto-footer p {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Corporate */
    #corporate {
        padding: 4rem 0;
    }

    .corporate-text h2 {
        font-size: 1.8rem;
    }

    .corporate-img {
        height: 220px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .stat-txt {
        font-size: 0.75rem;
    }

    /* Sertifikalar / Logo Carousel */
    .certificates-section {
        padding: 3rem 0;
    }

    .certificates-section h3 {
        font-size: 1.4rem;
        padding: 0 0.5rem;
    }

    .certificates-section p {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .logo-carousel {
        margin-top: 2rem;
        padding: 1rem 0;
    }

    .logo-carousel::before,
    .logo-carousel::after {
        width: 50px;
    }

    .logo-track {
        gap: 15px;
        transform: translateX(calc(50vw - 75px));
    }

    .logo-item {
        width: 140px;
        height: 95px;
        border-radius: 10px;
    }

    .logo-item img {
        filter: brightness(0.8) contrast(1);
    }

    /* Mobilde animasyon basitleştirildi */
    @keyframes logoStepScroll {

        0%,
        20% {
            transform: translateX(calc(50vw - 75px));
        }

        25%,
        45% {
            transform: translateX(calc(50vw - 75px - 155px));
        }

        50%,
        70% {
            transform: translateX(calc(50vw - 75px - 310px));
        }

        75%,
        95% {
            transform: translateX(calc(50vw - 75px - 465px));
        }

        100% {
            transform: translateX(calc(50vw - 75px));
        }
    }

    /* Footer */
    footer {
        padding: 3rem 0 2rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* Sepet & Modal */
    .cart-drawer-content {
        width: 100% !important;
    }

    .cart-drawer-header {
        padding: 1.5rem;
    }

    .cart-items-container {
        padding: 1rem;
    }

    .contact-number-link {
        font-size: 1.3rem;
    }

    /* Navigasyon menüsü */
    .nav-links {
        width: 100%;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 1rem 0;
    }

    /* Genel boşlukları azalt */
    .section-header-centered {
        margin-bottom: 3rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
}

/* Scroll Lock when menu open */
body.menu-open {
    overflow: hidden;
}