   
   /****************************Index.php************************************************/
   
   
   :root {
            --primary-color: #5d7e9b;
            --secondary-color: #4caf50;
            --accent-color: #ff9800;
            --light-gray: #f8f9fa;
            --border-color: #dee2e6;
        }
        body, button, input, select, textarea, h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', 'Segoe UI', Arial, sans-serif !important;
            font-weight: 400;
            letter-spacing: 0.01em;
        }
        body {
            background-color: #f5f5f5;
        }
        


        .top-bar {
            background-color: #333;
            color: white;
            padding: 2px 0 2px 0;
            font-size: 0.95rem;
        }
        
        .header {
            background-color: white;
            padding: 0px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .search-form {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .search-input {
            border-radius: 25px;
            padding: 10px 20px;
            border: 1px solid var(--border-color);
            width: 100%;
        }
        
        .search-button {
            position: absolute;
            right: 5px;
            top: 5px;
            background-color: var(--secondary-color);
            border: none;
            color: white;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-menu {
            background-color: white;
            border-bottom: 1px solid var(--border-color);
            padding: 10px 0;
            position: relative;
            z-index: 100;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            padding: 8px 15px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        /* Dropdown menü stilleri */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 10px 0;
            z-index: 1;
            top: 100%;
            left: 0;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-item {
            display: block;
            padding: 8px 15px;
            color: #333;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .dropdown-item:hover {
            background-color: var(--light-gray);
            color: var(--primary-color);
        }
        
        .dropdown .nav-link i {
            margin-left: 5px;
            font-size: 10px;
            transition: transform 0.3s;
        }
        
        .dropdown:hover .nav-link i {
            transform: rotate(180deg);
        } 

        .nav-item.dropdown:hover .dropdown-menu.show-on-hover {
            display: block;
        }

        .dropdown-menu.show-on-hover {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            z-index: 1000;
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 10px 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        
        .filter-section {
            background-color: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .filter-button {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 8px 15px;
            margin-right: 5px;
            margin-bottom: 5px;
            font-size: 0.9rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .filter-button:hover, .filter-button.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 20px;
            height: 100%;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .product-image {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .discount-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #dc3545;
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
            height: 48px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-category {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .product-rating {
            margin-bottom: 10px;
            color: #ffc107;
        }
        
        .product-price {
            font-weight: bold;
            font-size: 1.2rem;
            color: var(--secondary-color);
        }
        
        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
            margin-right: 5px;
        }
        
        .category-carousel {
            display: flex;
            overflow-x: auto;
            gap: 15px;
            padding: 15px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) var(--light-gray);
        }
        
        .category-carousel::-webkit-scrollbar {
            height: 6px;
        }
        
        .category-carousel::-webkit-scrollbar-track {
            background: var(--light-gray);
            border-radius: 10px;
        }
        
        .category-carousel::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }
        
        .category-item {
            text-align: center;
            min-width: 100px;
            flex-shrink: 0;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .category-item:hover {
            transform: translateY(-5px);
        }
        
        .category-item img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border-color);
            margin-bottom: 8px;
            transition: border-color 0.3s;
        }
        
        .category-item:hover img {
            border-color: var(--primary-color);
        }
        
        .category-item p {
            font-size: 0.9rem;
            margin: 0;
            color: #333;
        }
        
        .benefits-section {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .benefit-icon {
            width: 40px;
            height: 40px;
            background-color: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-color);
        }
        
        .benefit-text {
            font-size: 0.9rem;
            color: #666;
        }
        
        .benefit-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }
        
        .footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        
        .footer-title {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-link {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        .social-icon {
            width: 35px;
            height: 35px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #ccc;
        }
        
        .admin-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366 !important; /* WhatsApp yeşili */
            color: white !important;
            border: none;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
            z-index: 1000;
            text-decoration: none;
        }
        
        .admin-btn:hover {
            background-color: #128C7E !important;
            transform: scale(1.1);
            color: white !important;
        }
        
        @media (max-width: 768px) {
            .search-form {
                margin-top: 15px;
            }
            
            .nav-menu {
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 5px;
            }
            
            .nav-link {
                display: inline-block;
            }
            
            .dropdown-content {
                position: absolute;
                left: 0;
                width: 100%;
                max-width: 250px;
            }
        }
        .nav-link.dropdown-toggle::after {
            display: none !important;
        }
        .location-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 2px 8px rgba(60,60,100,0.06);
            padding: 10px 22px;
            font-size: 1.08rem;
            color: #333;
            margin-bottom: 18px;
            gap: 8px;
        }
        .location-bar i {
            color: #25D366;
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .change-location-btn {
            color: #25D366;
            font-weight: 600;
            text-decoration: none;
            font-size: 1rem;
            padding: 2px 10px;
            border-radius: 12px;
            transition: background 0.2s;
        }
        .change-location-btn:hover {
            background: #e8f8f1;
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .location-bar { font-size: 0.98rem; padding: 7px 8px; }
            .location-bar i { font-size: 1.1rem; }
        }
        .location-map {
            width: 100%;
            margin: 0 auto 18px auto;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(60,60,100,0.06);
            height: 20vh;
            background: #fff; 
            padding: 0;
            max-width: 100%;
        }
        .location-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 18px;
            display: block;
            pointer-events: auto;
            touch-action: auto;
        }
        #writing-animation-header svg {
            font-family: 'Dancing Script', cursive;
            width: 100%;
            height: 60px;
            display: block;
        }
        .header-text {
            font-size: 90px;
            fill:rgb(221, 225, 228);
            stroke: #2d3e50;
            stroke-width: 4;
            font-weight: 700;
            stroke-dasharray: 1200;
            stroke-dashoffset: 1200;
            animation: draw-header 12s forwards;
        }
        .header-subtitle {
            font-size: 13px;
            fill: rgb(76, 175, 80);
            font-weight: bold;
        }
        @keyframes draw-header {
            to {
                stroke-dashoffset: 0;
            }
        }
        @media (max-width: 768px) {
            .header-text {
                font-size: 38px;
            }
        }




         /****************************Index.php************************************************/  





         