/* ===========================
   BUTTERFLY HAIR STYLE — style.css
   Aesthetic: Luxury Editorial
=========================== */

:root {
    --cream: #F8FBFF;
    /* Çok hafif mavimsi beyaz */
    --warm-white: #FFFFFF;
    --gold: #BDE0FE;
    /* Çok Açık Bebek Mavisi (Primary) */
    --gold-light: #E0F4FF;
    /* Daha da açık mavi */
    --dark: #2B3A4A;
    /* Koyu Mavi-Gri */
    --dark-soft: #394A5D;
    /* Yumuşak Koyu Mavi */
    --text: #2D3748;
    /* Koyu Metin */
    --text-muted: #718096;
    /* Gri Metin */
    --rose: #FFC8DD;
    /* Açık Bebek Pembesi */
    --sage: #FFAFCC;
    /* Biraz daha koyu pembe tonu (Hover vs için) */
    --wp-green: #25D366;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 8px 40px rgba(43, 58, 74, 0.08);
    --shadow-lg: 0 20px 60px rgba(43, 58, 74, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79, 172, 254, 0.12);
    box-shadow: 0 4px 30px rgba(43, 58, 74, 0.03);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 35px rgba(43, 58, 74, 0.06);
    padding: 10px 0;
    border-bottom: 1px solid rgba(79, 172, 254, 0.18);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.3rem;
    color: blue;
    /* Mavi */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--gold-light);
    color: var(--dark);
}

.wp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: var(--wp-green);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.wp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--rose) !important;
    border: 1px solid rgba(255, 175, 204, 0.5) !important;
    border-radius: 12px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 175, 204, 0.3);
}

.hamburger:hover {
    background: rgba(255, 175, 204, 0.9) !important;
    border-color: rgba(255, 175, 204, 0.8) !important;
    transform: scale(1.05);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #FFFFFF !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('images/hero-bg.png') center/cover no-repeat;
    padding: 120px 24px 140px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(43, 58, 74, 0.55);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #89cff044, transparent 70%);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ffc8dd55, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease forwards;
    background: rgba(43, 58, 74, 0.8);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 9vw, 6.2rem);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.15s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title em {
    font-style: italic;
    color: var(--rose);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(248, 251, 255, 0.85);
    max-width: 480px;
    margin: 0 auto 40px;
    animation: fadeUp 0.8s ease 0.3s both;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.45s both;
}

.btn-primary {
    padding: 14px 32px;
    background: var(--rose);
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 200, 221, 0.4);
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(189, 224, 254, 0.5);
}

.btn-outline {
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--cream);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: var(--rose);
    color: var(--rose);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 247, 242, 0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.hero-scroll:hover {
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(250, 247, 242, 0.4), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

/* Kampanyalar gradient arkaplan */
#kampanyalar {
    background: linear-gradient(135deg, var(--gold-light), var(--rose));
    position: relative;
}

#kampanyalar .section-tag {
    border-color: rgba(43, 58, 74, 0.3);
    color: var(--dark);
    background: rgba(255, 255, 255, 0.4);
}

#kampanyalar .section-title {
    color: var(--dark);
}

#kampanyalar .section-desc {
    color: var(--dark-soft);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.light .section-title,
.section-header.light .section-desc {
    color: var(--cream);
}

.section-header.light .section-tag {
    border-color: rgba(137, 207, 240, 0.5);
    /* Baby Blue transparent */
    color: var(--gold-light);
}

.section-tag {
    display: inline-block;
    padding: 4px 16px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ===== KAMPANYALAR ===== */
.kampanya-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.kampanya-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 24px;
    position: relative;
    border: 1px solid rgba(137, 207, 240, 0.2);
    /* Baby Blue transparent */
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kampanya-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.kampanya-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--rose);
    color: var(--dark);
}

.kampanya-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.kampanya-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--dark);
}

.kampanya-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.kampanya-fiyat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 4px 0;
}

.kampanya-fiyat .eski {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.kampanya-fiyat .yeni {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose);
}

.kampanya-sure {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-kampanya {
    display: inline-block;
    margin-top: auto;
    padding: 10px 24px;
    background: var(--rose);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    text-align: center;
    transition: var(--transition);
}

.btn-kampanya:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ===== RANDEVU ===== */
.randevu-section {
    position: relative;
    background: url('images/randevu-bg.png') center/cover no-repeat;
    z-index: 1;
}

.randevu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(43, 58, 74, 0.88);
    z-index: -1;
}

.randevu-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 48px;
    align-items: start;
}

.randevu-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--cream);
    margin-bottom: 32px;
}

