  html {
            scroll-behavior: smooth;
        }
 /* Custom Header ve Menü */
    .custom-header {
        width: 100%;
        background-color: #283458;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        color: white;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .custom-menu-toggle {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .custom-menu-toggle i {
        font-size: 24px;
        margin-right: 8px;
    }

    .custom-menu-toggle span {
        font-size: 18px;
    }

    .custom-home-icon {
        font-size: 24px;
    }

    /* Sağdan kayan menü */
.custom-menu {
    position: fixed;
    top: 0; /* En üstten başlasın */
    right: -100%;
    height: 100%;
    width: 80%;
    max-width: 250px;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 9999; /* En yüksek z-index */
    transition: right 0.4s ease;
}
    .custom-menu.open {
        right: 0; /* Menü açılınca ekrana gelir */
    }

    .custom-menu a {
        display: block;
        padding: 15px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #ddd;
        font-size: 28px;
    }

    .custom-menu a:hover {
        background-color: #f4f4f4;
    }

.custom-close-btn {
    background-color: #ff5e5e;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    display: block;
}

.custom-close-btn:hover {
    background-color: #ff4b4b;
}

.custom-menu.open {
    display: block;
}

        /* Mobil görünüm */
        @media (max-width: 768px) {
            .custom-header {
                padding: 8px 10px;
            }

            .custom-home-icon i {
                font-size: 24px;
            }

            .custom-home-icon1 i {
                font-size: 34px;
                color: white;
            }


            .custom-menu-toggle i {
                font-size: 28px;
            }

            .custom-menu-toggle span {
                font-size: 28px;
            }

            /*    .custom-menu {
                top: 45px;
                width: 100%;
            }
                */

            .custom-menu a {
                font-size: 18px;
                padding: 8px;
            }
        }

        .slider {
            width: 100%;
            margin-bottom: 20px;
            margin: 0;
            padding: 0;
        }

        .slider-image img {
            width: 100%;
            height: auto;
        }

        h1 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 28px;
        }

        .product {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            margin: 10px 0;
            text-align: center;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            width: 100%;
        }

        .product img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .product h5 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .product p {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }

        .product a {
            display: inline-block;
            margin-top: 15px;
            padding: 15px 25px;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 10px;
            font-size: 18px;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .product a:hover {
            background-color: #0056b3;
        }


        @media (max-width: 480px) {
            .product {
                width: 100%;
            }

            h1 {
                font-size: 28px;
            }

            .product h5 {
                font-size: 28px;
            }

            .product p {
                font-size: 28px;
            }

            .product a {
                font-size: 20px;
                padding: 10px 18px;
                background-color: #ff9800;
                border-radius: 10px;
                font-weight: bold;
                border: 2px solid #fff;
                transition: background-color 0.3s ease, transform 0.2s ease;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
            }
        }

        .promo-banner {
            background-color: #ff9800;
            color: #fff;
            text-align: center;
            padding: 20px 0;
            font-size: 20px;
            font-weight: bold;
            animation: blink 1.5s linear infinite;
        }

        @keyframes blink {
            0%, 50%, 100% {
                opacity: 1;
            }
            25%, 75% {
                opacity: 0.5;
            }
        }



    .lightning-effect {
        font-weight: bold;
        position: relative;
        color: #000;
        font-size: 24px;
        text-transform: uppercase;
        overflow: hidden;
        animation: glow 1.5s infinite alternate;
    }

    .lightning-effect::before {
        content: '';
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
        animation: lightning-strike 2s infinite ease-in-out;
    }

    @keyframes glow {
        0% {
            text-shadow: 0 0 10px rgba(255, 255, 255, 0), 0 0 20px rgba(255, 255, 255, 0), 0 0 30px rgba(255, 255, 255, 0);
        }
        100% {
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 1);
        }
    }

    @keyframes lightning-strike {
        0% {
            top: -100%;
        }
        50% {
            top: 100%;
        }
        100% {
            top: -100%;
        }
    }

  .arrow-down {
    display: inline-block;
    margin: 0 10px;
    animation: bounce 1s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
  }

.carousel-indicators li {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.carousel-indicators .active {
    background-color: #007bff;
}

.zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    padding: 5px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}
.zoom-icon:hover {
    transform: scale(1.1);
}

.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-modal img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

        .original-price {
    text-decoration: line-through;
    color: gray;
    font-weight: bold;
    font-size: 20px;
}

.discounted-price {
    color: green;
    font-weight: bold;
    font-size: 24px;
}
ßßß
