@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Montserrat', sans-serif;
    --cursive: 'Pinyon Script', cursive;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-topbar: #efeae2;
    --bg-white: #ffffff;
    --red: #eb4d55;
    --border: #eaeaea;
    --gold: #bfa37e;
}

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

body {
    font-family: var(--sans);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.5;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-topbar);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    color: var(--text-dark);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right {
    display: flex;
    gap: 20px;
}

.top-right i {
    margin-left: 5px;
}

/* Header */
.site-header {
    padding: 40px 20px 20px;
    text-align: center;
}

.header-logo a {
    font-family: var(--serif);
    font-size: 32px;
    letter-spacing: 4px;
    font-weight: 500;
    color: var(--text-dark);
}

.header-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.nav-center {
    display: flex;
    gap: 40px;
}

.nav-center a {
    transition: color 0.3s;
}

.nav-center a:hover {
    color: var(--text-light);
}

.nav-right,
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-left i {
    margin-left: 5px;
    font-size: 14px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: var(--text-dark);
}

/* Modern Hero Section (Split Layout) */
.hero-section {
    padding: 20px 40px;
}

.heroSwiper {
    position: relative;
    overflow: hidden;
}

.hero-slide-inner {
    display: flex;
    align-items: center;
    position: relative;
    height: 75vh;
    background-color: var(--bg-topbar);
    overflow: hidden;
}

.hero-content {
    width: 45%;
    padding: 0 5%;
    z-index: 10;
}

.eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.hero-title {
    font-family: var(--serif);
    font-size: 4vw;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-outline {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--text-dark);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: white;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Navigation for Hero */
.hero-navigation {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 20;
    display: flex;
    gap: 15px;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hero-nav-btn:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* Products (Ultra Elegant Rectangle Cards) */
.products-section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 3px;
}

.cursive-title {
    font-family: var(--cursive);
    font-size: 4.5rem;
    color: var(--gold);
    display: block;
    margin-top: -15px;
    font-weight: 400;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 20px;
}

.product-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.product-card {
    position: relative;
    border-radius: 0;
    /* Sharp, modern */
    overflow: hidden;
    background: #f7f7f7;
    aspect-ratio: 4/5;
}

.product-img {
    width: 100%;
    height: 100%;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.product-item:hover .product-img img {
    transform: scale(1.08);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.hover-text {
    color: white;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.product-item:hover .hover-overlay {
    opacity: 1;
}

.product-item:hover .hover-text {
    transform: translateY(0);
}

.product-meta {
    text-align: center;
    margin-top: 25px;
}

.product-meta .name {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.product-meta .price {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-gray);
	display:none;
}


/* Fixed Sidebar */
.fixed-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.fixed-cart {
    background-color: var(--red);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.fixed-arrow {
    background-color: white;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid var(--border);
    border-top: none;
    border-right: none;
}

/* Testimonial Section (Editorial Split) */
.testimonial-section {
    padding: 120px 20px;
    background-color: var(--bg-white);
}

.test-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.test-left {
    width: 40%;
}

.cursive-subtitle {
    font-family: var(--cursive);
    font-size: 3.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
}

.test-left h2 {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.test-left p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.test-nav {
    display: flex;
    gap: 15px;
}

.test-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-nav button:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.test-right {
    width: 60%;
    overflow: hidden;
}

.test-card {
    background: var(--bg-topbar);
    padding: 50px;
    border-radius: 0;
    border: none;
}

.test-card .quote-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.test-card .quote-text {
    font-size: 1.2rem;
    font-style: normal;
    color: var(--text-dark);
    font-family: var(--sans);
    margin-bottom: 30px;
    line-height: 1.8;
}

.author-info strong {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.author-info span {
    font-size: 12px;
    color: var(--text-gray);
}

/* Feature Video */
.feature-section {
    padding: 40px 20px;
}

.feature-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
}

.feature-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.circle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* FAQ Section - Arka Plan Beyaz Versiyon */
.faq-section-split {
    background-color: #ffffff;
    /* Arka plan beyaz yapıldı */
    color: var(--text-dark);
    padding: 100px 0;
    border-top: 1px solid #eee;
    /* Üst kısımdan hafifçe ayırmak için */
}

.faq-split-inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-left {
    width: 40%;
    position: sticky;
    top: 150px;
}

.faq-left .cursive-subtitle {
    color: var(--gold);
    text-align: left;
    margin-bottom: 10px;
}

.faq-left h2 {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
    /* Başlık siyah/koyu */
}

.faq-left p {
    color: var(--text-gray);
    /* Açıklama gri */
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.faq-right {
    width: 60%;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    /* Ayırıcı çizgiler artık açık gri */
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 25px 0;
    font-family: var(--sans);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    /* Sorular koyu renk */
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 30px;
    color: var(--text-gray);
    /* Cevap metni gri */
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--text-dark);
}

/* Mobilde Hizalama */
@media (max-width: 900px) {
    .faq-split-inner {
        flex-direction: column;
        gap: 40px;
    }

    .faq-left,
    .faq-right {
        width: 100%;
    }

    .faq-left {
        position: static;
    }
}

/* Rich Modern Footer */
.rich-footer {
    background-color: #121212;
    color: white;
    padding: 0 0 30px;
    margin-top: 80px;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 40px;
    border-bottom: 1px solid #222;
    margin-bottom: 60px;
}

.cta-content h2 {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.cta-content p {
    color: #999;
    font-size: 1.1rem;
}

.btn-gold {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--gold);
    color: white;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #a68b64;
}

.footer-main {
    display: grid;
    grid-template-columns: 3fr 1.5fr 1.5fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 0 40px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.brand-text {
    color: #888;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 90%;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.fm-col h4,
.fm-col-contact h4 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: white;
    font-weight: 500;
}

.fm-col ul li {
    margin-bottom: 15px;
}

.fm-col ul a {
    color: #888;
    font-size: 13px;
    transition: 0.3s;
}

.fm-col ul a:hover {
    color: white;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}

.contact-list i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 0;
    border-top: 1px solid #222;
    font-size: 12px;
    color: #666;
}

.fb-links {
    display: flex;
    gap: 25px;
}

.fb-links a {
    color: #666;
    transition: 0.3s;
}

.fb-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .fm-col-brand,
    .fm-col-contact {
        grid-column: span 3;
    }

    .fm-col{
        display: none;
    }

    .fm-col-brand {
        display: none;
        margin-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .hero-slide-inner {
        flex-direction: column;
        height: auto;
    }

    .hero-content {
        width: 100%;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content .btn-outline{
        margin-bottom: 25px;
        display: inline;
    }

    .cursive-subtitle {
        line-height: 40px;
        margin-bottom: 40px;
    }

    .product-card {
        aspect-ratio: 4 / 3;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-navigation {
        top: 45%;
        transform: translateY(-50%);
        width: 100%;
        left: 0;
        justify-content: space-between;
        padding: 0 20px;
        pointer-events: none;
    }

    .hero-nav-btn {
        pointer-events: auto;
        background: white;
    }
}

@media (max-width: 900px) {
    .nav-center {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .test-split {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .test-left,
    .test-right {
        width: 100%;
    }

    .faq-split-inner {
        flex-direction: column;
        gap: 40px;
    }

    .faq-left,
    .faq-right {
        width: 100%;
    }

    .faq-left {
        position: static;
    }

    .test-nav {
        justify-content: center;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

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

    .footer-main {
        grid-template-columns: 1fr;
    }

    .fm-col-brand,
    .fm-col-contact {
        grid-column: span 1;
        display: none;
    }

    .hero-wrapper {
        flex-direction: column;
    }

    .arrow-btn {
        display: none;
    }

    .top-bar-inner {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Hamburger Animasyonu */
.hamburger {
    position: relative;
    z-index: 1100; /* Menünün de üstünde durması için */
    transition: all 0.3s ease;
}

.hamburger span {
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
    margin-top: -1px;
}

/* Mobil Menü Yeni Stil */
@media (max-width: 900px) {
    .nav-center {
        display: flex !important; /* JS'deki display:none çakışmasını engeller */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%; /* Başlangıçta ekranın sağında gizli */
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 1000;
        transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        gap: 30px;
        padding: 40px;
    }

    .nav-center.active {
        right: 0; /* Ekranı kapla */
    }

    .nav-center a {
        font-size: 18px;
        letter-spacing: 4px;
        font-weight: 500;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-center.active a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s; /* Menü açıldıktan sonra yazılar gelsin */
    }

    /* Menü linklerinin alt alta sıralanması için gecikme (opsiyonel) */
    .nav-center a:nth-child(2) { transition-delay: 0.4s; }
    .nav-center a:nth-child(3) { transition-delay: 0.5s; }
    .nav-center a:nth-child(4) { transition-delay: 0.6s; }
    .nav-center a:nth-child(5) { transition-delay: 0.7s; }

    /* Header'daki diğer elemanların düzeni */
    .header-nav-bar {
        position: relative;
    }

    .nav-right {
        z-index: 1101;
    }
}

/* --- MOBİL TAM UYUM REVİZESİ --- */

@media (max-width: 900px) {
    /* Genel Ayarlar */
    .container {
        padding: 0 20px; /* Kenar boşluklarını daralt */
    }

    /* Header & Nav */
    .site-header {
        padding: 20px 10px;
    }
    
    .nav-left {
        display: none; /* Mobilde sol linki gizle, menü içine alacağız */
    }

    .header-nav-bar {
        margin-top: 15px;
        padding-bottom: 10px;
    }

    /* Hero Section (Swiper) */
    .hero-slide-inner {
        height: 70vh; /* Mobilde biraz daha kısa */
        flex-direction: column-reverse; /* Resmi yukarı, yazıyı aşağı alabiliriz veya üst üste */
        justify-content: flex-end;
    }

    .hero-image {
        width: 100%;
        height: 60%; /* Resim alanını ayarla */
        position: relative;
    }

    .hero-content {
        width: 100%;
        padding: 30px 20px;
        background: white; /* Yazının okunurluğu için */
        text-align: center;
        z-index: 10;
    }

    .hero-title {
        font-size: 28px !important;
        margin-bottom: 20px;
    }

    .hero-navigation {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

    /* Ürünler Bölümü */
    .products-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .cursive-title {
        font-size: 3rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2 sütun */
        gap: 20px;
    }

    .product-meta .name {
        font-size: 1.1rem;
    }

    /* Testimonials (Müşteri Yorumları) */
    .testimonial-section {
        padding: 60px 0;
    }

    .test-split {
        gap: 30px;
    }

    .test-left h2 {
        font-size: 28px;
    }

    .test-card {
        padding: 30px 20px;
    }

    .test-card .quote-text {
        font-size: 1rem;
    }

    /* Video Bölümü */
    .feature-wrapper {
        height: 40vh;
    }

    .circle {
        width: 90px;
        height: 90px;
        font-size: 8px;
    }

    /* FAQ (SSS) Bölümü */
    .faq-section-split {
        padding: 60px 0 0px 0;
    }

    .faq-left h2 {
        font-size: 26px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }

    /* Footer Alt Alan */
    .footer-cta {
        margin-bottom: 0;
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .footer-main {
        display: none;
        grid-template-columns: 1fr; /* Mobilde her şey tek sütun */
        padding: 0 20px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .brand-text {
        max-width: 100%;
    }
}

/* Çok küçük ekranlar (iPhone SE vb.) */
@media (max-width: 480px) {
    .product-grid {
        padding: 0 20px;
        grid-template-columns: 1fr; /* Çok küçük ekranlarda tek sütun */
    }
    
    .hero-title {
        font-size: 24px !important;
    }
}
