@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html, body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* 1. ROOT & BASICS */
:root {
    --bg: #ffffff;
    --gold: #000000;
    --gold-light: #000000;
    --text: #000000;
    --text-dim: #000000;
    --font-serif: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-h: 100px;
    --top-bar-h: 35px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; font-weight: 200; }
html { overflow-x: hidden; }
body { background-color: var(--bg); color: var(--text); font-family: var(--font-sans); font-weight: 800; }

/* PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 8rem);
    color: var(--gold-light);
    letter-spacing: 10px;
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

/* Preloader logo boyutu */
#preloader .preloader-logo img {
    max-height: 48px;
    width: auto;
}

.preloader-tagline {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--text-dim);
    text-transform: uppercase;
    opacity: 0;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(184, 134, 11, 0.2);
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* CURSOR KALDIRILDI - MOBİLDE SORUN YARATIYORDU */
/* #cursor-dot ve #cursor-outline tamamen kaldırıldı */

/* TOP SLOGAN BAR - HIGHEST Z-INDEX */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--top-bar-h);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.top-bar-text {
    color: var(--gold-light);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

header {
    position: fixed;
    top: var(--top-bar-h);
    width: 100%;
    height: var(--header-h);
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9000;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #4b4b4b;
}


header.scrolled {
    top: 0;
    height: 80px;
    background: rgba(75, 75, 75, 0.88); /* aynı renk, hafif transparan */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 21px solid rgb(57 56 56 / 2%);
    padding-top: var(--top-bar-h);
}



header.scrolled .nav-link {
    color: #ffffff;
}
.logo { 
    font-family: var(--font-serif); 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--gold-light); 
    text-decoration: none; 
    position: relative;
    z-index: 9500;
	    max-height: 51px;
    top: -18px;
}

.nav-desktop { display: flex; gap: 30px; align-items: center; }
.nav-item { position: relative; height: var(--header-h); display: flex; align-items: center; }
header.scrolled .nav-item { height: 80px; }
.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 350;
    transition: 0.3s;
	
}
.nav-link:hover { color: var(--gold-light); }

.mega-menu {
    position: fixed;
    top: calc(var(--top-bar-h) + var(--header-h));
    left: 50%;
    width: 900px;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px;
    gap: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(184, 134, 11, 0.1);
    z-index: 9999;

    /* NAV-LINK tipografi */
    color: #000;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 350;
}

/* BAŞLIKLAR: büyük harf kalsın */
.mega-menu h6 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ALT MENÜLER: yazıldığı gibi kalsın */
.mega-menu .mega-col > a {
    text-transform: initial !important;
    letter-spacing: 0 !important;
    font-weight: 400;
    font-size: 0.85rem;
}

header.scrolled .mega-menu {
    top: calc(var(--top-bar-h) + 80px);
}

.nav-item:hover .mega-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-col h6 { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 20px; text-transform: uppercase; }
.mega-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 0.85rem; margin-bottom: 12px; transition: 0.3s; }
.mega-col a:hover { color: #6a6a6a; padding-left: 5px; }

.mega-menu:hover {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-menu::before{
    content:'';
    position:absolute;
    top:-25px;
    left:0;
    width:100%;
    height:25px;
}

/* Dropdown */
.dropdown {
    position: fixed;
    top: calc(var(--top-bar-h) + var(--header-h));
    left: auto;
    width: 220px; 
    background: #ffffff;
    opacity: 0; 
    pointer-events: none; 
    transform: translateY(10px); 
    transition: 0.4s;
    padding: 20px; 
    border: 1px solid rgba(184, 134, 11, 0.1);
    z-index: 9999;
}

header.scrolled .dropdown {
    top: calc(var(--top-bar-h) + 80px);
}

.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: block; color: var(--text-dim); text-decoration: none; font-size: 0.85rem; margin-bottom: 12px; transition: 0.3s; }
.dropdown a:hover { color: white; padding-left: 5px; }

.dropdown::before{
    content:'';
    position:absolute;
    top:-25px;
    left:0;
    width:100%;
    height:25px;
}

.dropdown:hover {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

/* 3. HERO (3 IMAGES AUTO SLIDER) */
.hero { height: 100vh; width: 100%; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-slider-box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: 1.5s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover;  transform: scale(1); }
.hero-content { position: relative; z-index: 10; text-align: center; opacity: 0; }

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 12vw, 15rem);
    line-height: 0.8;
    text-transform: uppercase;
}

.hero-title span {
    font-size: 80px;
    text-transform: none;
    display: inline-block;
    line-height: 1.2;
    transform: translateY(-80px);
}

