/* =============================================
   FİLİZ'İN ÇANTA DÜNYASI — ANA STİL DOSYASI
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── RENK DEĞİŞKENLERİ ── */
:root {
    --krem: #FAF6F0;
    --krem-2: #F2EBE0;
    --krem-3: #E8DDD0;
    --altin: #C9A96E;
    --altin-2: #A8855A;
    --altin-3: #7D6144;
    --kahve: #3D2B1F;
    --kahve-2: #5C3D2A;
    --beyaz: #FFFFFF;
    --gri: #888;
    --gri-2: #555;
    --golge: rgba(61, 43, 31, 0.10);
    --golge-2: rgba(61, 43, 31, 0.20);
    --altin-golge: rgba(201, 169, 110, 0.25);
}

/* ── RESET & TEMEL ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Mobil tap highlight & focus outline temizleme */
a,
button,
input,
textarea,
select,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--altin);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--krem);
    color: var(--kahve);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
video {
    max-width: 100%;
    display: block;
}

/* ── DM MODAL ── */
.dm-modal-arka {
    position: fixed;
    inset: 0;
    background: rgba(61, 43, 31, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.dm-modal-arka.aktif {
    opacity: 1;
    pointer-events: all;
}

.dm-modal-kutu {
    background: var(--beyaz);
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(61, 43, 31, 0.35);
    overflow: hidden;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.dm-modal-arka.aktif .dm-modal-kutu {
    transform: translateY(0) scale(1);
}

.dm-modal-gorsel {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    background: var(--krem-2);
}

.dm-modal-gorsel-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--krem-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-modal-icerik {
    padding: 1.5rem;
}

.dm-modal-icerik h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--kahve);
    margin-bottom: 0.5rem;
}

.dm-modal-icerik p.aciklama {
    font-size: 0.82rem;
    color: var(--gri);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dm-mesaj-kutu {
    background: var(--krem);
    border: 1.5px solid var(--krem-3);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    color: var(--kahve-2);
    line-height: 1.65;
    margin-bottom: 1rem;
    position: relative;
    cursor: text;
    user-select: all;
}

.dm-modal-butonlar {
    display: flex;
    gap: 0.75rem;
}

.btn-kopyala {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1.5px solid var(--krem-3);
    background: var(--krem);
    color: var(--kahve);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-kopyala:hover {
    border-color: var(--altin);
    color: var(--altin-2);
}

.btn-kopyala.kopyalandi {
    background: rgba(56, 161, 105, 0.1);
    border-color: rgba(56, 161, 105, 0.4);
    color: #38a169;
}

.btn-insta-git {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
    border: none;
}

.btn-insta-git:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}

.dm-modal-kapat {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kahve);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
    z-index: 1;
}

.dm-modal-kapat:hover {
    background: var(--krem-3);
}

.dm-modal-gorsel-wrap {
    position: relative;
}

/* ── TİPOGRAFİ ── */
h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

.baslik-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.25);
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px var(--golge);
}

.navbar-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-logo .logo-ana {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--kahve);
    letter-spacing: 0.01em;
}

.navbar-logo .logo-alt {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--altin-2);
    margin-top: 2px;
}

.navbar-logo-img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(201, 169, 110, 0.2);
}

.navbar-logo:hover .navbar-logo-img {
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--kahve-2);
    transition: color 0.2s;
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--altin);
    transition: width 0.3s;
}

.navbar-nav a:hover {
    color: var(--altin-2);
}

.navbar-nav a:hover::after {
    width: 100%;
}

.navbar-instagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--altin), var(--altin-2));
    color: var(--beyaz) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 3px 12px var(--altin-golge);
}

.navbar-instagram::after {
    display: none !important;
}

.navbar-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--altin-golge) !important;
    color: var(--beyaz) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--kahve);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 4rem;
    background: linear-gradient(160deg, var(--krem) 0%, var(--krem-2) 50%, var(--krem-3) 100%);
}

/* Logo blurlu arka plan */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/lunealogo2.jpeg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 55%;
    filter: blur(4px) saturate(0.8);
    opacity: 0.50;
    pointer-events: none;
    z-index: 0;
}

.hero-desen {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

.hero-icerik {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-rozet {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--altin-2);
    margin-bottom: 1.8rem;
    animation: fadeInDown 0.8s ease both;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 600;
    color: var(--kahve);
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.9s 0.2s ease both;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--altin-2);
    font-style: italic;
}

.hero-alt-baslik {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--gri-2);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    animation: fadeInUp 0.9s 0.4s ease both;
}

.hero-butonlar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s 0.6s ease both;
}

.btn-birincil {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--altin), var(--altin-2));
    color: var(--beyaz);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 24px var(--altin-golge);
    transition: transform 0.25s, box-shadow 0.25s;
    border: none;
    cursor: pointer;
}

.btn-birincil:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(201, 169, 110, 0.4);
    color: var(--beyaz);
}

.btn-ikincil {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--kahve);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1.5px solid var(--krem-3);
    transition: all 0.25s;
    cursor: pointer;
}

