﻿/* Extracted from index.html style block 1 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
        --black: #0a0a0a;
        --white: #fafaf8;
        --cream: #f5f2ed;
        --warm-gray: #8c8880;
        --accent: #c4602a;
        --accent-light: #e8d5c4;
        --gold: #b8965a;
        --border: rgba(0,0,0,0.08);
        --font-display: 'Cormorant Garamond', Georgia, serif;
        --font-body: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--white); color: var(--black); overflow-x: hidden; }

    /* ── NAVBAR — Oturma Odası ile aynı: style.css padding/kırılımları geçerli; tipografi Inter ── */
    .navbar {
        font-family: 'Inter', sans-serif;
        flex-wrap: nowrap;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    .logo {
        font-family: 'Inter', sans-serif;
        font-size: 26px;
        font-weight: 800;
        letter-spacing: normal;
        text-decoration: none;
        color: #222;
    }
    .logo span { color: #b35900; }
    .nav-links {
        display: flex;
        flex: 1;
        justify-content: center;
        list-style: none;
        min-width: 0;
        /* gap: style.css (30px → 1250/1050 kırılımları) */
    }
    .nav-links a {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: normal;
        text-transform: uppercase;
        text-decoration: none;
        color: #444;
        white-space: nowrap;
        transition: color 0.3s;
    }
    .nav-links a:hover { color: #b35900; }
    .nav-links a.active {
        color: #b35900 !important;
        border-bottom: 2px solid #b35900;
    }
    .nav-icons {
        display: flex;
        gap: 20px;
        font-size: 18px;
        align-items: center;
        margin-right: 28px;
    }
    .nav-icons i {
        color: #333;
        cursor: pointer;
        transition: color 0.2s;
    }
    .nav-icons i:hover { color: #b35900; }
    .cart-wrapper { position: relative; cursor: pointer; }
    #cart-count {
        position: absolute;
        top: -10px;
        right: -12px;
        background: #b35900;
        color: #fff;
        font-size: 11px;
        padding: 2px 6px;
        border-radius: 50%;
        font-family: 'Inter', sans-serif;
    }

    /* Hamburger / mobil drawer: mobile.css + mobile.js */

    /* ── HERO ── (flex: style.css'teki flex+center'ı kesin geçer; metin sola yapışık) ── */
    .hero {
        height: 100vh;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        position: relative;
        overflow: hidden;
        background: #0a0a0a;
    }
    #hero-canvas-wrap {
        position: absolute; inset: 0;
        z-index: 0;
    }
    #hero-canvas-wrap canvas {
        width: 100% !important;
        height: 100% !important;
        display: block;
    }
    .hero::before {
        content: '';
        position: absolute; inset: 0; z-index: 1;
        background:
            linear-gradient(to right, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.1) 100%),
            linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
    }
    .hero-inner {
        position: relative;
        z-index: 2;
        flex: 0 1 auto;
        width: 100%;
        max-width: min(620px, 100%);
        box-sizing: border-box;
        text-align: left;
        padding: 0 56px;
        margin: 0;
    }
    .hero-kicker {
        display: inline-block;
        font-size: 10px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.7);
        border: 1px solid rgba(255,255,255,0.2);
        padding: 6px 20px;
        border-radius: 40px;
        margin-bottom: 36px;
    }
    .hero h1 {
        font-family: var(--font-display);
        font-size: clamp(52px, 7vw, 96px);
        font-weight: 300;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: #fff;
        margin-bottom: 28px;
    }
    .hero h1 em { font-style: italic; color: var(--accent); }
    .hero p {
        font-size: 16px;
        color: rgba(255,255,255,0.55);
        line-height: 1.75;
        max-width: 480px;
        margin: 0 0 48px;
        font-weight: 300;
    }
    .btn-main {
        display: inline-flex; align-items: center; gap: 12px;
        padding: 16px 40px;
        background: var(--accent);
        color: #fff;
        text-decoration: none;
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        transition: background 0.25s, gap 0.25s;
    }
    .btn-main::after { content: '→'; transition: transform 0.2s; }
    .btn-main:hover { background: #a84f22; }
    .btn-main:hover::after { transform: translateX(4px); }
    .hero-scroll {
        position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
        font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
        color: rgba(255,255,255,0.35);
        display: flex; flex-direction: column; align-items: center; gap: 12px;
        z-index: 2;
    }
    .hero-scroll::after {
        content: '';
        display: block; width: 1px; height: 48px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
        animation: scrollLine 1.8s ease-in-out infinite;
    }
    @keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

    /* ── FEATURES ── */
    .features-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-bottom: 1px solid var(--border);
    }
    .feature-item {
        padding: 40px 32px;
        border-right: 1px solid var(--border);
        display: flex; flex-direction: column; gap: 10px;
    }
    .feature-item:last-child { border-right: none; }
    .feature-item i { font-size: 20px; color: var(--accent); }
    .feature-item h4 { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; }
    .feature-item p { font-size: 12px; color: var(--warm-gray); line-height: 1.65; }

    /* ── 360° VIEWER ── */
    .showcase-section {
        position: relative;
        width: 100%;
        height: 80vh;
        background: #ffffff;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    .showcase-section::before {
        content: '';
        position: absolute; inset: 0;
        background: radial-gradient(ellipse 60% 60% at 50% 50%, #f5ede4 0%, #ffffff 70%);
        pointer-events: none;
        z-index: 0;
    }
    #glb-canvas {
        position: absolute; inset: 0;
        width: 100% !important; height: 100% !important;
        display: block; cursor: grab; z-index: 1;
    }
    #glb-canvas:active { cursor: grabbing; }

    #glb-loading {
        position: absolute; inset: 0;
        background: rgba(255,255,255,0.96);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 20px; z-index: 20;
        transition: opacity 0.6s ease;
    }
    #glb-loading.hidden { opacity: 0; pointer-events: none; }
    .glb-spinner {
        width: 40px; height: 40px;
        border: 1.5px solid rgba(0,0,0,0.08);
        border-top-color: var(--accent);
        border-radius: 50%;
        animation: glbspin 0.8s linear infinite;
    }
    @keyframes glbspin { to { transform: rotate(360deg); } }
    .glb-loading-text { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--warm-gray); }
    .glb-progress-wrap { width: 160px; height: 2px; background: rgba(0,0,0,0.08); border-radius: 2px; overflow: hidden; }
    #glb-progress-bar { height: 100%; width: 0%; background: var(--accent); border-radius: 2px; transition: width 0.25s ease; }
    #glb-progress-pct { font-size: 10px; letter-spacing: 0.2em; color: var(--accent); font-weight: 500; }

    #glb-error {
        position: absolute; inset: 0; background: rgba(255,255,255,0.98);
        display: none; flex-direction: column; align-items: center; justify-content: center;
        gap: 12px; z-index: 20; text-align: center; padding: 40px;
    }
    #glb-error.visible { display: flex; }
    .glb-error-icon { font-size: 32px; color: var(--accent); margin-bottom: 8px; }
    .glb-error-text { font-size: 12px; color: var(--warm-gray); line-height: 2; }
    .glb-error-text code { color: var(--accent); background: var(--accent-light); padding: 2px 8px; border-radius: 4px; font-family: monospace; }

    #v360DragHint {
        position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
        display: flex; align-items: center; gap: 12px;
        font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
        color: rgba(0,0,0,0.4); z-index: 10; pointer-events: none;
        transition: opacity 0.6s ease;
    }
    #v360DragHint.gone { opacity: 0; }
    .v360-line { width: 28px; height: 1px; background: rgba(0,0,0,0.2); }

    #v360-angle-ring { position: absolute; top: 24px; right: 24px; z-index: 10; filter: drop-shadow(0 0 8px rgba(196,96,42,0.3)); }

    .viewer-controls { position: absolute; bottom: 32px; right: 32px; z-index: 10; display: flex; flex-direction: column; gap: 8px; }
    .ctrl-btn {
        width: 42px; height: 42px;
        background: rgba(30,30,30,0.80);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 14px; cursor: pointer; color: rgba(255,255,255,0.65);
        transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
        user-select: none; backdrop-filter: blur(8px);
        box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }
    .ctrl-btn:hover { background: rgba(10,10,10,0.92); color: #fff; border-color: rgba(255,255,255,0.3); transform: scale(1.08); }
    .ctrl-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 2px 16px rgba(196,96,42,0.45); }

    #anim-badge {
        position: absolute; bottom: 32px; left: 32px; z-index: 10;
        background: rgba(10,10,10,0.7); backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.1); padding: 9px 16px;
        display: none; align-items: center; gap: 10px;
        font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
        color: rgba(255,255,255,0.45);
    }
    #anim-badge.visible { display: flex; }
    .anim-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: animPulse 1.2s ease-in-out infinite; }
    @keyframes animPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

    /* ── NEWSLETTER ── */
    .newsletter { background: #f4f1ee; padding: 80px 8%; text-align: center; }
    .newsletter h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #222; margin-bottom: 16px; }
    .newsletter h2 em { font-style: italic; color: #b35900; }
    .newsletter > p { font-size: 15px; color: #777; margin-bottom: 0; }
    .newsletter-form { display: flex; justify-content: center; gap: 12px; max-width: 550px; margin: 30px auto 0; }
    .newsletter-form input {
        padding: 15px 20px; border: 1px solid #ddd; border-radius: 8px;
        flex: 1; outline: none; font-size: 15px; font-family: var(--font-body);
        color: #333; background: #fff;
    }
    .newsletter-form input::placeholder { color: #aaa; }
    .newsletter-form input:focus { border-color: #b35900; }
    .newsletter-form button {
        background: #222; color: #fff; border: none;
        padding: 0 35px; border-radius: 8px;
        font-family: var(--font-body); font-size: 14px; font-weight: 600;
        cursor: pointer; transition: background 0.2s; white-space: nowrap;
    }
    .newsletter-form button:hover { background: #b35900; }

    /* ── NEWSLETTER POPUP ── */
    #nl-popup-overlay {
        display: none; position: fixed; inset: 0; z-index: 9999;
        background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
        align-items: center; justify-content: center;
    }
    #nl-popup-overlay.show { display: flex; }
    #nl-popup-box {
        background: #fff; border-radius: 16px; padding: 48px 44px;
        max-width: 420px; width: 90%; text-align: center; position: relative;
        animation: nlPopIn 0.3s cubic-bezier(0.16,1,0.3,1);
    }
    @keyframes nlPopIn { from { opacity:0; transform: scale(0.88) translateY(20px); } to { opacity:1; transform: scale(1) translateY(0); } }
    .nl-check-circle {
        width: 72px; height: 72px; border-radius: 50%;
        background: #f0fdf4; border: 2px solid #bbf7d0;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 24px;
    }
    .nl-check-circle i { font-size: 30px; color: #16a34a; }
    #nl-popup-box h3 { font-size: 22px; font-weight: 700; color: #222; margin-bottom: 10px; }
    #nl-popup-box p { font-size: 14px; color: #777; line-height: 1.7; margin-bottom: 28px; }
    #nl-popup-close {
        padding: 12px 32px; background: #b35900; color: #fff; border: none;
        border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer;
        transition: background 0.2s; font-family: var(--font-body);
    }
    #nl-popup-close:hover { background: #8e4700; }

    /* ── FOOTER ── */
    footer { background: #1a1a1a; color: #fff; padding: 80px 8% 30px; }
    .footer-grid {
        display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px; margin-bottom: 60px;
    }
    .footer-col h4 { color: #b35900; margin-bottom: 25px; text-transform: uppercase; font-size: 15px; letter-spacing: 1.5px; }
    .footer-col p { color: #aaa; font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { color: #aaa; text-decoration: none; font-size: 14px; transition: 0.3s ease; display: inline-block; }
    .footer-col ul li a:hover { color: #fff; padding-left: 8px; }
    .social-icons { display: flex; gap: 15px; margin-top: 20px; }
    .social-icons a {
        width: 40px; height: 40px; background: #2a2a2a;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%; color: #fff; text-decoration: none; font-size: 15px;
        transition: 0.3s;
    }
    .social-icons a:hover { background: #b35900; transform: translateY(-5px); }
    .payment-methods { margin-top: 20px; font-size: 24px; color: #555; display: flex; gap: 15px; }
    .footer-bottom {
        border-top: 1px solid #2a2a2a; padding-top: 30px;
        display: flex; justify-content: space-between; align-items: center;
        flex-wrap: wrap; gap: 20px;
    }
    .footer-bottom p { font-size: 13px; color: #555; }

    @media (max-width: 992px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 900px) {
        .features-bar { grid-template-columns: repeat(2,1fr); }
        .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
        .hero-inner { padding: 0 24px; }
        .newsletter { padding: 60px 5%; }
        .newsletter-form { flex-direction: column; gap: 10px; }
        .newsletter-form input, .newsletter-form button { width: 100%; padding: 14px; }
        .footer-grid { grid-template-columns: repeat(2,1fr); gap: 28px; margin-bottom: 36px; }
        .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
        footer { padding: 50px 5% 24px; }
    }
    @media (max-width: 480px) {
        .features-bar { grid-template-columns: 1fr; }
        .footer-grid { grid-template-columns: 1fr; }
        .hero-inner { padding: 0 18px; }
        .showcase-section { height: 60vh; }
    }
    @media (max-width: 576px) {
        .footer-grid { grid-template-columns: 1fr; }
    }
