/* Stitch Tasarım Sistemi */
:root {
    --stitch-gold: #C5A059;
    --stitch-charcoal: #1A1A1A;
    --stitch-white: #FFFFFF;
    --stitch-ivory: #F9F8F6;
    --stitch-font-serif: 'Playfair Display', serif;
    --stitch-font-sans: 'Inter', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--stitch-white);
    color: var(--stitch-charcoal);
    font-family: var(--stitch-font-sans);
    line-height: 1.6;
    overflow-x: visible !important;
    /* Sticky Fix */
}

h1,
h2,
h3,
.serif-font {
    font-family: var(--stitch-font-serif);
    font-weight: 400;
}

/* === HEADER & TOPBAR STYLES === */
.header-topbar {
    background: var(--stitch-charcoal);
    color: white;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 1px;
}

.topbar-social a {
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.topbar-social a:hover {
    color: var(--stitch-gold);
}

.exchange-rates span {
    margin-left: 15px;
}

/* Sticky Navigasyon */
.main-navigation {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 15px 5%;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-left.logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

.nav-left.logo span {
    font-family: var(--stitch-font-serif);
    font-size: 24px;
    letter-spacing: 2px;
    color: black;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu li a {
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: var(--stitch-gold);
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.nav-right a {
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

.nav-right a:hover {
    color: var(--stitch-gold);
}

/* === FOOTER STYLES === */
.stitch-footer {
    background-color: #ffffff;
    color: #000000;
    border-top: 1px solid #eeeeee;
    padding: 60px 0 30px;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-col h4 {
    color: var(--stitch-gold);
    font-family: var(--stitch-font-serif);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    line-height: 2.2;
    font-size: 14px;
}

.footer-col a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--stitch-gold);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 10px;
}

.footer-col i {
    color: var(--stitch-gold);
    margin-right: 8px;
}

/* Butonlar */
.btn-premium {
    background-color: var(--stitch-charcoal);
    color: var(--stitch-white);
    padding: 14px 32px;
    border: 1px solid var(--stitch-charcoal);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s ease;
    cursor: pointer;
}

.btn-premium:hover {
    background-color: transparent;
    color: var(--stitch-charcoal);
}

/* Sabit Butonlar */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    text-decoration: none;
}

.phone-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #C5A059;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    text-decoration: none;
}