html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.text-shadow-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
}

.globe-text {
    position: absolute;
    top: 50%;
    left: 63%;
    transform: translateY(-50%) translateX(120px);
    z-index: 5;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

@media (max-width: 768px) {
    .globe-text {
        position: absolute !important;
        top: 20% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        z-index: 5;
    }

    #globeViz canvas {
        transform: translateY(-40px);

    }


    .globe-text h2 {
        font-size: 1.5rem !important;
        line-height: 2rem !important;
    }

    .top-bar {
        display: none;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .globe-text {
        transform: translate(-50%, -50%) translateX(80px) !important;
        z-index: 5;
    }

    .globe-text h2 {
        font-size: 2rem !important;
    }

    #globeViz canvas {
        transform: translateY(-40px);

    }

}

/* Gradient & glow effect (sabit) */
.globe-text h2 span {
    display: block;
    font-weight: bold;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transform: none !important;
    opacity: 1;
}

/* Hamburger menü responsive ayarları */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.desktop-nav {
    display: flex;
}

.mobile-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.mobile-menu.active {
    width: 100vw;
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    top: 60px;
    /* Header yüksekliğine göre ayarlandı */
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    /* Header'a relative position ekliyoruz */
    .header-container {
        position: relative;
        z-index: 1000;
    }
}

.site-filter-button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgb(240 178 26);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.site-filter-button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.site-filter-button:hover .icon {
    transform: translate(4px);
}

.site-filter-button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.site-filter-button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.text-shadow-glow {
    text-shadow: 0 0 6px #fff, 0 0 10px #ffd700, 0 0 15px #ffd700;
}

#globeViz canvas {
    transform: translateY(-40px);

}


#product-grid {
    max-width: 100vw;
    margin: 0 auto;
    border-left: 1px solid #d1d5db;
    box-sizing: border-box;
}

.product {
    border-right: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: filter 0.3s ease, opacity 0.3s ease;
    background-image: url(../assets/product-bg2.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.product.show {
    opacity: 1;
    transform: scale(1);
}

/* Resmi kutuya sığdır */
.product img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
}


/* Kutular için dikdörtgen oran */
#product-grid>.product {
    aspect-ratio: 220 / 160;
    /* Geniş/dik oran */
}


.filter-button {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.6rem 1.2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: rgb(240 178 26);
    color: ghostwhite;
}

@media (max-width: 768px) {
    .filter-button {
        margin: 0 35px;
        
    }
}

.filter-button span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.filter-button:hover span {
    color: black;
}

.filter-button::before,
.filter-button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.filter-button::before {
    content: "";
    background: rgb(92, 89, 89);
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.filter-button:hover::before {
    transform: translate3d(100%, 0, 0);
}


.brand-img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    cursor: pointer;
}

.brand-img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.owl-carousel .item {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}


.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    background-color: rgba(240, 179, 26, 0.5) !important;
    /* Hafif sarı */
    color: white !important;
    border: none;
    width: 48px;
    height: 48px;
    font-size: 1.75rem;
    font-weight: bold;
    border-radius: 9999px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: background-color 0.5s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background-color: rgb(240, 178, 26) !important;
    color: white !important;
}


.owl-nav button.owl-prev {
    margin-left: 10px;
}

.owl-nav button.owl-next {
    margin-right: 10px;
}

.logo-fixed {
    width: 180px;
    max-width: none;
    /* Tailwind'in max-width kuralını geçersiz kılar */
    flex-shrink: 0;/
}

@media (max-width: 1005px) and (min-width: 768px) {
    .site-filter-button {
        display: none !important;
    }
}