/* Genel Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sepet Popup Gizle */
.hidden {
    display: none;
}

/* Sepet Animasyonu */
@keyframes bounce {
    0%, 100% {
        transform: translateY(-10%);
    }
    50% {
        transform: translateY(0);
    }
}

.bounce {
    animation: bounce 0.3s;
}
/* Alt Menü (Mobilde Alt Kısımda Sabit Menü) Stil Ayarları */
.fixed {
    padding: 1rem 0.5rem; /* Menü yüksekliği artırıldı */
}

.fixed a {
    font-size: 0.875rem; /* Yazı boyutu ayarlandı */
    color: #4a5568; /* Varsayılan renk */
    transition: color 0.3s ease; /* Renk geçiş efekti eklendi */
}

.fixed a:hover {
    color: #3b82f6; /* Hover rengi */
}

.fixed i {
    font-size: 1.25rem; /* İkon boyutu artırıldı */
    display: block;
    margin-bottom: 0.25rem; /* İkon ile yazı arası boşluk */
}
/* Kazıma tamamlandığında animasyon */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-in-out forwards;
}

#scratchCanvas {
    background-color: rgba(0, 0, 0, 0.5);
    touch-action: none;
}
/* Genel Header Tasarımı */
.custom-header {
    background: #fff;
    color: #333;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.custom-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
}

.navbar {
    display: flex;
}

.navbar-menu {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.navbar-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: normal;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.navbar-menu li a:hover {
    color: #007bff;
}

/* Sticky Menü */
.sticky-menu {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 999;
}

.sticky-menu ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sticky-menu ul li a {
    color: #333;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    text-transform: uppercase;
}

.sticky-menu ul li a:hover {
    color: #007bff;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .navbar-menu {
        display: none; /* Mobilde menü gizlensin */
    }

    .sticky-menu {
        display: block; /* Alt menü mobilde görünür */
    }
}
