:root {
    --black: #080808;
    --black2: #141414;
    --cream: #f5f1e8;
    --paper: #fffaf0;
    --gold: #d4af37;
    --gold2: #b9952c;
    --text: #202020;
    --muted: #6b665f;
}

/* GENEL AYARLAR */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

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

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

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* NAVBAR */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 14px 0;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.logo-wrap img {
    width: 78px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.35));
}

.menu {
    display: flex;
    gap: 28px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.menu a {
    opacity: 0.88;
    position: relative;
    padding: 8px 0;
    transition: color 0.38s ease, opacity 0.38s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.38s ease;
}

.menu a:hover {
    color: var(--gold);
    opacity: 1;
}

.menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* HERO */
.hero {
    min-height: 100vh;
    padding-top: 90px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48)),
        url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    font-size: 13px;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 6vw, 74px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 720px;
    color: #eeeeee;
    font-size: 18px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
}

.btn.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111111;
}

.btn.outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.hero-card {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.hero-card img {
    width: 220px;
    max-width: 100%;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.28));
}

.hero-card ul {
    list-style: none;
    color: #eeeeee;
}

.hero-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}


/* SAYFA GENEL BÖLÜMLER */
section {
    padding: 92px 0;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.eyebrow {
    color: var(--gold2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h2 {
    margin: 10px 0 16px;
    color: #101010;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.section-head p {
    color: var(--muted);
}


/* HAKKIMIZDA */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.panel {
    padding: 34px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--paper);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}


/* KATEGORİLER VE ÖZELLİKLER */
.feature-grid,
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.feature,
.cat {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--paper);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: 0.25s;
}

.feature:hover,
.cat:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.11);
}

.feature h3,
.cat h3 {
    margin-bottom: 8px;
    color: #111111;
}

.cat {
    min-height: 180px;
    background: linear-gradient(
        180deg,
        rgba(255, 250, 240, 0.95),
        rgba(255, 250, 240, 0.9)
    );
}

.cat p {
    color: #5a544a !important;
}


/* KOYU BÖLÜM */
.dark {
    background: var(--black);
    color: #ffffff;
}

.dark h2 {
    color: #ffffff;
}

.dark p {
    color: #cccccc;
}


/* İSTATİSTİK */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.stat strong {
    display: block;
    color: var(--gold);
    font-size: 40px;
}


/* SAYFA HERO */
.page-hero {
    padding: 160px 0 80px;
    color: #ffffff;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.55)),
        url("https://images.unsplash.com/photo-1615485290382-441e4d049cb5?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
}


/* ÜRÜNLER SAYFASI */
.search-box {
    width: 100%;
    margin-bottom: 20px;
    padding: 18px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    font-size: 16px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.filter-btn {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    cursor: pointer;
    font-weight: 800;
}

.filter-btn.active,
.filter-btn:hover {
    background: #111111;
    color: var(--gold);
    border-color: #111111;
}

.category-title {
    margin: 50px 0 20px;
    padding-left: 14px;
    border-left: 4px solid var(--gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 24px;
}

.product-card {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--paper);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.11);
}

.product-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: #dddddd;
}

.product-body {
    padding: 20px;
}

.product-card small {
    color: var(--gold2);
    font-weight: 900;
}

.product-card h3 {
    margin: 6px 0 8px;
    color: #111111;
    font-size: 19px;
}

.product-card p {
    color: var(--muted);
    font-size: 14px;
}


/* ÜRÜN DETAY SAYFASI */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.product-photo {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.product-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.meta {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.meta div {
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
}


/* İLETİŞİM */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.map {
    width: 100%;
    height: 340px;
    border: 0;
    border-radius: 24px;
    filter: grayscale(0.2);
}


/* GALERİ SAYFASI */
.gallery-slider-wrap {
    max-width: 980px;
    margin: 0 auto 46px;
    position: relative;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: #111111;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.gallery-slide {
    display: none;
    position: relative;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    color: #ffffff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.gallery-caption h3 {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 28px;
}

.gallery-caption p {
    color: #dddddd;
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    color: #111111;
}

.slider-btn.prev {
    left: 18px;
}

.slider-btn.next {
    right: 18px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: #c9c0b0;
    cursor: pointer;
}

.gallery-dot.active {
    background: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--paper);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.gallery-item img,
.gallery-item video {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-item-body {
    padding: 18px;
}

.gallery-item-body h3 {
    margin-bottom: 4px;
    color: #111111;
    font-size: 18px;
}

.gallery-item-body p {
    color: #5a544a;
    font-size: 14px;
}

.gallery-note {
    margin-top: 32px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: #111111;
    color: #dddddd;
}

.gallery-note strong {
    color: var(--gold);
}


/* FOOTER */
footer {
    padding: 42px 0;
    background: #080808;
    color: #aaaaaa;
}

footer .foot {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-info strong {
    color: #ffffff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #d8d4c8;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    transition: 0.25s ease;
}

.footer-contact-item strong {
    color: var(--gold);
    font-weight: 700;
}

.footer-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.footer-contact-item:hover {
    color: #ffffff;
}

.footer-contact-item:hover .footer-icon {
    background: var(--gold);
    color: #111111;
}


/* MOBİL UYUMLULUK */
@media (max-width: 820px) {
    section {
        padding: 66px 0;
    }

    .nav-inner {
        gap: 18px;
    }

    .logo-wrap img {
        width: 66px;
        height: auto;
    }

    .logo-wrap span {
        display: none;
    }

    .menu {
        gap: 14px;
        font-size: 12px;
    }

    .hero-grid,
    .about-grid,
    .product-detail,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card img {
        width: 210px;
    }

    .product-photo img {
        height: 320px;
    }

    .gallery-slide img {
        height: 360px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    footer .foot {
        flex-direction: column;
    }
}