/* ============================================
   MADAMECACAO V3 - SECTIONS
   Tüm bölüm stilleri (Header, Hero, About, Products, vb.)
   ============================================ */

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    background: transparent;
    transition: all var(--transition-base) var(--ease-out);
    padding: var(--space-lg) 0;
}

.header.scrolled {
    background: rgba(74, 44, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md) 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: transform var(--transition-base) var(--ease-out);
}

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

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-base) var(--ease-out);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width var(--transition-base) var(--ease-out);
}

.nav-link:hover {
    color: var(--color-secondary);
}

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

.nav-link.active {
    color: var(--color-secondary);
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: all var(--transition-base) var(--ease-out);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

/* Kar taneleri container */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    top: -10vh;
    color: #fff;
    font-size: 1em;
    user-select: none;
    pointer-events: none;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

/* Kardan Adam Simgesi */
.snowman-container {
    position: absolute;
    bottom: 100px;
    right: 10%;
    z-index: 15;
    animation: float 3s ease-in-out infinite;
}

.snowman {
    position: relative;
    width: 120px;
    height: 180px;
}

/* Kardan Adam Başı */
.snowman-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.snowman-eyes {
    position: absolute;
    top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.eye {
    width: 6px;
    height: 6px;
    background: #2D1B19;
    border-radius: 50%;
}

.snowman-nose {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 12px solid #ff8c42;
}

.snowman-mouth {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    border-bottom: 2px solid #2D1B19;
    border-radius: 0 0 20px 20px;
}

/* Kardan Adam Gövdesi */
.snowman-body {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.snowman-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2D1B19;
    border-radius: 50%;
}

.snowman-button:nth-child(1) {
    top: 15px;
}

.snowman-button:nth-child(2) {
    top: 30px;
}

.snowman-button:nth-child(3) {
    top: 45px;
}

/* Kardan Adam Tabanı */
.snowman-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Kardan Adam Şapkası */
.snowman-hat {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hat-top {
    width: 30px;
    height: 25px;
    background: linear-gradient(135deg, #2D1B19 0%, #1a0f0e 100%);
    border-radius: 5px 5px 0 0;
    margin: 0 auto;
}

.hat-brim {
    width: 50px;
    height: 8px;
    background: linear-gradient(135deg, #2D1B19 0%, #1a0f0e 100%);
    border-radius: 15px;
    margin-top: -2px;
}

/* Kardan Adam Kolları */
.snowman-arms {
    position: relative;
}

.arm {
    position: absolute;
    width: 40px;
    height: 3px;
    background: #8B4513;
    border-radius: 5px;
}

.left-arm {
    top: 70px;
    left: -10px;
    transform: rotate(-30deg);
}

.right-arm {
    top: 70px;
    right: -10px;
    transform: rotate(30deg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-behind);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: var(--z-base);
    max-width: 900px;
    padding: 0 var(--space-lg);
    animation: fadeInUp 1s var(--ease-out);
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-2xl);
    animation: fadeInDown 1s var(--ease-out) 0.3s backwards;
}

.hero-logo {
    width: clamp(200px, 30vw, 400px);
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-slow) var(--ease-out);
}

.hero-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-light);
    font-style: italic;
    color: var(--color-white);
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-white);
    border-radius: var(--radius-full);
    position: relative;
}

.hero-scroll span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Pasta/Tatlı düşme animasyonu container */
.pastries-falling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.pastry-item {
    position: absolute;
    top: -10%;
    font-size: 1.5em;
    user-select: none;
    pointer-events: none;
    opacity: 0.15;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.about-text h2::after {
    left: 0;
    transform: translateX(0);
}

.about-text p {
    margin-bottom: var(--space-lg);
}

.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-float);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slower) var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   PRODUCTS/MENU SECTION
   ============================================ */