/* 4. SECTIONS & GAPS */
.slogan-area { padding: 100px 10%; text-align: center; background: var(--bg); }
.slogan-text { font-family: var(--font-serif); font-size: clamp(1.8rem, 5vw, 4.5rem); line-height: 1.2; font-style: italic; }

/* SECTION TITLE - NEW */
.section-intro {
    text-align: center;
    padding: 70px 6% 35px;
    background: var(--bg);
}

.section-intro h2 {
    font-family: var(--font-serif);
    font-size: 31px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.1;
	font-weight: 300
}

.section-intro p {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #000000;
    letter-spacing: 1px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
	font-weight: 200;
}

/* Horizontal Slider */
.h-slider-section { 
    position: relative; 
    background: #ffffff; 
    overflow: hidden;
    padding: 50px 0;
}

.h-track { 
    display: flex; 
    width: 300vw; 
    height: auto;
    will-change: transform; 
}

.slide { 
    width: 100vw; 
    height: auto;
    min-height: 85vh;
    display: flex; 
    align-items: center; 
    padding: 0 4%;
    gap: 24px;
    flex-shrink: 0; 
}

.slide-img { 
    aspect-ratio: 1 / 1;
    width: min(78vh, 1100px);
    max-width: 72%;
    margin-left: -8%;
    height: auto;
    overflow: hidden; 
    border-radius: 10px; 
}

.slide-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.slide-content { 
    width: 35%; 
}

.slide-content h3 { 
    font-family: var(--font-serif); 
    font-size: 37px; 
    color: #000000; 
    margin-bottom: 10px;
	font-weight: 200;
}

.slide-content p { 
    color: #000000; 
    font-size: 1.1rem; 
    line-height: 1.6;
    margin-bottom: 14px;
	    font-weight: 200;
}

/* Craft Section */
.craft-section { padding: 80px 10%; display: flex; align-items: center; gap: 60px; background: var(--bg); }
.craft-left { width: 45%; }
.craft-right { width: 55%; height: 70vh; position: relative; overflow: hidden; border: 1px solid rgba(184, 134, 11, 0.1); border-radius: 10px; }
.craft-img { position: absolute; width: 100%; height: 100%; opacity: 0; transition: 1.2s; }
.craft-img.active { opacity: 1; }
.craft-img img { width: 100%; height: 100%; object-fit: cover; }

/* 5. BLOG & REFS */
.blog-section { 
    padding: 100px 6%; 
    background: #ffffff; 
    position: relative; 
    z-index: 200;
    overflow: visible;
}

.blog-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin: 60px auto 0;
    max-width: 1400px;
}

.blog-card { 
    background: var(--bg); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    transition: 0.5s; 
    overflow: hidden;
    display: block;
    border-radius: 10px;
}

.blog-card:hover { border-color: var(--gold); transform: translateY(-10px); }
.blog-card img { width: 100%; height: 300px; object-fit: cover; display: block; }
.blog-content { padding: 30px; }
.blog-content h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-light); margin-bottom: 15px; }
.blog-content p { color: #ffffff; line-height: 1.6; }

.ref-section { padding: 100px 6%; background: var(--bg); text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.ref-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 50px; margin-top: 60px; align-items: center; }
.ref-item img { 
    width: 100%; 
    max-width: 160px; 
    opacity: 0.9;
    filter: none;
    margin: 0 auto; 
    transition: 0.25s;
    height: auto;
    display: block;
}

.ref-item:hover img { opacity: 1; filter: none; }

/* 6. MOBILE HAMBURGER & NAV */
.burger { 
    display: none; 
    flex-direction: column; 
    gap: 7px; 
    cursor: pointer; 
    z-index: 9600;
    position: relative;
}

.burger span {
    width: 30px;
    height: 2px;
    background: #ffffff;
    transition: 0.4s;
    display: block;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh; 
    background: var(--bg);
    z-index: 9500; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    transform: translateX(100%); 
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-nav.active { transform: translateX(0); }

.mobile-close {
    position: absolute;
    top: 40px;
    right: 6%;
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9600;
}

.mobile-close:hover {
    background: var(--gold);
}

.mobile-close::before,
.mobile-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--gold-light);
    transition: 0.3s;
}

.mobile-close::before {
    transform: rotate(45deg);
}

.mobile-close::after {
    transform: rotate(-45deg);
}

.mobile-close:hover::before,
.mobile-close:hover::after {
    background: white;
}

.mobile-nav a { 
    font-family: var(--font-serif); 
    font-size: 2rem; 
    color: var(--gold-light); 
    text-decoration: none; 
    margin: 15px 0; 
    letter-spacing: 2px;
    transition: 0.3s;
}

