:root {
    --primary: #1a1a1a;
    --primary-light: #333;
    --pink: #C9A227;
    --pink-dark: #A67C00;
    --pink-light: #F4E4BC;
    --secondary: #D4AF37;
    --accent: #B8860B;
    --text: #374151;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-soft: #FDF8ED;
    --bg-warm: #FFF9F0;
    --border: #E6C86E;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 10px 30px rgba(201, 162, 39, 0.08);
    --shadow-lg: 0 20px 40px rgba(201, 162, 39, 0.14);
    --container: 1200px;
    --header-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--pink-dark);
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.text-center { text-align: center; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: .25s ease;
    border: none;
    cursor: pointer;
    font-size: .95rem;
    background: transparent;
    color: inherit;
}

.btn-primary {
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    color: #fff;
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(201, 162, 39, .35);
    transform: translateY(-2px);
}

.btn-pink {
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    color: #fff;
}

.btn-pink:hover {
    background: radial-gradient(circle at 30% 30%, #FFF3D6 0%, #E6C86E 40%, #C9A227 75%, #A67C00 100%);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--pink);
    color: var(--pink-dark);
    background: transparent;
}

.btn-outline:hover {
    background: var(--pink);
    color: #fff;
}

/* Header */
.top-bar {
    background: radial-gradient(circle at 50% 0%, #D4AF37 0%, #B8860B 60%, #A67C00 100%);
    color: #fff;
    font-size: .85rem;
    padding: .55rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar a {
    color: #fff;
    opacity: .92;
}

.top-bar a:hover {
    opacity: 1;
    text-decoration: underline;
}

.main-header {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-desktop a {
    font-weight: 600;
    color: var(--primary);
    font-size: .85rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
}

.nav-desktop > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--pink-dark);
    transition: .25s;
}

.nav-desktop > a:hover::after,
.nav-desktop > a.active::after {
    width: 100%;
}

.nav-desktop .has-submenu > a {
    font-size: .85rem;
}

.has-submenu {
    position: relative;
}

.has-submenu > a {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: .6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 1001;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
}

.submenu li.submenu-title {
    padding: .7rem 1.2rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--pink-dark);
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.submenu li.submenu-title ~ li.submenu-title {
    margin-top: .4rem;
    border-top: 1px solid var(--border);
}

.submenu li a {
    display: block;
    padding: .7rem 1.2rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    font-size: .9rem;
}

.submenu li a:hover {
    background: var(--bg-soft);
    color: var(--pink-dark);
}

/* MasaÃ¼stÃ¼ Randevu Butonu */
.nav-desktop .nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: .45rem .9rem;
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    color: #fff;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    margin-left: .2rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: .25s;
    flex-shrink: 0;
}

.nav-desktop .nav-btn:hover,
.nav-desktop .nav-btn.active {
    background: radial-gradient(circle at 30% 30%, #FFF3D6 0%, #E6C86E 40%, #C9A227 75%, #A67C00 100%);
    color: #fff;
}

.nav-desktop .nav-btn::after {
    display: none;
}

.mobile-nav-btn {
    display: inline-block;
    margin-top: .5rem;
    padding: .7rem 1.2rem;
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--pink-dark);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-height);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: .8rem 0;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
}

/* Slider */
.hero-slider {
    position: relative;
    height: min(85vh, 720px);
    overflow: hidden;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide-bg img,
.slide-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,26,26,.82) 0%, rgba(26,26,26,.35) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    padding: 0 1rem;
    max-width: 700px;
}

.slide-content h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: #fff;
}

.slide-content h1 em,
.slide-content h1 span.accent {
    color: var(--pink);
    font-style: normal;
}

.slide-content p {
    font-size: 1.15rem;
    color: #f3f4f6;
    margin-bottom: 1.8rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.3rem;
    opacity: .9;
    transition: .25s;
    box-shadow: 0 4px 12px rgba(166, 124, 0, .25);
}

.slider-arrow:hover { opacity: 1; background: radial-gradient(circle at 30% 30%, #FFF3D6 0%, #E6C86E 40%, #C9A227 75%, #A67C00 100%); }
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }

@media (max-width: 900px) {
    .slider-arrow {
        display: none;
    }
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: .6rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: .25s;
    border: none;
}

.dot.active {
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    transform: scale(1.2);
}

/* HakkÄ±mÄ±zda */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--pink-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Applications */
.applications {
    background: var(--bg-warm);
}

.applications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.applications-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.applications-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--primary);
    white-space: nowrap;
}

.applications-tabs {
    display: inline-flex;
    gap: .5rem;
    background: #fff;
    padding: .35rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.applications-tabs .tab-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: .85rem;
    font-weight: 600;
    padding: .55rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: .25s;
    white-space: nowrap;
}