.products {
    background: var(--color-light);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title h2 {
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--color-gray-600);
    margin-top: var(--space-md);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-xl);
    background: var(--color-white);
    color: var(--color-primary);
    border: var(--border-width) solid var(--color-gray-300);
    border-radius: var(--radius-full);
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-base) var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

/* ============================================
   INSTAGRAM FEED SECTION
   ============================================ */

/* ─── Eski instagram stilleri (geriye dönük) ─── */
.instagram-feed { background: var(--color-white); }
.instagram-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-lg); }
.instagram-item { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base) var(--ease-out); }
.instagram-item:hover img { transform: scale(1.1); }
.instagram-overlay { position: absolute; inset: 0; background: rgba(74,44,42,0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition-base) var(--ease-out); }
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-icon { font-size: var(--font-size-3xl); color: var(--color-white); }

/* ─── Yeni Instagram Bölümü ─── */
.instagram-section {
    background: var(--color-white);
}

/* Profil kartı */
.ig-header {
    margin-bottom: var(--space-3xl);
}

.ig-profile-card {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: linear-gradient(135deg, var(--color-light) 0%, #fff8f0 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl) var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.ig-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.ig-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
    padding: 3px;
}

.ig-verified {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background: #0095f6;
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.ig-profile-info {
    flex: 1;
}

.ig-username {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 4px;
}

.ig-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--space-sm);
}

.ig-stats {
    display: flex;
    gap: var(--space-xl);
    font-size: var(--font-size-sm);
    color: var(--color-gray-700);
}

.ig-stats strong {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.ig-follow-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: all var(--transition-base) var(--ease-out);
    flex-shrink: 0;
    white-space: nowrap;
}

.ig-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.35);
    color: white;
}

/* Widget alanı */
/* ─────────────────────────────────────────────
   INSTAGRAM SHOWCASE — Telefon Mockup
───────────────────────────────────────────── */

.ig-showcase {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-5xl);
    align-items: center;
}

/* Sol metin */
.ig-showcase-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.ig-showcase-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.8rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1.25;
}

.ig-showcase-desc {
    font-size: var(--font-size-base);
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
    max-width: 480px;
}

.ig-showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.ig-showcase-list li {
    font-size: var(--font-size-base);
    color: var(--color-gray-700);
    font-weight: var(--font-weight-medium);
}

.ig-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-2xl);
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    text-decoration: none;
    transition: all var(--transition-base) var(--ease-out);
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.25);
}

.ig-showcase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 39, 67, 0.4);
    color: white;
}

/* ── Telefon Mockup ── */
.ig-phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ig-phone {
    position: relative;
}

.ig-phone-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(220,39,67,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ig-phone-frame {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 1px #333,
        0 30px 80px rgba(0,0,0,0.5),
        inset 0 0 0 1px #444;
}

/* Kamera çıkıntısı (dynamic island) */
.ig-phone-frame::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 0 0 1px #333;
}

.ig-phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Status Bar */
.ig-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 4px;
    font-size: 11px;
    font-weight: 600;
    color: #1a1a1a;
    flex-shrink: 0;
}

.ig-status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1a1a1a;
}

/* Instagram App Bar */
.ig-app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px 8px;
    border-bottom: 0.5px solid #dbdbdb;
    flex-shrink: 0;
}

.ig-app-logo {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Billabong', cursive, Georgia, serif;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.ig-app-bar svg { color: #1a1a1a; }

/* Profil alanı */
.ig-app-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 6px;
    flex-shrink: 0;
}

.ig-app-avatar-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    flex-shrink: 0;
}

.ig-app-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    display: block;
}

.ig-app-stats {
    display: flex;
    gap: 14px;
    flex: 1;
    justify-content: space-around;
}

