* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 2%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: bold;
    color: #1976D2;
    text-decoration: none;
}

.logo img {
    width: 85px;
    height: 85px;
    object-fit: cover;
}

.hamburger {
    margin-right: 135px;
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #2196F3;
    z-index: 1001;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-links.show {
    display: flex;
}

.nav-links li {
    padding: 1rem;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-links li a i {
    font-size: 1.2rem;
}

.nav-links li a:hover {
    color: #2196F3;
    transform: translateY(-2px);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.cart-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon {
    position: relative;
    font-size: 1.8rem;
    color: #2196F3;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
}

.cart-icon:hover {
    transform: scale(1.2);
    background: rgba(33, 150, 243, 0.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* RESİMLER UZAKTAN GÖSTER - ZOOM YOK */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 1.5s ease-in-out;
    /* HİÇBİR ZAMAN ZOOM YAPMA */
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    /* AKTİF OLUNCA DA ZOOM YOK */
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* OVERLAY DAHA AÇIK - RESİM NET GÖRSÜN */
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.4), rgba(33, 150, 243, 0.2));
    z-index: 1;
}

/* Alternatif: Daha az overlay istersen */
.slide.light-overlay::before {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.3), rgba(33, 150, 243, 0.2));
}

/* Alternatif: Sadece alt kısımda overlay istersen */
.slide.bottom-overlay::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 2rem;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: slideDown 1s ease-out;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: slideUp 1s ease-out 0.3s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    animation: buttonBounce 1s ease-out 0.8s both;
}

@keyframes buttonBounce {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.4);
}

.floating-animals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-animal {
    position: absolute;
    font-size: 2.5rem;
    animation: float 8s ease-in-out infinite;
    opacity: 0.8;
}

.floating-animal:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-animal:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.floating-animal:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.floating-animal:nth-child(4) {
    top: 45%;
    right: 25%;
    animation-delay: 1s;
}

.floating-animal:nth-child(5) {
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(10deg) scale(1.2);
    }
    50% {
        transform: translateY(-50px) rotate(-10deg) scale(0.9);
    }
    75% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
    }
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: #2196F3;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1976D2;
    position: relative;
    font-weight: bold;
}

.section-title::after {
    content: '';
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.category-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.1), transparent);
    transition: left 0.8s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(33, 150, 243, 0.2);
    border-color: #2196F3;
}

.category-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #2196F3;
    transition: all 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.1) rotate(5deg);
    border-color: #42A5F5;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
}

.category-card h3 {
    color: #1976D2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-card h3 i {
    font-size: 1.8rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(33, 150, 243, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-weight: bold;
    color: #2196F3;
    font-size: 1.3rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 25px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
    max-height: 50vh;
    overflow-y: auto;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modal-item {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    padding: 1.8rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-item:hover {
    transform: translateY(-5px);
    border-color: #2196F3;
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.2);
}

.modal-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid #2196F3;
}

.modal-item h4 {
    color: #1976D2;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.modal-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1.2rem;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
}

.cart-modal {
    display: none;
    position: fixed;
    z-index: 2500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}

.cart-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.4s ease;
}

.cart-modal-content {
    background: white;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.5s ease;
}

