/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-display: swap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    position: relative;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-toggle {
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.menu-toggle:hover {
    background-color: #f8f9fa;
}

.menu-toggle i {
    font-size: 1.5rem;
    color: #333;
}

/* Navigation Phone */
.nav-phone {
    display: flex;
    align-items: center;
    position: absolute;
    left: 70px;
    z-index: 10;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 25px;
    background: linear-gradient(135deg, #D4AF37, #b8941f);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.phone-link:hover {
    background: linear-gradient(135deg, #b8941f, #9d7d1a);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.phone-link i {
    font-size: 0.9rem;
}

/* Navigation Phone */
.nav-phone {
    display: flex;
    align-items: center;
    position: absolute;
    left: 120px; /* Hamburger menüden sonra yerleştir */
    z-index: 10;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white; /* Sürekli beyaz renk */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: #4682B4; /* Sürekli mavi renk arka plan */
    transition: all 0.3s ease;
    transform: translateY(-1px); /* Sürekli hafif yükseltilmiş görünüm */
}

.phone-link:hover {
    background-color: #315B7E; /* Hover'da daha koyu mavi */
    color: white;
    transform: translateY(-2px); /* Hover'da biraz daha yükselt */
}

.phone-link i {
    font-size: 1rem;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-svg {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.logo-text {
    text-align: center;
    line-height: 1.2;
}

.logo-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4682B4;
    text-decoration: none;
}

.logo-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin-top: -2px;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 280px;
}

.search-box:focus-within {
    box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
    background: white;
}

#search-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 8px 15px;
    font-size: 0.9rem;
    width: 100%;
    color: #333;
}

#search-input::placeholder {
    color: #999;
    font-size: 0.85rem;
}

.search-btn {
    background: #D4AF37;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0F204C;
}

.search-btn:hover {
    background: #b8941f;
    transform: scale(1.05);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    margin-top: 5px;
    z-index: 1001;
    border: 1px solid #e9ecef;
}

.suggestions-header {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-tag {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: #D4AF37;
    color: #0F204C;
    border-color: #D4AF37;
}

.nav-spacer {
    width: 50px;
    height: 50px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 70px;
    left: -300px;
    width: 280px;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.dropdown-menu.active {
    left: 0;
}



.dropdown-content {
    padding: 2rem 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-align: left;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    border-left-color: #D4AF37;
    color: #0F204C;
}

.dropdown-link i:first-child {
    margin-right: 1rem;
    width: 20px;
    color: #4682B4;
}

.dropdown-link-special {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 148, 31, 0.1));
    border-left-color: #D4AF37 !important;
    font-weight: 600;
}

.dropdown-link-special:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 148, 31, 0.2));
}

.dropdown-link-special i {
    color: #D4AF37 !important;
}

.dropdown-section {
    position: relative;
}

.dropdown-section-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 2rem;
    color: #333;
    font-weight: 600;
    border-left: 3px solid #D4AF37;
    background-color: #f8f9fa;
    margin-bottom: 0.5rem;
    text-align: left;
}

.dropdown-section-title i {
    margin-right: 1rem;
    width: 20px;
    color: #D4AF37;
}





.submenu-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.8rem 2rem;
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
    margin-left: 1rem;
    text-align: left;
}

.submenu-link:hover {
    background-color: #e9ecef;
    color: #0F204C;
    border-left-color: #D4AF37;
}

.submenu-link i {
    margin-right: 1rem;
    width: 16px;
    color: #D4AF37;
}

/* Overlay for mobile */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: #D4AF37;
    color: #0F204C;
    font-weight: 600;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #128C7E, #0d6b5c);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0F204C;
    border: 2px solid #0F204C;
}

.btn-outline:hover {
    background: #0F204C;
    color: white;
    transform: translateY(-2px);
}

.btn-back {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
}

.btn-back:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}



/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #D4AF37;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Splash Screen Section */
.splash-screen {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 70px;
}

/* Video Background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Video fallback for unsupported browsers */
@supports not (object-fit: cover) {
    .video-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
    }
}