.ozellik-liste {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ozellik-liste li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.o-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(137, 207, 240, 0.15);
    /* Baby Blue transparent */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ozellik-liste strong {
    display: block;
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 4px;
}

.ozellik-liste p {
    font-size: 0.9rem;
    color: rgba(250, 247, 242, 0.55);
}

.randevu-form-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.alert {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.alert.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.alert.error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.randevu-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.inline {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.form-group.inline label {
    white-space: nowrap;
    width: 110px;
    flex-shrink: 0;
    text-align: left;
}

.form-group.inline input,
.form-group.inline select {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #e8e0d0;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--warm-white);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(137, 207, 240, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--rose);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 200, 221, 0.35);
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ===== ÜRÜNLER ===== */
.urun-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid #e8e0d0;
    background: white;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    font-weight: 700;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(137, 207, 240, 0.3);
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.05);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-container {
        gap: 8px;
    }

    .urun-card {
        flex: 0 0 100% !important;
        min-width: unset !important;
    }

    .urun-grid {
        gap: 0 !important;
    }
}

.urun-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 24px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    cursor: grab;
    scroll-behavior: smooth;
    flex-grow: 1;
}

.urun-grid:active {
    cursor: grabbing;
}

.urun-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.urun-card {
    flex: 0 0 calc((100% - 72px) / 4);
    scroll-snap-align: start;
    flex-shrink: 0;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(137, 207, 240, 0.12);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.urun-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.urun-card.hidden {
    display: none !important;
}

.urun-img {
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.urun-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.urun-card:hover .urun-img img {
    transform: scale(1.08);
}

.urun-bilgi {
    padding: 16px;
}

.urun-kategori {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.urun-bilgi h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark);
    margin: 6px 0 8px;
}

.urun-bilgi p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 3em;
}

.urun-alt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.urun-fiyat {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}



/* ===== KONUM ===== */
.konum-section {
    background: var(--warm-white);
}

.konum-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.konum-bilgi {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.konum-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.konum-ikon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(26, 18, 8, 0.08);
}

.konum-item strong {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.konum-item p,
.konum-item a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.konum-item a:hover {
    color: var(--gold);
}

.wp-big-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--wp-green);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.wp-big-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.harita-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
}

.harita-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.harita-container {
    border-radius: var(--radius);
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

/* ===== YORUMLAR GRADIENT ===== */
#yorumlar {
    background: linear-gradient(135deg, var(--gold-light), var(--rose)) !important;
    position: relative;
}

#yorumlar .section-tag {
    border-color: rgba(43, 58, 74, 0.3);
    color: var(--dark);
    background: rgba(255, 255, 255, 0.4);
}

#yorumlar .section-title {
    color: var(--dark);
}

#yorumlar .section-desc {
    color: var(--dark-soft);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #121A21 0%, #080D11 100%) !important;
    color: var(--cream);
    padding: 70px 0 40px !important;
    border-top: 3px solid var(--rose) !important;
    position: relative;
}

.footer-inner {
    display: grid !important;
    grid-template-columns: 2fr 1.2fr 1.8fr !important;
    gap: 48px !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(250, 247, 242, 0.65);
    line-height: 1.6;
    max-width: 320px;
}

.footer-column-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.footer-links-vertical a {
    font-size: 0.95rem;
    color: rgba(250, 247, 242, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-vertical a::before {
    content: "•";
    color: var(--rose);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-links-vertical a:hover {
    color: var(--rose);
    padding-left: 6px;
}

.footer-links-vertical a:hover::before {
    transform: scale(1.3);
}

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

.footer-contact-info p {
    font-size: 0.95rem;
    color: rgba(250, 247, 242, 0.7);
    line-height: 1.5;
    margin: 0;
}

.footer-sosyal {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.sosyal-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.sosyal-btn.wp {
    background: var(--wp-green);
}

.sosyal-btn.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sosyal-btn:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.35);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        text-align: left;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* ===== FLOATING WP ===== */
.wp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--wp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: pulse-wp 3s infinite;
}

.wp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1.2);
    }
}

@keyframes pulse-wp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    .nav-inner {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    .logo {
        max-width: 75% !important;
    }

    .randevu-wrapper,
    .konum-wrapper {
        grid-template-columns: 1fr;
    }

    .harita-container {
        height: 300px;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid #e8e0d0;
        box-shadow: 0 8px 32px rgba(26, 18, 8, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link,
    .wp-btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    /* Hide WP button inside the mobile menu dropdown */
    .nav-links.open .wp-btn,
    .nav-links.open li:has(.wp-btn) {
        display: none !important;
    }
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .form-group.inline {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .form-group.inline label {
        width: auto;
    }

    .randevu-form-card {
        padding: 28px 20px;
    }

    .section {
        padding: 70px 0;
    }
}

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

    .urun-grid {
        display: flex;
        gap: 0 !important;
    }

    .urun-card {
        flex: 0 0 100% !important;
        min-width: unset !important;
    }

    .urun-bilgi {
        padding: 16px 12px;
    }

    .urun-bilgi h4 {
        font-size: 1rem;
    }

    .urun-fiyat {
        font-size: 1.1rem;
    }

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

    .footer-inner {
        flex-direction: column;
        gap: 28px;
    }
}

@media (max-width: 400px) {
    .urun-grid {
        display: flex;
        gap: 0 !important;
    }

    .urun-card {
        flex: 0 0 100% !important;
    }
}

/* ===== PRODUCT DETAIL MODAL ===== */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(43, 58, 74, 0.4);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 24px;
}

.product-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.product-modal-content {
    background: white;
    border-radius: var(--radius);
    width: 100%;
    max-width: 800px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.product-modal.open .product-modal-content {
    transform: translateY(0);
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-modal-close:hover {
    background: var(--rose);
    color: var(--dark);
    transform: rotate(90deg);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

.product-modal-img {
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-modal-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.product-modal-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
}

.product-modal-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    line-height: 1.2;
}

.product-modal-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    border-top: 1px solid #edf2f7;
    padding-top: 20px;
}

.product-modal-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
    }

    .product-modal-info {
        padding: 24px;
    }

    .product-modal-img img {
        aspect-ratio: auto;
    }

    .product-modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* ===== YORUMLAR SHOW MORE ===== */
.yorum-gizli {
    display: none !important;
}

.btn-daha-fazla {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-daha-fazla:hover {
    background: var(--dark);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 58, 74, 0.2);
}

.btn-daha-fazla svg {
    transition: transform 0.3s ease;
}

.btn-daha-fazla.acik svg {
    transform: rotate(180deg);
}

/* ===== INSTAGRAM ICON ===== */
.konum-ikon-ig {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.25);
}