.ig-app-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.ig-app-stat strong {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.ig-app-stat span {
    font-size: 10px;
    color: #666;
}

.ig-app-bio {
    padding: 2px 14px 6px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex-shrink: 0;
}

.ig-app-bio strong {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
}

.ig-app-bio span {
    font-size: 10px;
    color: #444;
}

.ig-app-follow-row {
    display: flex;
    gap: 6px;
    padding: 4px 14px 8px;
    flex-shrink: 0;
}

.ig-app-follow-btn,
.ig-app-msg-btn {
    flex: 1;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.ig-app-follow-btn {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    color: white;
}

.ig-app-msg-btn {
    background: #efefef;
    color: #1a1a1a;
}

/* Kaydıran Feed */
.ig-feed-mask {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-top: 0.5px solid #dbdbdb;
}

/* Üst ve alt soluklaşma */
.ig-feed-mask::before,
.ig-feed-mask::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 30px;
    z-index: 2;
    pointer-events: none;
}
.ig-feed-mask::before { top: 0; background: linear-gradient(to bottom, white, transparent); }
.ig-feed-mask::after  { bottom: 0; background: linear-gradient(to top, white, transparent); }

/* Track: 6 satır × 85px = 510px, ilk 3 satır tekrar → seamless loop */
.ig-feed-track {
    display: flex;
    flex-direction: column;
    animation: igFeedScroll 14s linear infinite;
    will-change: transform;
}

/* Her satır 3 kare fotoğraf */
.ig-feed-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-bottom: 1.5px;
    flex-shrink: 0;
}

.ig-feed-row img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* 6 satır: her satır ~85px → 6 × (85+1.5) ≈ 519px
   İlk 3 satır (259.5px) tekrar edince seamless loop */
@keyframes igFeedScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Alt Nav */
.ig-app-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 10px 10px;
    border-top: 0.5px solid #dbdbdb;
    background: white;
    flex-shrink: 0;
}

.ig-app-nav svg { color: #1a1a1a; }

.ig-nav-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #1a1a1a;
}

/* ─── Ticker (yalnızca mobilde görünür) ─── */
.ig-ticker-wrap {
    display: none; /* Masaüstünde gizli */
}

.ig-desktop-info {
    display: flex; /* Masaüstünde görünür */
    flex-direction: column;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    /* Profil kartı: yataydan dikeye */
    .ig-profile-card {
        flex-wrap: wrap;
        gap: var(--space-md);
        padding: var(--space-lg);
        align-items: center;
    }

    /* Masaüstü bilgi bölümünü gizle */
    .ig-desktop-info {
        display: none;
    }

    /* Ticker'ı göster */
    .ig-ticker-wrap {
        display: flex;
        flex: 1;
        min-width: 0;
        height: 48px;
        overflow: hidden;
        position: relative;
    }

    /* Yukarıdan ve aşağıdan soluklaşma efekti */
    .ig-ticker-wrap::before,
    .ig-ticker-wrap::after {
        content: '';
        position: absolute;
        left: 0; right: 0;
        height: 12px;
        z-index: 2;
        pointer-events: none;
    }
    .ig-ticker-wrap::before {
        top: 0;
        background: linear-gradient(to bottom, var(--color-light), transparent);
    }
    .ig-ticker-wrap::after {
        bottom: 0;
        background: linear-gradient(to top, var(--color-light), transparent);
    }

    /* Track — 6 öğe, her biri 48px yüksek → toplam 288px */
    .ig-ticker-track {
        display: flex;
        flex-direction: column;
        animation: igScrollDown 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        will-change: transform;
    }

    .ig-ticker-item {
        height: 48px;
        display: flex;
        align-items: center;
        font-family: var(--font-secondary);
        font-size: var(--font-size-sm);
        color: var(--color-gray-700);
        white-space: nowrap;
        padding: 0 var(--space-xs);
    }

    .ig-ticker-handle {
        font-weight: var(--font-weight-bold);
        color: var(--color-primary);
        font-size: var(--font-size-base);
    }

    .ig-ticker-item strong {
        color: var(--color-primary);
        font-weight: var(--font-weight-bold);
    }

    /* Aşağı kayan animasyon:
       6 öğe × 48px = 288px. Her öğede 1.5s dur, sonra kayar. */
    @keyframes igScrollDown {
        0%       { transform: translateY(0); }
        12%      { transform: translateY(0); }
        16.66%   { transform: translateY(-48px); }
        28.66%   { transform: translateY(-48px); }
        33.32%   { transform: translateY(-96px); }
        45.32%   { transform: translateY(-96px); }
        49.98%   { transform: translateY(-144px); }
        61.98%   { transform: translateY(-144px); }
        66.64%   { transform: translateY(-192px); }
        78.64%   { transform: translateY(-192px); }
        83.3%    { transform: translateY(-240px); }
        95.3%    { transform: translateY(-240px); }
        100%     { transform: translateY(0); }
    }

    /* Follow butonu tam genişlik */
    .ig-follow-btn {
        width: 100%;
        justify-content: center;
    }

    /* Showcase: telefon alta geçer */
    .ig-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .ig-phone-wrap {
        order: -1;
    }

    .ig-showcase-btn {
        align-self: stretch;
        justify-content: center;
    }

    /* Telefon biraz küçülsün */
    .ig-phone-frame {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 480px) {
    .ig-phone-frame {
        width: 220px;
        height: 440px;
    }
}

/* ============================================
   TESTIMONIALS — Sağdan Sola Kayan Bant
   ============================================ */

.testimonials {
    background: var(--color-light);
    overflow: hidden;
    padding-bottom: var(--space-5xl);
}

/* Tam genişlik kayan bant */
.reviews-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--space-md) 0;
}