/* === GRADIENT ARKA PLAN ANIMASYONU === */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(15, 32, 76, 0.2) 0%, 
        rgba(26, 58, 107, 0.15) 25%, 
        rgba(45, 27, 61, 0.2) 50%, 
        rgba(26, 58, 107, 0.15) 75%, 
        rgba(15, 32, 76, 0.2) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === PARTIKÜLLER === */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #D4AF37, transparent);
    border-radius: 50%;
    animation: float 20s linear infinite;
    opacity: 0;
}

/* === YILDIZ TOZLARI === */
.stardust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.star {
    position: absolute;
    color: #D4AF37;
    font-size: 8px;
    animation: twinkleStars 3s ease-in-out infinite;
    opacity: 0;
}

.star:nth-child(odd) {
    animation-delay: 0s;
}

.star:nth-child(even) {
    animation-delay: 1.5s;
}

@keyframes twinkleStars {
    0%, 100% { 
        opacity: 0;
        transform: scale(0.5);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(var(--drift)) scale(1);
        opacity: 0;
    }
}

/* === ANA KONTEYNER === */
.splash-container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    text-align: center;
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* === 3D DÖNEN HALKALAR === */
.ring-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 5;
    pointer-events: none;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate3d 10s linear infinite;
}

.ring:nth-child(1) {
    width: 400px;
    height: 400px;
    animation-duration: 8s;
    border-color: rgba(212, 175, 55, 0.4);
}

.ring:nth-child(2) {
    width: 500px;
    height: 500px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring:nth-child(3) {
    width: 600px;
    height: 600px;
    animation-duration: 15s;
    border-color: rgba(212, 175, 55, 0.2);
}

@keyframes rotate3d {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg) rotateX(60deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg) rotateX(60deg);
    }
}

/* Subtitle */
.main-message {
    font-size: 0.9rem;
    color: #f4e5a8;
    margin-top: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
    letter-spacing: 1px;
    font-style: italic;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    position: relative;
    max-width: 90vw;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-message::before,
.main-message::after {
    content: '✦';
    margin: 0 15px;
    font-size: 0.9rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}





/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards, bounce 2s ease-in-out infinite 3.5s;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    z-index: 7;
}

.scroll-down-arrow:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.scroll-down-arrow i {
    color: #D4AF37;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.scroll-down-arrow:hover i {
    transform: translateY(2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Showcase Gallery Section */
.showcase-gallery-section {
    padding: 80px 0;
    background: #F5F5DC;
    position: relative;
}

.showcase-gallery-content {
    text-align: center;
}

.showcase-gallery-header {
    margin-bottom: 3rem;
}

.showcase-gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0F204C;
    margin-bottom: 1rem;
    position: relative;
}

.showcase-gallery-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #D4AF37;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.showcase-gallery-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    width: 120px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 1s ease both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 32, 76, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info {
    color: white;
    text-align: center;
    width: 100%;
}

.gallery-item-code {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.gallery-item-price {
    font-size: 0.7rem;
    opacity: 0.9;
    color: #D4AF37;
}

.showcase-gallery-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.showcase-gallery-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.showcase-gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}