.btn-ikincil:hover {
    border-color: var(--altin);
    color: var(--altin-2);
    background: rgba(201, 169, 110, 0.06);
    transform: translateY(-2px);
}

/* Hero süsleme */
.hero-susleme {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.1);
    animation: rotate 30s linear infinite;
}

.hero-susleme-1 {
    bottom: -100px;
    right: -100px;
}

.hero-susleme-2 {
    width: 300px;
    height: 300px;
    top: 60px;
    left: -80px;
    border-color: rgba(201, 169, 110, 0.06);
    animation-duration: 20s;
    animation-direction: reverse;
}

/* ── BÖLÜM BAŞLIĞI ── */
.bolum {
    padding: 6rem 2rem;
}

.bolum-baslik {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bolum-baslik h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--kahve);
    margin-bottom: 0.8rem;
}

.bolum-baslik p {
    font-size: 1.05rem;
    color: var(--gri-2);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.altin-cizgi {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--altin), var(--altin-2));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ── KATEGORİ FİLTRE ── */
.kategori-filtre {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filtre-btn {
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    border: 1.5px solid var(--krem-3);
    background: var(--beyaz);
    color: var(--kahve-2);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
}

.filtre-btn:hover,
.filtre-btn.aktif {
    background: linear-gradient(135deg, var(--altin), var(--altin-2));
    border-color: transparent;
    color: var(--beyaz);
    box-shadow: 0 4px 14px var(--altin-golge);
    transform: translateY(-1px);
}

/* ── ÜRÜN GRID ── */
.urun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* ── ÜRÜN KARTI ── */
.urun-kart {
    background: var(--beyaz);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--golge);
    transition: transform 0.35s, box-shadow 0.35s;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease both;
}

.urun-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--golge-2);
}

.urun-kart-medya {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--krem-2);
}

.urun-kart-medya img,
.urun-kart-medya video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.urun-kart:hover .urun-kart-medya > img,
.urun-kart:hover .urun-kart-medya > video {
    transform: scale(1.05);
}

/* Ürün Kartı Slider */
.urun-slider-pisti {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
}
.urun-slider-pisti::-webkit-scrollbar {
    display: none;
}
.urun-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
}
.urun-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Noktaları */
.urun-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.25);
    padding: 4px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s;
}
.urun-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.urun-dot.aktif {
    background: var(--altin);
    transform: scale(1.3);
    width: 12px;
    border-radius: 4px;
}

.urun-kart-rozet {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(61, 43, 31, 0.85);
    color: var(--altin);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.urun-kart-icerik {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.8rem;
}

.urun-kart-icerik h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--kahve);
    line-height: 1.3;
}

.urun-kart-icerik p {
    font-size: 0.88rem;
    color: var(--gri-2);
    line-height: 1.65;
    flex: 1;
}

.btn-dm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--beyaz);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
    margin-top: auto;
}

.btn-dm:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    color: var(--beyaz);
}

.btn-dm svg {
    flex-shrink: 0;
}

.btn-detay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--kahve-2);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1.5px solid var(--krem-3);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-detay:hover {
    border-color: var(--altin);
    color: var(--altin-2);
    background: rgba(201, 169, 110, 0.06);
}

/* ── SİPARİŞ SÜRECİ ── */
.siparis-sureci {
    position: relative;
    overflow: hidden;
    background-color: #6E4E3A;
    /* Düz toprak rengi */
    padding: 6rem 2rem;
    color: var(--beyaz);
}

/* Dekoratif Çiçekler */
.siparis-dekor-cicek {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
}

.cicek-sag-ust {
    top: 10px;
    right: -50px;
    width: 280px;
    /* İşaretlenen geniş boyutta */
    transform: rotate(-10deg);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
    animation: cicekSwayRight 5s ease-in-out infinite;
}

.cicek-sol-alt {
    bottom: -60px;
    left: -60px;
    width: 260px;
    transform: scaleX(-1) rotate(15deg);
    /* Simetrik ve özgün görünüm için yansıttık */
    filter: drop-shadow(0 -12px 28px rgba(0, 0, 0, 0.35));
    animation: cicekSwayLeft 6s ease-in-out infinite;
}

/* Rüzgarda Hafif Salınım Efektleri (Belirgin Salınım) */
@keyframes cicekSwayRight {

    0%,
    100% {
        transform: rotate(-12deg);
    }

    50% {
        transform: rotate(-5deg);
    }
}

@keyframes cicekSwayLeft {

    0%,
    100% {
        transform: scaleX(-1) rotate(12deg);
    }

    50% {
        transform: scaleX(-1) rotate(19deg);
    }
}

@media (max-width: 768px) {
    .cicek-sag-ust {
        width: 160px;
        top: 20px;
        right: -30px;
    }

    .cicek-sol-alt {
        width: 150px;
        bottom: -30px;
        left: -30px;
    }
}

.siparis-sureci .bolum-baslik h2 {
    color: var(--beyaz);
}

