﻿:root {
    --bg-main: #FAF9F7;
    --bg-soft: #E6E1DA;
    --text-main: #2E2E2E;
    --accent: #C9A96A;
    --font-accent: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 120px;
}

.hero-mini.hero-slider {
    background: none !important;
    padding: 0 !important;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid var(--bg-soft);
    border-radius: 14px;
    background: var(--bg-main);
    margin-bottom: 80px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 96px 20px 96px 60px;
    background: linear-gradient(rgba(250,249,247,0.45), rgba(250,249,247,0.45)), var(--bg) center / cover no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
        z-index: 1;
    }

.hero-mini-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.hero-content {
    max-width: 520px;
    margin: 40px 0 0 80px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: inline-block;
}

.hero-content h1 {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 18px;
    color: var(--text-main);
}

    .hero-content h1 strong {
        font-weight: 600;
    }

.hero-content p {
    font-size: .95rem;
    line-height: 1.7;
    opacity: .88;
    margin: 0 0 32px;
    color: var(--text-main);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    border: 1px solid var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    letter-spacing: .6px;
    border-radius: 999px;
    transition: all .25s ease;
    background: var(--accent);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 10;
    cursor: pointer;
}

    .btn-hero:hover {
        background: rgba(201,169,106,0.75);
        color: #fff;
        border-color: rgba(201,169,106,0.75);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(201,169,106,0.3);
    }

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(46,46,46,0.35);
    background: rgba(250,249,247,0.85);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

    .hero-dot.active {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.25);
    }

    .hero-dot:hover {
        border-color: var(--accent);
        transform: scale(1.15);
    }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(46,46,46,0.18);
    background: rgba(250,249,247,0.75);
    backdrop-filter: blur(6px);
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-arrow:hover {
        border-color: var(--accent);
        color: #fff;
        background: var(--accent);
        transform: translateY(-50%) scale(1.1);
    }

    .hero-arrow.prev {
        left: 14px;
    }

    .hero-arrow.next {
        right: 14px;
    }


.usp-bar {
    margin: 18px auto 70px;
    max-width: 1320px;
    padding: 0 20px;
}

.usp-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
    background: #fff;
    border: 1px solid var(--bg-soft);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 24px rgba(46,46,46,0.06);
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 12px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    border: 1px solid transparent;
}

    .usp-item:hover {
        transform: translateY(-2px);
        border-color: rgba(201,169,106,0.35);
        box-shadow: 0 12px 22px rgba(46,46,46,0.08);
    }

.usp-ico {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(201,169,106,0.14);
    color: var(--text-main);
    font-size: 18px;
    flex: 0 0 auto;
}