.konum-ikon-ig svg {
    fill: white;
}

/* ==========================================================================
   COOKIE CONSENT & KVKK MODAL STYLES
   ========================================================================== */

/* KVKK Modal */
.kvkk-modal {
    position: fixed;
    inset: 0;
    background: rgba(43, 58, 74, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.kvkk-modal-content {
    background: white;
    border-radius: var(--radius);
    max-width: 540px;
    width: 100%;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
    box-sizing: border-box;
    border: 1px solid rgba(255, 200, 221, 0.3);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kvkk-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.kvkk-modal-close:hover {
    color: var(--dark);
    transform: rotate(90deg);
}

.kvkk-text-box {
    height: 260px;
    overflow-y: auto;
    border: 1px solid #edf2f7;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a5568;
    margin-top: 15px;
    background: #fafbfc;
    text-align: left;
}

/* Scrollbar styling for text box */
.kvkk-text-box::-webkit-scrollbar {
    width: 6px;
}

.kvkk-text-box::-webkit-scrollbar-track {
    background: #f7fafc;
}

.kvkk-text-box::-webkit-scrollbar-thumb {
    background: var(--rose);
    border-radius: 3px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 200, 221, 0.6);
    border-radius: var(--radius);
    padding: 20px 25px;
    box-shadow: 0 15px 40px rgba(43, 58, 74, 0.12);
    z-index: 10000;
    box-sizing: border-box;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media(min-width: 768px) {
    .cookie-banner {
        right: auto;
        left: 30px;
    }
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

@media(min-width: 480px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
}

.cookie-icon {
    font-size: 2.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-banner-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-soft);
    margin: 0;
    flex: 1;
}

.cookie-btn {
    background: var(--rose);
    color: var(--dark);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 200, 221, 0.35);
}

.cookie-btn:hover {
    background: var(--sage);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 175, 204, 0.45);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* ===== HİZMETLER MENÜSÜ ===== */
.hizmet-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hizmet-kategori-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.hizmet-kategori-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hizmet-kategori-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cbd5e0;
}

.hizmet-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hizmet-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    position: relative;
}

.hizmet-item:last-child {
    margin-bottom: 0;
}

.hizmet-ad-wrap {
    background: white;
    padding-right: 10px;
    z-index: 2;
}

.hizmet-ad {
    font-weight: 600;
    color: var(--text);
    font-size: 1.05rem;
}

.hizmet-nokta {
    flex-grow: 1;
    border-bottom: 2px dotted #e2e8f0;
    margin: 0 10px;
    position: relative;
    top: -6px;
    z-index: 1;
}

.hizmet-fiyat {
    font-weight: 700;
    color: var(--text);
    background: white;
    padding-left: 10px;
    z-index: 2;
}

@media (max-width: 768px) {
    .hizmet-menu {
        grid-template-columns: 1fr;
    }
}

/* ===== AÇILIR LİSTE (SELECT) KATEGORİ RENGİ ===== */
select optgroup {
    background-color: var(--rose);
    color: var(--dark);
    font-weight: 700;
    font-style: normal;
}

select option {
    background-color: #FFFFFF;
    color: #2D3748;
    font-weight: 500;
}

/* ===== EXTRA NARROW MOBILE RESPONSIVENESS ===== */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.15rem !important;
    }

    .logo-subtext {
        font-size: 0.95rem !important;
    }

    .logo-icon-svg {
        width: 30px !important;
        height: 28px !important;
    }

    .hero-subtitle {
        font-size: 0.75rem !important;
        padding: 6px 16px !important;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }

    .hero-desc {
        font-size: 0.95rem !important;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .container {
        padding: 0 16px !important;
    }
}