/* Kenar soluklaşma efektleri */
.reviews-fade-left,
.reviews-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.reviews-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--color-light) 20%, transparent);
}

.reviews-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--color-light) 20%, transparent);
}

/* Kayan track */
.reviews-marquee-track {
    display: flex;
    gap: var(--space-xl);
    width: max-content;
    animation: reviewsScroll 40s linear infinite;
    will-change: transform;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Yorum kartı */
.review-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    padding: var(--space-2xl);
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: box-shadow var(--transition-base) var(--ease-out),
                transform var(--transition-base) var(--ease-out);
}

.review-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

/* Kart başlığı */
.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Avatar (harf bazlı) */
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: white;
    flex-shrink: 0;
    letter-spacing: 0;
}

.review-avatar.female {
    background: linear-gradient(135deg, var(--color-accent), #e8948a);
}

.review-avatar.male {
    background: linear-gradient(135deg, var(--color-primary), #6B4423);
}

.review-header > div:nth-child(2) {
    flex: 1;
}

.review-header h4 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: 2px;
}

.review-header span {
    font-size: var(--font-size-xs);
    color: var(--color-gray-500);
}

.review-stars {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* Yorum metni */
.review-card p {
    font-family: var(--font-accent);
    font-size: var(--font-size-base);
    font-style: italic;
    line-height: var(--line-height-relaxed);
    color: var(--color-gray-700);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-info h3 {
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: var(--font-size-md);
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.contact-details p {
    font-size: var(--font-size-base);
    color: var(--color-gray-700);
}

.contact-form {
    background: var(--color-light);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
}

.contact-map {
    margin-top: var(--space-3xl);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-dark);
    color: var(--color-gray-400);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-section p,
.footer-section a {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-sm);
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--font-size-lg);
    transition: all var(--transition-base) var(--ease-out);
}

.social-link:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: var(--border-width) solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.footer-bottom a {
    color: var(--color-secondary);
}

/* ============================================
   BUTİK PASTALAR BÖLÜMÜ
   ============================================ */

.butik-pasta-section {
    background: var(--color-light);
    position: relative;
    overflow: hidden;
}

/* Arka plan süsleme - hafif pasta motifi */
.butik-pasta-bg-ornament {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(201, 112, 100, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Label */
.butik-label {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

/* Giriş metni */
.butik-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.butik-intro-text {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
    line-height: 1.9;
    color: var(--color-gray-700);
    margin-bottom: var(--space-xl);
}

.butik-intro-text strong {
    color: var(--color-primary);
}

.butik-intro-text em {
    color: var(--color-accent);
    font-style: normal;
    font-weight: var(--font-weight-semibold);
}

.butik-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.butik-badge {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    background: var(--color-white);
    border: 1.5px solid rgba(74, 44, 42, 0.15);
    border-radius: var(--radius-full);
    padding: var(--space-xs) var(--space-lg);
    box-shadow: var(--shadow-xs);
}

/* Galeri grid */
.butik-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

/* Çerçeve */
.butik-frame {
    position: relative;
}

.butik-frame-inner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-white);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.25),
        0 0 0 5px rgba(212, 175, 55, 0.08),
        0 0 0 6px rgba(212, 175, 55, 0.18),
        var(--shadow-card);
    transition: all var(--transition-slow) var(--ease-out);
    padding: 10px;
}

.butik-frame:hover .butik-frame-inner {
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.5),
        0 0 0 5px rgba(212, 175, 55, 0.12),
        0 0 0 6px rgba(212, 175, 55, 0.35),
        var(--shadow-card-hover);
    transform: translateY(-8px);
}

/* Köşe süslemeleri */
.butik-frame-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 2;
    pointer-events: none;
}