.usp-txt strong {
    display: block;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

.usp-txt span {
    display: block;
    margin-top: 2px;
    font-size: .82rem;
    opacity: .75;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .usp-inner {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 520px) {
    .usp-inner {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-family: var(--font-accent);
        font-size: 2.4rem;
        color: var(--text-main);
        margin: 0 0 12px;
        font-weight: 500;
    }

    .section-header p {
        font-size: 1rem;
        color: var(--text-main);
        opacity: .7;
        margin: 0;
    }

/* ============================================
   ÇOK SATANLAR
   ============================================ */

.bestsellers {
    padding: 80px 20px;
    max-width: 1320px;
    margin: 0 auto;
}

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.bs-card {
    background: #fff;
    border: 1px solid var(--bg-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .bs-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(46,46,46,0.08);
    }

.bs-media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

    .bs-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

.bs-card:hover .bs-media img {
    transform: scale(1.08);
}

.bs-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.bs-wish {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bs-wish:hover {
        background: var(--accent);
        color: #fff;
        transform: scale(1.1);
    }

.bs-body {
    padding: 20px;
}

.bs-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.bs-category {
    font-size: .8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.bs-rating {
    font-size: .85rem;
    color: #FFA500;
}

.bs-title {
    margin: 0 0 16px;
}

    .bs-title a {
        font-size: 1.05rem;
        color: var(--text-main);
        text-decoration: none;
        font-weight: 500;
        transition: color .2s ease;
    }

        .bs-title a:hover {
            color: var(--accent);
        }

.bs-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bs-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
}

.bs-add {
    padding: 8px 20px;
    background: var(--bg-main);
    border: 1px solid var(--accent);
    color: var(--text-main);
    border-radius: 20px;
    font-size: .85rem;
    cursor: pointer;
    transition: all .2s ease;
}

    .bs-add:hover {
        background: var(--accent);
        color: #fff;
    }

.bestseller-cta {
    text-align: center;
    margin-top:50px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 999px;
    font-size: .95rem;
    letter-spacing: .6px;
    transition: all .3s ease;
}

    .btn-secondary:hover {
        background: var(--accent);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(201,169,106,0.3);
    }

/* ============================================
   KATEGORİLER
   ============================================ */
.categories {
    padding: 80px 0;
    background: var(--bg-main);
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

    .category-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

.cat-card {
    position: relative;
    flex: 0 0 190px; /* sabit genişlik, küçülmez */
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform .3s ease;
}

    .cat-card:hover {
        transform: scale(1.05);
    }

    .cat-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

    .cat-card:hover img {
        transform: scale(1.1);
    }

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.10));
    transition: background .3s ease;
}

.cat-card:hover .cat-overlay {
    background: linear-gradient(to top, rgba(201,169,106,0.55), rgba(0,0,0,0.10));
}

.cat-content {
    position: absolute;
    right: 18px;
    bottom: 6px;
    z-index: 2;
    text-align: right;
    color: var(--text-main);
}

    .cat-content h3 {
        margin: 0;
        font-family: var(--font-accent);
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.15;
        text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }

/* ── Tablet ── */
@media (max-width: 900px) {
    .cat-card {
        flex: 0 0 160px;
    }
}

/* ── Mobil ── */
@media (max-width: 600px) {
    .categories {
        padding: 50px 0;
    }

    .category-grid {
        justify-content: flex-start; /* sola hizala, scroll başlasın */
        padding: 0 16px;
        gap: 8px;
    }

    .cat-card {
        flex: 0 0 120px;
    }

    .cat-content {
        right: 10px;
        bottom: 10px;
    }

        .cat-content h3 {
            font-size: .78rem;
        }
}

@media (max-width: 380px) {
    .cat-card {
        flex: 0 0 100px;
    }
}

/* ============================================
   HAKKIMIZDA
   ============================================ */

.about-section {
    padding: 100px 20px;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    text-align: center;
}

    .about-image img {
        max-width: 80%;
        height: auto;
        filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    }

.about-content {
    padding-right: 40px;
}

.about-label {
    display: inline-block;
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.about-content h2 {
    font-family: var(--font-accent);
    font-size: 2.6rem;
    color: var(--text-main);
    margin: 0 0 24px;
    font-weight: 500;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
    opacity: .85;
    margin: 0 0 20px;
}

.about-content strong {
    color: var(--accent);
    font-weight: 600;
}

.about-content .btn-secondary {
    margin-top: 20px;
}

/* ============================================
   MÜŞTERİ YORUMLARI
   ============================================ */

.testimonials {
    padding: 80px 20px;
    background: var(--bg-main);
}

.testimonial-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--bg-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 24px rgba(46,46,46,0.08);
    }

.test-stars {
    color: #FFA500;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.test-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    opacity: .85;
    margin: 0 0 24px;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .test-author img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
    }

    .test-author h4 {
        font-size: .95rem;
        color: var(--text-main);
        margin: 0 0 4px;
        font-weight: 600;
    }

    .test-author span {
        font-size: .8rem;
        color: var(--text-main);
        opacity: .6;
    }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 360px;
        border-radius: 12px;
        margin-bottom: 60px;
    }

    .hero-slide {
        padding: 72px 16px;
    }

    .hero-content {
        max-width: 100%;
        margin: 10px 0 0 20px;
    }

        .hero-content h1 {
            font-size: 2.1rem;
        }

    .hero-arrow {
        display: none;
    }

    .bestsellers,
    .categories,
    .testimonials {
        padding: 60px 20px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .bestseller-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@supports (-webkit-touch-callout: none) {
    .hero-slide {
        -webkit-font-smoothing: antialiased;
    }
}

/* =========================
   GIFT FINDER (Wizard)
   ========================= */
.gift-finder {
    padding: 0 20px 80px;
    max-width: 1320px;
    margin: -30px auto 0; /* USP ile arayı premium bağla */
}

.gf-shell {
    width: 100%;
}

.gf-head {
    text-align: center;
    margin-bottom: 18px;
}

    .gf-head h2 {
        font-family: var(--font-accent);
        font-size: 2.1rem;
        margin: 0 0 10px;
        font-weight: 500;
        color: var(--text-main);
    }

    .gf-head p {
        margin: 0;
        opacity: .75;
        color: var(--text-main);
    }

.gf-card {
    background: #fff;
    border: 1px solid var(--bg-soft);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(46,46,46,0.06);
}

.gf-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.gf-step {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(46,46,46,0.18);
    background: rgba(250,249,247,0.9);
    color: var(--text-main);
    font-weight: 600;
    font-size: .9rem;
}

    .gf-step.is-active {
        border-color: var(--accent);
        background: rgba(201,169,106,0.14);
    }

.gf-line {
    width: 44px;
    height: 1px;
    background: rgba(201,169,106,0.45);
}

.gf-panel {
    display: none;
}

    .gf-panel.is-active {
        display: block;
    }

.gf-q {
    text-align: center;
    font-weight: 600;
    margin: 10px 0 14px;
    color: var(--text-main);
}

.gf-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
}

.gf-opt {
    background: var(--bg-main);
    border: 1px solid var(--bg-soft);
    border-radius: 999px;
    padding: 12px 14px;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
    font-size: .95rem;
    color: var(--text-main);
}

    .gf-opt:hover {
        transform: translateY(-2px);
        border-color: rgba(201,169,106,0.55);
    }

    .gf-opt.is-selected {
        border-color: var(--accent);
        background: rgba(201,169,106,0.14);
    }

.gf-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.gf-back,
.gf-next {
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(46,46,46,0.18);
    background: rgba(250,249,247,0.86);
    cursor: pointer;
    transition: .2s ease;
    color: var(--text-main);
}

.gf-next {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.gf-back:hover {
    border-color: rgba(201,169,106,0.55);
}

.gf-next:hover {
    background: rgba(201,169,106,0.85);
}

.gf-apply {
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    transition: .2s ease;
}

    .gf-apply:hover {
        background: rgba(201,169,106,0.85);
    }

.gf-summary {
    margin-top: 12px;
    text-align: center;
    font-size: .92rem;
    color: var(--text-main);
    opacity: .85;
}

@media (max-width: 900px) {
    .gf-options {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 520px) {
    .gift-finder {
        padding-bottom: 60px;
    }

    .gf-line {
        width: 30px;
    }
}

/* =========================
   NEW ARRIVALS (horizontal)
   ========================= */
/* başlık ortada, oklar sağda */
.na-head {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* sol boş / orta başlık / sağ oklar */
    align-items: end;
    gap: 16px;
    margin-bottom: 50px;
}

    .na-head > div:first-child {
        grid-column: 2; /* ortadaki blok */
        text-align: center;
    }

.na-actions {
    grid-column: 3; /* oklar sağda */
    justify-self: end;
    display: flex;
    gap: 10px;
}

/* bunlar aynı kalabilir */
.na-head h2 {
    font-family: var(--font-accent);
    font-size: 2.4rem;
    color: var(--text-main);
    margin: 0 0 12px;
    font-weight: 500;
}

.na-head p {
    font-size: 1rem;
    color: var(--text-main);
    opacity: .7;
    margin: 0;
}

.na-actions {
    display: flex;
    gap: 10px;
}

.na-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(46,46,46,0.18);
    background: rgba(250,249,247,0.86);
    cursor: pointer;
    transition: .2s ease;
    font-size: 1.3rem;
    color: var(--text-main);
}

    .na-arrow:hover {
        border-color: var(--accent);
        background: rgba(201,169,106,0.14);
    }

.na-track {
    display: flex;
    gap: 14px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 12px;
    -webkit-overflow-scrolling: touch;
}

    .na-track::-webkit-scrollbar {
        height: 8px;
    }

    .na-track::-webkit-scrollbar-thumb {
        background: rgba(201,169,106,0.35);
        border-radius: 999px;
    }

.na-card {
    flex: 0 0 auto;
    width: 210px;
    background: #fff;
    border: 1px solid var(--bg-soft);
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .na-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(46,46,46,0.08);
    }

.na-media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

    .na-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

.na-card:hover .na-media img {
    transform: scale(1.08);
}

.na-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .75rem;
}

.na-body {
    padding: 12px;
}

.na-title {
    font-size: .95rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 6px;
}

.na-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

@media (max-width: 520px) {
    .new-arrivals {
        padding-bottom: 60px;
    }

    .na-card {
        width: 130px;
    }

    .na-title {
        font-size: .78rem;
    }

    .na-price {
        font-size: .85rem;
    }

    .na-body {
        padding: 8px;
    }

    .na-badge {
        font-size: .65rem;
        padding: 4px 8px;
        top: 5px;
        left: 5px;
    }
}

@media (max-width: 380px) {
    .na-card {
        width: 110px;
    }
}

@media (max-width: 768px) {
    .bestseller-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .bestseller-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .bs-body {
        padding: 10px 10px 12px;
    }

    .bs-title a {
        font-size: .78rem;
    }

    .bs-category {
        font-size: .68rem;
    }

    .bs-price {
        font-size: .88rem;
    }

    /* Sepete ekle butonu mobilde gizle */
    .bs-add {
        display: none;
    }

    .bs-wish {
        width: 28px;
        height: 28px;
        font-size: 13px;
        top: 6px;
        right: 6px;
    }

    .bs-badge {
        font-size: .65rem;
        padding: 4px 8px;
        top: 6px;
        left: 6px;
    }
}

@media (max-width: 380px) {
    .bestseller-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}