.mobile-nav a:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.btn-gold {
    padding: 12px 28px;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.4s;
    display: inline-block;
    border-radius: 2px;
	font-weight: 300;
}

.btn-gold:hover { background: #000000; color: white;  }

/* FOOTER */
footer {
    padding: 80px 6% 30px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { max-width: 300px; }
.footer-brand .logo { font-size: 2rem; margin-bottom: 20px; display: block; }
.footer-brand p {
    color: #000000;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 300;
}
.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); text-decoration: none; transition: 0.3s; font-size: 0.9rem; }
.social-links a:hover { background: var(--gold); color: white; transform: translateY(-3px); }
.footer-col h5 { color: #000000; font-size: 0.85rem; margin-bottom: 25px; letter-spacing: 2px; text-transform: uppercase; }
.footer-link { display: block; color: #000000; text-decoration: none; margin-bottom: 12px; font-size: 0.9rem; transition: 0.3s; }
.footer-link:hover { color: var(--gold); padding-left: 8px; }
.newsletter-box input { background: transparent; border: none; border-bottom: 1px solid rgba(184, 134, 11, 0.3); color: white; width: 100%; padding: 10px 0; outline: none; font-size: 0.9rem; margin-bottom: 15px; transition: 0.3s; }
.newsletter-box input:focus { border-bottom-color: var(--gold); }
.newsletter-box button { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 12px 30px; font-size: 0.75rem; letter-spacing: 2px; cursor: pointer; transition: 0.3s; text-transform: uppercase; width: 100%; border-radius: 2px; }
.newsletter-box button:hover { background: var(--gold); color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-bottom p { color: var(--text-dim); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* TEKLİF SAYFASI - KATEGORİ SELECT SİYAH ARKA PLAN */
.quote-category-select {
    background-color: #0d0a09 !important;
    color: #fff !important;
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23b8860b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.quote-category-select:hover,
.quote-category-select:focus {
    border-color: var(--gold-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.quote-category-select option {
    background-color: #0d0a09;
    color: #fff;
    padding: 10px;
}

.quote-category-select option:hover,
.quote-category-select option:checked {
    background-color: #1a1a1a;
    color: var(--gold-light);
}

/* BLOG DETAY SOSYAL MEDYA BUTONLARI CSS */
.detail-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    margin-top: 30px;
    border-top: 2px solid rgba(184, 134, 11, 0.1);
    border-bottom: 2px solid rgba(184, 134, 11, 0.1);
    flex-wrap: wrap;
}

.detail-share-label {
    font-weight: 700;
    font-size: 16px;
    color: #0d0a09;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.detail-share-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.detail-share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.detail-share-btn:hover::before {
    width: 120%;
    height: 120%;
}

.detail-share-btn:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.detail-share-btn:active {
    transform: translateY(-2px) scale(1.08);
}

.detail-share-btn i {
    position: relative;
    z-index: 1;
    font-size: 20px;
}

.facebook-share {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
}

.facebook-share:hover {
    background: linear-gradient(135deg, #4c70ba 0%, #3b5998 100%);
}

.twitter-share {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.twitter-share:hover {
    background: linear-gradient(135deg, #4ab3f4 0%, #1da1f2 100%);
}

.linkedin-share {
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

.linkedin-share:hover {
    background: linear-gradient(135deg, #0095d8 0%, #0077b5 100%);
}

.whatsapp-share {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
}

.whatsapp-share:hover {
    background: linear-gradient(135deg, #4fdc84 0%, #25d366 100%);
}

.instagram-share {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-share:hover {
    background: linear-gradient(135deg, #f3a952 0%, #ea7e55 25%, #e04156 50%, #d63879 75%, #c92e9a 100%);
}

.telegram-share {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.telegram-share:hover {
    background: linear-gradient(135deg, #28a0dd 0%, #0088cc 100%);
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    }
}

.detail-share-btn:hover {
    animation: pulse-shadow 1.5s ease-in-out infinite;
}

/* KOLEKSİYON + ÜRÜN SLIDER - DESKTOP */
#koleksiyonlar.h-slider-section,
#kategoriler.h-slider-section{
    overflow: hidden;
}

#koleksiyonlar .slide,
#kategoriler .slide{
    width: 100vw;
    padding: 0 2%;
    gap: 12px;
    justify-content: space-between;
    box-sizing: border-box;
}

#koleksiyonlar .slide-img,
#kategoriler .slide-img{
    width: 66%;
    height: clamp(520px, 72vh, 860px);
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: auto;
}

#koleksiyonlar .slide-content,
#kategoriler .slide-content{
    width: 34%;
    max-width: 420px;
}
/* SADECE ÜRÜNLER (#kategoriler) - yazıyı görsele yaklaştır (desktop) */
@media (min-width: 1025px) {

  /* SLIDE genişliği 100vw kalsın, JS bozulmasın */
  #kategoriler .slide{
    justify-content: flex-start; /* space-between iptal */
    gap: 10px;                   /* görsel-yazı arası */
    padding: 0 2%;               /* zaten vardı, koru */
  }

  /* Görsel büyük kalsın ki orta boşluk oluşmasın */
  #kategoriler .slide-img{
    width: 66%;                  /* 35% YAPMA -> boşluk yapar */
    height: clamp(520px, 72vh, 860px);
  }

  /* Yazıyı görsele doğru bindir */
  #kategoriler .slide-content{
    width: 34%;
    max-width: 420px;
    margin-left: -48px;          /* burası yaklaştırır (28 az kalmış) */
  }
}



/* ======================================
   MOBİL RESPONSIVE - TAM DÜZELTME
   ====================================== */

@media (max-width: 1024px) {
    .top-bar-text { font-size: 0.55rem; letter-spacing: 1px; }
    .nav-desktop { display: none; }
    .burger { display: flex; }
    .section-intro { padding: 60px 5% 30px; }
    
    /* Hero mobil düzeltme */
    .hero-title {
        line-height: 1.1;
    }
    
    .hero-title span {
        font-size: 24px;
        transform: translateY(0);
        margin-top: 10px;
    }
    
    .hero-title br {
        display: block;
    }
    
    /* H-Slider mobil düzeltme */
    .h-track { 
        height: auto !important; 
        flex-direction: column !important; 
        width: 100% !important; 
        transform: none !important; 
    }
    
    .slide { 
        width: 100vw !important; 
        height: auto !important; 
        min-height: auto !important;
        flex-direction: column !important; 
        padding: 50px 5% !important; 
        gap: 25px !important; 
    }
    
    .slide-img { 
        width: 100% !important; 
        height: 50vh !important;
        max-width: 100% !important;
        max-height: 500px !important;
        aspect-ratio: auto !important;
        margin-left: 0 !important;
        border-radius: 12px !important;
    }
    
    .slide-content { 
        width: 100% !important; 
        max-width: 100% !important;
        text-align: center !important; 
    }
    
    .slide-content h3 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .slide-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    
    /* Koleksiyon ve Kategori slider mobil */
    #koleksiyonlar .slide,
    #kategoriler .slide {
        flex-direction: column !important;
        padding: 40px 5% !important;
        gap: 25px !important;
    }
    
    #koleksiyonlar .slide-img,
    #kategoriler .slide-img {
        width: 100% !important;
        height: 45vh !important;
        max-height: 450px !important;
        aspect-ratio: auto !important;
        margin-left: 0 !important;
    }
    
    #koleksiyonlar .slide-content,
    #kategoriler .slide-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    #koleksiyonlar .slide-content h3,
    #kategoriler .slide-content h3 {
        font-size: 1.8rem !important;
    }
    
    .craft-section { 
        flex-direction: column; 
        padding: 60px 5%; 
    }
    
    .craft-left, .craft-right { 
        width: 100%; 
    }
    
    .craft-right { 
        height: 50vh; 
    }
    
    .blog-grid { 
        grid-template-columns: 1fr; 
    }
    
    .ref-grid { 
        grid-template-columns: 1fr 1fr 1fr; 
        gap: 25px; 
    }
    
    .footer-top { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
    }
}

@media (max-width: 768px) {
    .hero-title span {
        font-size: 20px;
    }
    
    .slide-img {
        height: 45vh !important;
        max-height: 400px !important;
    }
    
    .slide-content h3 {
        font-size: 1.6rem !important;
    }
    
    #koleksiyonlar .slide-img,
    #kategoriler .slide-img {
        height: 40vh !important;
        max-height: 380px !important;
    }
    
    .detail-share {
        gap: 12px;
        padding: 20px 0;
    }
    
    .detail-share-label {
        font-size: 14px;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .detail-share-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .detail-share-btn i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title span {
        font-size: 18px;
    }
    
    .slide {
        padding: 35px 5% !important;
    }
    
    .slide-img {
        height: 40vh !important;
        max-height: 350px !important;
    }
    
    .slide-content h3 {
        font-size: 1.4rem !important;
    }
    
    #koleksiyonlar .slide,
    #kategoriler .slide {
        padding: 30px 5% !important;
    }
    
    #koleksiyonlar .slide-img,
    #kategoriler .slide-img {
        height: 35vh !important;
        max-height: 320px !important;
    }
    
    .detail-share {
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
    
    .detail-share-btn {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    
    .detail-share-btn i {
        font-size: 17px;
    }
}