/* Products Section */
.products-section {
    padding: 100px 0;
    background: white;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.order-btn {
    background: #D4AF37;
    color: #0F204C;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.order-btn:hover {
    background: #b8941f;
    transform: scale(1.05);
}

.detail-btn {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.detail-btn:hover {
    background: #5a6268;
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-code {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-price {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.1rem;
}

.product-keywords {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.keyword-tag {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    color: #666;
    display: inline-block;
}

/* Product Detail Section */
.product-detail-section {
    padding: 100px 0;
    background: white;
    min-height: 100vh;
}

.product-detail-header {
    margin-bottom: 2rem;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-image {
    position: sticky;
    top: 120px;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-detail-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.product-detail-specs {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item strong {
    color: #333;
    font-weight: 600;
}

.spec-item span {
    color: #D4AF37;
    font-weight: 600;
}

.product-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.product-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-notice h3 i {
    color: #f39c12;
}

.product-notice ul {
    list-style: none;
    padding: 0;
}

.product-notice li {
    padding: 0.5rem 0;
    color: #856404;
    position: relative;
    padding-left: 1.5rem;
}

.product-notice li::before {
    content: '•';
    color: #f39c12;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-order {
    text-align: center;
}

.btn-order {
    background: #25D366;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-order i {
    font-size: 1.3rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: rgba(15, 32, 76, 0.85);
    color: white;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-left {
    flex-shrink: 0;
    width: 300px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0 0 1rem 0;
    text-align: left;
}

.about-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #D4AF37;
    bottom: -10px;
    left: 0;
    transform: none;
}

.about-image-container {
    position: relative;
    width: 100%;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
}

.about-features {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.feature-item h4 {
    margin-bottom: 0.3rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

/* Hide sections when in product view */
.products-section.active~.main-page-only {
    display: none !important;
}

/* Price List Section */
.price-list-section {
    padding: 100px 0;
    background: white;
    min-height: 100vh;
}

.price-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.price-list-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.price-list-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-list-image {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-list-image h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.price-list-svg {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 10px;
}

.price-list-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-list-info p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.price-list-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 2rem;
}

.price-list-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-list-notice h3 i {
    color: #f39c12;
}

.price-list-notice ul {
    list-style: none;
    padding: 0;
}

.price-list-notice li {
    padding: 0.5rem 0;
    color: #856404;
    position: relative;
    padding-left: 1.5rem;
}

.price-list-notice li::before {
    content: '•';
    color: #f39c12;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.price-list-contact {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr !important;
    gap: 2rem !important;
    align-items: start !important;
}

.contact-left .section-title {
    text-align: left !important;
    margin-bottom: 2rem !important;
}

.contact-left .section-title::after {
    left: 0 !important;
    transform: none !important;
}



.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-top: 0.5rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-map {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-map h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-map p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.map-container {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.btn-map {
    background: linear-gradient(135deg, #D4AF37, #b8941f);
    color: #0F204C;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-map:hover {
    background: linear-gradient(135deg, #b8941f, #9d7d1a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.contact-whatsapp h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-whatsapp p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

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

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #D4AF37;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D4AF37;
}

.footer-link-special {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 148, 31, 0.2));
    border-radius: 25px;
    color: #D4AF37 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link-special:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(184, 148, 31, 0.3));
    transform: translateX(5px);
}

.footer-link-special i {
    color: #D4AF37;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Davetiye Örnekleri Float Button */
.davetiye-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.davetiye-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    padding: 10px;
    transition: all 0.3s ease;
    animation: davetiyePulse 2s infinite;
    border: 3px solid #D4AF37;
}

.davetiye-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    border-color: #b8941f;
}

.davetiye-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes davetiyePulse {
    0% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 0 0 10px rgba(212, 175, 55, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .search-box {
        width: 220px;
    }

    .main-message {
        font-size: 0.8rem;
        max-width: 85vw;
    }

    .showcase-gallery-title {
        font-size: 2rem;
    }

    .gallery-item {
        width: 100px;
        height: 130px;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-top: 25px;
    }

    .ring-container {
        width: 450px;
        height: 450px;
    }

    .ring:nth-child(1) { width: 300px; height: 300px; }
    .ring:nth-child(2) { width: 375px; height: 375px; }
    .ring:nth-child(3) { width: 450px; height: 450px; }





    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        width: 100%;
        left: -100%;
    }

    .logo-svg {
        height: 50px;
        max-width: 180px;
    }

    .search-box {
        width: 180px;
    }

    .nav-center {
        position: static;
        transform: none;
    }

    #search-input {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    #search-input::placeholder {
        font-size: 0.75rem;
    }

    .search-btn {
        width: 28px;
        height: 28px;
    }

    .search-suggestions {
        width: 280px;
        right: -40px;
    }

    .nav-container {
        flex-direction: row;
        height: 60px;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        order: 0;
    }

    .nav-center {
        order: 1;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .search-container {
        order: 2;
    }

    .nav-phone {
        left: 60px;
    }

    .phone-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }



    .main-message {
        font-size: 0.75rem;
        max-width: 80vw;
    }

    .splash-container {
        bottom: 100px;
    }

    .showcase-gallery-section {
        padding: 60px 0;
    }

    .showcase-gallery-title {
        font-size: 1.8rem;
    }

    .showcase-gallery-subtitle {
        font-size: 1rem;
    }

    .gallery-item {
        width: 90px;
        height: 115px;
    }

    .gallery-grid {
        gap: 0.8rem;
    }

    .showcase-gallery-actions {
        gap: 1rem;
    }

    .showcase-gallery-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .subtitle {
        font-size: 0.8rem;
        margin-top: 20px;
        letter-spacing: 1px;
    }

    .ring-container {
        width: 350px;
        height: 350px;
    }

    .ring:nth-child(1) { width: 200px; height: 200px; }
    .ring:nth-child(2) { width: 250px; height: 250px; }
    .ring:nth-child(3) { width: 300px; height: 300px; }

    .scroll-down-arrow {
        width: 45px;
        height: 45px;
        bottom: 25px;
    }

    .scroll-down-arrow i {
        font-size: 1rem;
    }

    .star {
        font-size: 6px;
    }



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

    .catalog-section,
    .products-section,
    .about-section,
    .contact-section,
    .price-list-section {
        padding: 60px 0;
    }



    .category-icon {
        width: 100px;
        height: 100px;
    }

    .category-svg {
        width: 80px;
        height: 80px;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about-left {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-features {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .feature-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
        padding: 0.8rem 1rem;
    }

    .feature-item h4 {
        font-size: 0.8rem;
    }

    .feature-item p {
        font-size: 0.7rem;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-map {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 200px;
    }

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

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

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-image {
        position: static;
    }

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

    .price-list-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-list-image {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .davetiye-float {
        bottom: 20px;
        left: 20px;
    }

    .davetiye-btn {
        width: 70px;
        height: 70px;
    }
}



@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 10px;
        height: 55px;
    }

    .logo-svg {
        height: 45px;
        max-width: 160px;
    }

    .search-box {
        width: 150px;
    }

    .search-btn {
        width: 26px;
        height: 26px;
    }

    .search-suggestions {
        width: 250px;
        right: -50px;
        padding: 0.8rem;
    }

    .nav-phone {
        left: 50px;
    }

    .phone-link {
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    .phone-link span {
        display: none;
    }

    .phone-link i {
        font-size: 1rem;
    }



    .main-message {
        font-size: 0.7rem;
        max-width: 75vw;
    }

    .splash-container {
        bottom: 90px;
    }

    .subtitle {
        font-size: 0.7rem;
        margin-top: 15px;
        letter-spacing: 0.5px;
    }

    .showcase-gallery-section {
        padding: 40px 0;
    }

    .showcase-gallery-title {
        font-size: 1.3rem;
    }

    .showcase-gallery-subtitle {
        font-size: 0.85rem;
    }

    .gallery-item {
        width: 70px;
        height: 90px;
    }

    .gallery-grid {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .showcase-gallery-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .showcase-gallery-btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 16px;
        justify-content: center;
        font-size: 0.8rem;
    }

    .ring-container {
        width: 280px;
        height: 280px;
    }

    .ring:nth-child(1) { width: 150px; height: 150px; }
    .ring:nth-child(2) { width: 200px; height: 200px; }
    .ring:nth-child(3) { width: 250px; height: 250px; }

    .scroll-down-arrow {
        width: 40px;
        height: 40px;
        bottom: 20px;
    }

    .scroll-down-arrow i {
        font-size: 0.9rem;
    }

    .star {
        font-size: 5px;
    }



    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .catalog-section,
    .products-section,
    .about-section,
    .contact-section,
    .price-list-section {
        padding: 40px 0;
    }



    .category-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .category-svg {
        width: 60px;
        height: 60px;
    }

    .about-content {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .about-left {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .about-title {
        font-size: 1.3rem;
        text-align: center;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-features {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .feature-item {
        flex: 1 1 calc(50% - 0.4rem);
        min-width: 120px;
        padding: 0.7rem 0.8rem;
    }

    .feature-item h4 {
        font-size: 0.75rem;
    }

    .feature-item p {
        font-size: 0.65rem;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-map {
        padding: 1rem;
    }

    .map-container iframe {
        height: 150px;
    }

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

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

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-image {
        position: static;
    }

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

    .price-list-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-list-image {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .davetiye-float {
        bottom: 20px;
        left: 20px;
    }

    .davetiye-btn {
        width: 70px;
        height: 70px;
    }

    .star {
        font-size: 4px;
    }
}



@media (max-width: 360px) {


    .main-message {
        font-size: 0.65rem;
        max-width: 70vw;
    }

    .splash-container {
        bottom: 80px;
    }

    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .ring-container {
        width: 220px;
        height: 220px;
    }

    .ring:nth-child(1) { width: 120px; height: 120px; }
    .ring:nth-child(2) { width: 160px; height: 160px; }
    .ring:nth-child(3) { width: 200px; height: 200px; }

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



    .search-box {
        width: 130px;
    }

    .search-suggestions {
        width: 220px;
        right: -60px;
    }

    .logo-svg {
        height: 40px;
        max-width: 140px;
    }
}



/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .logo-svg,
    .category-svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Removed invalid 'at' block and extra closing brace */
.whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}
/* Additional Mobile Optimizations */
/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Improve touch targets */
@media (max-width: 768px) {

    .btn,
    .dropdown-link,
    .submenu-link,
    .product-card {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better tap highlighting */
    .btn,
    .product-card,
    .dropdown-link {
        -webkit-tap-highlight-color: rgba(70, 130, 180, 0.3);
    }

    /* Prevent text selection on interactive elements */
    .btn,
    .product-card,
    .menu-toggle {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Improve form inputs on mobile */
    input[type="text"],
    input[type="search"] {
        font-size: 16px;
        /* Prevents zoom on iOS */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }

    /* Better focus states for accessibility */
    .btn:focus,
    .dropdown-link:focus,
    .menu-toggle:focus {
        outline: 2px solid #4682B4;
        outline-offset: 2px;
    }

    /* Optimize animations for mobile */
    .product-card {
        will-change: transform;
    }

    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }


    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .search-box {
            background: #2d3748;
            color: white;
        }

        #search-input {
            color: white;
        }

        #search-input::placeholder {
            color: #a0aec0;
        }
    }
}

/* Print styles */
@media print {

    .header,
    .whatsapp-float,
    .dropdown-menu {
        display: none !important;
    }

    .section-title {
        page-break-after: avoid;
    }

    .product-card {
        page-break-inside: avoid;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #4682B4;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus management */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #4682B4;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Düşük performans modu */
@media (prefers-reduced-motion: reduce) {
    .animated-bg,
    .particle,
    .ring {
        animation: none;
    }

    .video-bg {
        display: none;
    }

    .animated-bg {
        background: linear-gradient(45deg, 
            rgba(15, 32, 76, 0.9) 0%, 
            rgba(26, 58, 107, 0.8) 25%, 
            rgba(45, 27, 61, 0.9) 50%, 
            rgba(26, 58, 107, 0.8) 75%, 
            rgba(15, 32, 76, 0.9) 100%);
    }

    .main-message {
        opacity: 1;
    }

    .main-message::before,
    .main-message::after {
        animation: none;
    }

    .scroll-down-arrow {
        opacity: 1;
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }

    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }

    .splash-container {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #fff;
        border-radius: 10px;
        padding: 2rem;
    }
}/* M
ouse Trail Effect */
.mouse-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #D4AF37, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: scale(0);
    animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Cursor glow effect */
body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
}

.custom-cursor.clicking {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(212, 175, 55, 1), rgba(212, 175, 55, 0.4), transparent);
}

/* Hover effects enhancement */
.btn:hover,
.product-card:hover,
.dropdown-link:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Disable custom cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .custom-cursor {
        display: none;
    }
    
    .mouse-trail {
        display: none;
    }
}

/* Price List Images Mobile Styles */
@media (max-width: 768px) {
    .price-list-images {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price-list-image h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .price-list-images {
        gap: 1rem;
    }
    
    .price-list-image {
        padding: 1rem;
    }
    
    .price-list-image h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}