.cart-modal-header {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.cart-modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-modal-body {
    padding: 2rem;
    max-height: 50vh;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 2px solid #f1f2f6;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: #f8f9fa;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: #2196F3;
    font-weight: bold;
}

.cart-item-remove {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.cart-total {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 15px;
    text-align: center;
}

.cart-total h3 {
    color: #1976D2;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cart-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-btn-continue {
    background: #95a5a6;
    color: white;
}

.cart-btn-continue:hover {
    background: #7f8c8d;
}

.cart-btn-order {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.cart-btn-order:hover {
    background: linear-gradient(45deg, #219a52, #27ae60);
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(33, 150, 243, 0.2);
    border-color: #2196F3;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.8rem;
}

.product-price {
    font-size: 1.5rem;
    color: #2196F3;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: linear-gradient(45deg, #1976D2, #2196F3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 5;
}

.footer {
    background: linear-gradient(135deg, #1976D2, #2196F3);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.footer-logo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 2px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.furkatech-logo {
    height: 30px;
}

.footer-copyright .furkatech {
    color: #fff;
    font-weight: 700;
}

.footer-copyright .tecnology {
    color: #00fefb;
    font-weight: 700;
}

.footer-bottom a {
    text-decoration: none;
    color: inherit;
}

.admin-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f5f7fa;
    z-index: 5000;
    overflow-y: auto;
}

.admin-page.show {
    display: block;
}

.admin-header {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.admin-header h1 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-logout {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-logout:hover {
    background: white;
    color: #2196F3;
}

.admin-tabs {
    background: white;
    padding: 0 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    gap: 2rem;
}

.admin-tab {
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-tab:hover {
    color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
}

.admin-tab.active {
    color: #2196F3;
    border-bottom-color: #2196F3;
}

.admin-content {
    padding: 3rem 5%;
    margin: 0 auto;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.admin-card h2 {
    color: #1976D2;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.image-upload-area {
    border: 3px dashed #e1e8ed;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.image-upload-area:hover {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
}

.image-upload-area i {
    font-size: 3rem;
    color: #2196F3;
    margin-bottom: 1rem;
}

.image-preview {
    max-width: 200px;
    max-height: 200px;
    margin: 1rem auto;
    border-radius: 10px;
    display: none;
}

.image-preview.show {
    display: block;
}

.btn-primary {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1976D2, #2196F3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.products-table thead {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
}

.products-table th {
    padding: 1rem;
    text-align: left;
    font-weight: bold;
}

.products-table td {
    padding: 1rem;
    border-bottom: 1px solid #e1e8ed;
}

.products-table tbody tr {
    transition: all 0.3s ease;
}

.products-table tbody tr:hover {
    background: #f8f9fa;
}

.product-img-small {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e1e8ed;
}

.btn-edit {
    background: #FFA726;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 0.5rem;
}

.btn-edit:hover {
    background: #FB8C00;
    transform: translateY(-2px);
}

.btn-delete {
    background: #EF5350;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-delete:hover {
    background: #E53935;
    transform: translateY(-2px);
}

.edit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 6000;
    backdrop-filter: blur(8px);
}

.edit-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.4s ease;
}

.edit-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
}

.edit-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e1e8ed;
}

.edit-modal-header h2 {
    color: #1976D2;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close-btn {
    background: #EF5350;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: #E53935;
    transform: rotate(90deg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid #2196F3;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: #2196F3;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    color: #1976D2;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-weight: 500;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    font-size: 1.5rem;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2196F3;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.empty-state i {
    font-size: 5rem;
    color: #e1e8ed;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.slider-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-item:hover {
    border-color: #2196F3;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.1);
}

.slider-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.slider-item-info {
    flex: 1;
}

.slider-item-info h4 {
    color: #1976D2;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.slider-item-info p {
    color: #666;
    font-size: 0.95rem;
}

.slider-item-actions {
    display: flex;
    gap: 0.5rem;
}

.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.95), rgba(21, 101, 192, 0.95));
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.login-modal.show {
    display: flex;
}

.login-modal-content {
    background: white;
    border-radius: 30px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: loginSlideUp 0.5s ease;
    overflow: hidden;
}

@keyframes loginSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    background: linear-gradient(135deg, #2196F3, #1565C0);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.login-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.login-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-header h2 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.login-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.login-form {
    padding: 2.5rem 2rem;
}

.login-input-group {
    position: relative;
    margin-bottom: 2rem;
}

.login-input-group i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #2196F3;
    font-size: 1.2rem;
}

.login-input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.login-input-group input:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2196F3, #1565C0);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.login-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.login-footer i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

.image-source-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    background: #f5f5f5;
    padding: 0.5rem;
    border-radius: 12px;
}

.toggle-btn {
    flex: 1;
    padding: 0.8rem 1rem;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.toggle-btn:hover {
    background: white;
    color: #2196F3;
}

.toggle-btn.active {
    background: white;
    border-color: #2196F3;
    color: #2196F3;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.toggle-btn i {
    margin-right: 0.5rem;
}

.image-url-area {
    margin-top: 1rem;
}

.image-url-area input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.image-url-area input:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.image-url-area input::placeholder {
    color: #999;
}

.contact-form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    display: none;
}

.contact-form-success.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@media (max-width: 768px) {
    .hamburger {
        margin-right: 20px;
    }
    
    .navbar {
        padding: 1rem 3%;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 3%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .floating-animal {
        font-size: 2rem;
    }

    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .admin-tabs {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .admin-form {
        grid-template-columns: 1fr;
    }

    .products-table {
        font-size: 0.9rem;
    }

    .products-table th,
    .products-table td {
        padding: 0.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .login-modal-content {
        margin: 1rem;
    }
    
    .login-header {
        padding: 2rem 1.5rem;
    }
    
    .login-logo {
        width: 80px;
        height: 80px;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
    
    .login-form {
        padding: 2rem 1.5rem;
    }
    
    .image-source-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    #contact-section > div > div {
        grid-template-columns: 1fr !important;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: #2196F3;
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #1976D2, #2196F3);
}

/* Bildirim Stilleri */
.notification {
    position: fixed;
    top: -100px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99999;
    min-width: 300px;
    transition: all 0.3s ease;
    border-left: 4px solid #2196F3;
}

.notification.show {
    top: 90px;
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-success {
    border-left-color: #4CAF50;
}

.notification-success i {
    color: #4CAF50;
    font-size: 1.5rem;
}

.notification-error {
    border-left-color: #f44336;
}

.notification-error i {
    color: #f44336;
    font-size: 1.5rem;
}

.notification-info {
    border-left-color: #2196F3;
}

.notification-info i {
    color: #2196F3;
    font-size: 1.5rem;
}

.notification span {
    color: #333;
    font-weight: 500;
    flex: 1;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .notification.show {
        top: 80px;
    }
}