.applications-tabs .tab-btn i {
    font-size: 1rem;
}

.applications-tabs .tab-btn.active,
.applications-tabs .tab-btn:hover {
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(166, 124, 0, .25);
}

.applications-tabs .tab-btn.active[data-tab="erkek"],
.applications-tabs .tab-btn[data-tab="erkek"]:hover {
    background: radial-gradient(circle at 30% 30%, #3B4252 0%, #2E3440 40%, #1F242D 75%, #151920 100%);
}

.applications-arrows {
    display: flex;
    gap: .6rem;
}

button.app-arrow,
button.app-arrow.news-prev,
button.app-arrow.news-next,
button.app-arrow.yorum-prev,
button.app-arrow.yorum-next,
.applications-arrows .app-arrow,
.news-arrows .app-arrow,
.yorum-arrows .app-arrow {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: none !important;
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: .25s !important;
    box-shadow: 0 4px 10px rgba(166, 124, 0, .25) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

button.app-arrow:hover,
.applications-arrows .app-arrow:hover,
.news-arrows .app-arrow:hover,
.yorum-arrows .app-arrow:hover {
    background: radial-gradient(circle at 30% 30%, #FFF3D6 0%, #E6C86E 40%, #C9A227 75%, #A67C00 100%) !important;
    transform: translateY(-2px);
}

.applications-slider {
    overflow: hidden;
    position: relative;
}

.applications-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .5s ease;
}

.applications-track.tab-panel {
    display: none;
}

.applications-track.tab-panel.active {
    display: flex;
}

.applications-track.tab-panel:not(.active) .application-card {
    flex: 0 0 0;
    min-width: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.application-card {
    flex: 0 0 calc(25% - 1.125rem);
    text-align: center;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.application-card:hover {
    text-decoration: none;
    color: inherit;
}

.application-card a {
    display: block;
}

.application-image {
    width: 85%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid #fff;
    box-shadow: var(--shadow);
    transition: .3s;
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.application-card:hover .application-image {
    box-shadow: var(--shadow-lg);
}

.application-card:hover .application-image img {
    transform: scale(1.08);
}

.application-card h4 {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: .25s;
}

.application-card:hover h4 {
    color: var(--pink-dark);
}

@media (max-width: 900px) {
    .applications-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .applications-title {
        width: 100%;
        justify-content: space-between;
    }

    .applications-tabs .tab-btn {
        padding: .45rem .8rem;
        font-size: .8rem;
    }

    .applications-arrows {
        align-self: flex-end;
    }

    .applications-header h2 {
        font-size: 1.2rem;
    }

    .app-arrow {
        width: 36px;
        height: 36px;
        font-size: .95rem;
    }

    .application-card {
        flex: 0 0 80%;
    }

    .applications-track {
        gap: 1rem;
    }

}

.coffee-section {
    background: var(--bg-soft);
}

.coffee-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.coffee-subtitle {
    display: block;
    color: var(--text-light);
    font-size: .85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.coffee-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.coffee-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.coffee-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.coffee-image img {
    width: 100%;
    min-height: 280px;
    object-fit: cover;
}

/* News section */
.news-section {
    background: #fff;
}

.news-section .section-title h2 {
    color: var(--pink-dark);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-section .applications-slider {
    overflow: hidden;
}

.news-section .applications-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .5s ease;
}

.news-section .news-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
}

@media (max-width: 900px) {
    .news-section .news-card {
        flex: 0 0 85%;
    }
}

.news-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .25s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.news-card:hover .news-image img {
    transform: scale(1.06);
}

.news-body {
    padding: 1.5rem;
}

.news-date {
    color: var(--text-light);
    font-size: .85rem;
    display: block;
    margin-bottom: .5rem;
}

.news-body h4 {
    font-size: 1.1rem;
    margin-bottom: .6rem;
}

.news-body h4 a {
    color: var(--primary);
}

.news-body h4 a:hover {
    color: var(--pink-dark);
}

.news-body p {
    color: var(--text-light);
    font-size: .95rem;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--pink-dark);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Testimonials */
.testimonials {
    background: var(--bg-soft);
}

/* Testimonials */
.testimonials {
    background: var(--bg-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.testimonials .applications-slider {
    overflow: hidden;
}

.testimonials .applications-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .5s ease;
}

.testimonials .testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 240px;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--pink);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    min-height: 3.6em;
}

.testimonial-card h5 {
    color: var(--primary);
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .testimonials .testimonial-card {
        flex: 0 0 85%;
    }
}

/* Newsletter */
.newsletter-section {
    background: var(--bg-soft);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h3 {
    color: var(--primary);
    margin-bottom: .5rem;
}

.newsletter-box p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.newsletter-form {
    display: flex;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form .form-control {
    flex: 1;
    min-width: 240px;
}

.newsletter-form .btn {
    padding: .85rem 1.4rem;
}

/* Footer */
.main-footer {
    background: radial-gradient(circle at 50% 0%, #D4AF37 0%, #B8860B 40%, #A67C00 100%);
    color: #fff;
    padding: 3rem 0;
    margin-top: 0;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.2rem;
}

.footer-simple .footer-logo {
    height: 80px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    background: #fff;
    padding: 12px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.footer-simple h4 {
    font-size: 1.5rem;
    color: #fff;
}

.footer-copy {
    font-size: .95rem;
    opacity: .95;
    margin: 0;
}

@media (max-width: 576px) {
    .main-footer {
        padding: 2rem 0;
    }

    .footer-simple .footer-logo {
        height: 64px;
        max-width: 200px;
        padding: 10px 18px;
        border-radius: 12px;
    }

    .footer-copy {
        font-size: .85rem;
    }
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.2);
    padding: 1.5rem 0;
    text-align: center;
    font-size: .9rem;
    opacity: .9;
}

/* Breadcrumb */
.page-header {
    background: var(--bg-soft);
    padding: 3.5rem 1rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    color: var(--pink-dark);
}

/* Randevu sayfasÄ± kÃ¼Ã§Ã¼k baÅŸlÄ±k */
.randevu-page-header {
    padding: 1.2rem 1rem;
}

.randevu-page-header h1 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin: 0;
}

/* Detail page */
.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-image img {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
}

.detail-content h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.detail-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: .5rem 1.2rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: .2s;
    color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    border-color: #A67C00;
    color: #fff;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    color: #fff;
    padding: 1rem;
    font-size: .9rem;
    opacity: 0;
    transition: .25s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Video gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.video-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    padding: 1rem 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: .2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--pink-dark);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, .12);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-card i {
    font-size: 1.4rem;
    color: var(--pink-dark);
}

.alert {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.alert-success { background: #fce7f3; color: #9d174d; }
.alert-danger { background: #fee2e2; color: #991b1b; }
.alert-info { background: #dbeafe; color: #1e40af; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 2rem;
}

.pagination a,
.pagination span {
    padding: .5rem .9rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    min-width: 38px;
    text-align: center;
    color: var(--text);
}

.pagination a:hover {
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    color: #fff;
    border-color: #A67C00;
}

.pagination .current {
    background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%);
    color: #fff;
    border-color: #A67C00;
}

/* Randevu */
.randevu-section {
    padding: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
}

.randevu-frame {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: #fff;
    position: relative;
}

.randevu-frame iframe {
    width: 100%;
    height: calc(100% + 70px);
    min-height: 600px;
    border: none;
    display: block;
    position: absolute;
    top: -70px;
    left: 0;
}

@media (max-width: 900px) {
    .randevu-section {
        height: 100vh;
        min-height: 500px;
    }
    .randevu-frame iframe {
        min-height: 500px;
        height: calc(100% + 70px);
    }
}

@media (max-width: 576px) {
    .randevu-section {
        height: 100vh;
        min-height: 450px;
    }
    .randevu-frame iframe {
        min-height: 450px;
        height: calc(100% + 60px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-desktop,
    .top-bar .container div:last-child {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .about-grid,
    .detail-grid,
    .contact-grid,
    .coffee-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .coffee-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        width: 100%;
    }
}

/* Arama Modalı */
.nav-search-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    padding: .5rem;
    margin-right: .5rem;
    transition: .25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-search-btn:hover {
    color: var(--pink-dark);
    transform: scale(1.1);
}

.search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,.65);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: flex-start;
    padding-top: 15vh;
    padding-left: 1rem;
    padding-right: 1rem;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    width: 100%;
    max-width: 560px;
    max-height: 70vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: searchModalIn .3s ease;
}

@keyframes searchModalIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.search-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: .2rem;
    transition: .25s;
}

.search-modal-close:hover {
    color: var(--pink-dark);
}

.search-modal-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    text-align: center;
}

#searchInput {
    width: 100%;
    padding: .9rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 1rem;
    transition: .2s;
}

#searchInput:focus {
    outline: none;
    border-color: var(--pink-dark);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, .15);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.search-results a {
    display: block;
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    transition: .2s;
    text-decoration: none;
}

.search-results a:hover {
    background: var(--bg-soft);
    color: var(--pink-dark);
}

@media (max-width: 900px) {
    .search-modal {
        padding-top: 10vh;
    }
    .search-modal-content {
        padding: 1.5rem;
        max-height: 80vh;
    }
}

/* Mobil Arama Butonu */
.mobile-search-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--pink-dark);
    cursor: pointer;
    padding: 0;
    margin-right: .1rem;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-search-btn:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .mobile-search-btn {
        display: inline-flex;
    }
}