.siparis-sureci .bolum-baslik p {
    color: rgba(255, 255, 255, 0.75);
}

.siparis-sureci .altin-cizgi {
    background: linear-gradient(90deg, var(--altin), #e8c98a);
}

.adimlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.adim-kart {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

.adim-kart:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.adim-no {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--altin), var(--altin-2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--beyaz);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4);
}

.adim-kart h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--beyaz);
    margin-bottom: 0.7rem;
}

.adim-kart p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

/* ── HAKKIMIZDA (mini) ── */
.hakkimizda-mini {
    background: var(--krem-2);
    padding: 6rem 2rem;
}

.hakkimizda-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hakkimizda-metin h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1.2rem;
    color: var(--kahve);
}

.hakkimizda-metin p {
    font-size: 1rem;
    color: var(--gri-2);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hakkimizda-gorsel img {
    border-radius: 20px;
    box-shadow: 0 12px 40px var(--golge-2);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* ── FOOTER ── */
footer {
    background: var(--kahve);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 3rem 2rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--altin);
    margin-bottom: 0.5rem;
}

.footer-alt {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
}

.footer-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--altin);
    font-weight: 600;
    font-size: 0.92rem;
    transition: opacity 0.2s;
    margin-bottom: 2rem;
}

.footer-instagram-link:hover {
    opacity: 0.75;
    color: var(--altin);
}

.footer-alt-bilgi {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

/* ── ÜRÜN DETAY ── */
.detay-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.detay-galeri-ana {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--krem-2);
    box-shadow: 0 12px 40px var(--golge-2);
}

.detay-galeri-ana img,
.detay-galeri-ana video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detay-galeri-kucuk {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 4px;
}

.detay-galeri-kucuk img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.detay-galeri-kucuk img.aktif {
    border-color: var(--altin);
}

.detay-bilgi {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detay-kategori {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--altin-2);
}

.detay-bilgi h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--kahve);
    line-height: 1.2;
}

.detay-aciklama {
    font-size: 1rem;
    color: var(--gri-2);
    line-height: 1.8;
    border-top: 1px solid var(--krem-3);
    padding-top: 1.2rem;
}

.detay-ozellikler {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.detay-ozellik {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--kahve-2);
}

.detay-ozellik svg {
    color: var(--altin);
    flex-shrink: 0;
}

/* ── HAKKIMIZDA SAYFASI ── */
.hakkimizda-hero {
    background: linear-gradient(160deg, var(--krem) 0%, var(--krem-2) 100%);
    padding: 140px 2rem 80px;
    text-align: center;
}

.hakkimizda-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--kahve);
    margin-bottom: 1rem;
}

.hakkimizda-hero p {
    font-size: 1.1rem;
    color: var(--gri-2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.hakkimizda-kapsayici {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
    align-items: start;
}

.hakkimizda-sol-gorsel img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(61, 43, 31, 0.15);
    margin-top: 0.5rem;
    display: block;
    border: 2.5px solid rgba(201, 169, 110, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hakkimizda-sol-gorsel img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(61, 43, 31, 0.18);
}

.hakkimizda-metin-alan {
    padding: 0;
    margin: 0;
}

.hakkimizda-metin-alan h2 {
    font-size: 2.2rem;
    color: var(--kahve);
    margin-bottom: 1.2rem;
}

.hakkimizda-metin-alan p {
    font-size: 1.05rem;
    color: var(--gri-2);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
    .hakkimizda-kapsayici {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 1.5rem;
        text-align: center;
        align-items: center;
    }
    .hakkimizda-sol-gorsel img {
        max-width: 180px;
        margin: 0 auto;
        border-radius: 12px;
    }
}

/* ── BENZER ÜRÜNLER ── */
.benzer-urunler {
    background: var(--krem-2);
    padding: 5rem 2rem;
}

/* ── YÜKLEME / BOŞ DURUM ── */
.bos-durum {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gri);
}

.bos-durum svg {
    margin: 0 auto 1rem;
    opacity: 0.4;
}

.bos-durum h3 {
    font-size: 1.4rem;
    color: var(--kahve);
    margin-bottom: 0.5rem;
}

/* ── ANİMASYONLAR ── */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

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

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

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hakkimizda-icerik {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hakkimizda-gorsel {
        order: -1;
    }

    .hakkimizda-gorsel img {
        aspect-ratio: 16/9;
    }

    .detay-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .navbar-nav.acik {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 246, 240, 0.98);
        backdrop-filter: blur(12px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--krem-3);
        animation: fadeInDown 0.3s ease;
    }

    .hamburger {
        display: flex;
    }

    .navbar-instagram {
        display: none;
    }

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

    .bolum {
        padding: 4rem 1.25rem;
    }

    .siparis-sureci {
        padding: 4rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .urun-grid {
        grid-template-columns: 1fr;
    }

    .hero-butonlar {
        flex-direction: column;
        align-items: center;
    }

    .detay-container {
        padding: 1.25rem;
        padding-top: 90px;
    }
}