.butik-frame-corner.tl { top: 4px; left: 4px; border-top: 2px solid var(--color-secondary); border-left: 2px solid var(--color-secondary); border-radius: var(--radius-sm) 0 0 0; }
.butik-frame-corner.tr { top: 4px; right: 4px; border-top: 2px solid var(--color-secondary); border-right: 2px solid var(--color-secondary); border-radius: 0 var(--radius-sm) 0 0; }
.butik-frame-corner.bl { bottom: 4px; left: 4px; border-bottom: 2px solid var(--color-secondary); border-left: 2px solid var(--color-secondary); border-radius: 0 0 0 var(--radius-sm); }
.butik-frame-corner.br { bottom: 4px; right: 4px; border-bottom: 2px solid var(--color-secondary); border-right: 2px solid var(--color-secondary); border-radius: 0 0 var(--radius-sm) 0; }

/* Üst/alt orta süs çizgisi */
.butik-frame-ornament {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    z-index: 2;
}

.butik-frame-ornament.top { top: 4px; }
.butik-frame-ornament.bottom { bottom: 4px; }

/* Pasta görsel */
.butik-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-xl) - 4px);
    transition: transform var(--transition-slow) var(--ease-out);
}

.butik-frame:hover .butik-img {
    transform: scale(1.04);
}

/* Hover overlay */
.butik-overlay {
    position: absolute;
    inset: 10px;
    border-radius: calc(var(--radius-xl) - 4px);
    background: linear-gradient(to top, rgba(45, 27, 25, 0.85) 0%, rgba(45, 27, 25, 0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-base) var(--ease-out);
}

.butik-frame:hover .butik-overlay {
    opacity: 1;
}

.butik-overlay-text {
    font-family: var(--font-accent);
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    letter-spacing: 0.03em;
}

.butik-order-btn {
    transform: translateY(8px);
    transition: transform var(--transition-base) var(--ease-out);
}

.butik-frame:hover .butik-order-btn {
    transform: translateY(0);
}

/* CTA kutusu */
.butik-cta {
    margin-top: var(--space-xl);
}

.butik-cta-inner {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: linear-gradient(135deg, #4A2C2A 0%, #6B4423 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl) var(--space-3xl);
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.butik-cta-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.butik-cta-inner h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.butik-cta-inner p {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--line-height-relaxed);
}

.butik-cta-inner .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .butik-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 640px) {
    .butik-gallery {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .butik-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl);
        gap: var(--space-lg);
    }

    .butik-intro-text {
        font-size: 1.05rem;
    }
}
