/* REHA KUMAS OFFICIAL V15.0 - ABSOLUTE SYNC */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&family=Outfit:wght@300;400;600;700&display=swap');

:root { --gold: #c5a059; --black: #0d0d0d; --white: #ffffff; --gray: #f4f4f4; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
body { background: var(--gray); color: var(--black); line-height: 1.6; overflow-x: hidden; }

/* DÖVİZ BANDI */
.ticker-wrap { width: 100%; height: 45px; background: var(--black); border-bottom: 2px solid var(--gold); position: fixed; top: 0; z-index: 2000; display: flex; align-items: center; overflow: hidden; }
.ticker-move { display: flex; white-space: nowrap; animation: ticker-scroll 35s linear infinite; }
.ticker-item { padding: 0 40px; color: white; font-size: 13px; font-weight: 700; letter-spacing: 1px; }
.ticker-item span { color: var(--gold); margin-left: 5px; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* NAVBAR */
.navbar { height: 80px; background: rgba(13,13,13,0.98); position: fixed; top: 45px; width: 100%; z-index: 1000; display: flex; align-items: center; border-bottom: 1px solid rgba(197,160,89,0.3); }
.nav-container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Cinzel', serif; font-size: 26px; color: var(--white); text-decoration: none; letter-spacing: 2px; }
.logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: #ccc; font-weight: 600; font-size: 13px; text-transform: uppercase; transition: 0.3s; }
.nav-links a.active, .nav-links a:hover { color: var(--gold); }

/* DİL BUTONLARI */
.lang-box { display: flex; border: 1px solid var(--gold); border-radius: 4px; overflow: hidden; }
.l-btn { background: transparent; color: white; border: none; padding: 5px 12px; cursor: pointer; font-size: 11px; font-weight: 800; transition: 0.3s; }
.l-btn.active { background: var(--gold); color: black; }

/* HERO */
.hero { height: 350px; margin-top: 125px; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1558273109-60437a705274?q=80&w=1200') center/cover; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: white; border-bottom: 4px solid var(--gold); }
.hero h1 { font-family: 'Cinzel', serif; font-size: 40px; letter-spacing: 3px; }

/* KATALOG & KARTLAR */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; max-width: 1400px; margin: 40px auto; padding: 0 20px; }
.p-card { background: white; border: 1px solid #ddd; transition: 0.3s; position: relative; display: flex; flex-direction: column; height: 100%; }
.p-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: var(--gold); }
.p-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.p-body { padding: 20px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.p-badge { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 2px; margin-bottom: 5px; text-transform: uppercase; }
.p-title { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.p-weight { color: #888; font-size: 12px; margin-bottom: 15px; }

/* RENK DAİRELERİ */
.color-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; }
.color-dot { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); cursor: pointer; transition: 0.3s; }
.color-dot:hover { transform: scale(1.3); border-color: var(--gold); }

.p-price { font-size: 24px; font-weight: 800; color: var(--black); }
.p-price span { font-size: 14px; color: var(--gold); font-weight: 600; }

/* SEKME BUTONLARI */
.tab-row { text-align: center; margin-top: 40px; }
.tab-btn { padding: 12px 40px; font-weight: 800; border: 2px solid var(--gold); background: white; cursor: pointer; margin: 0 10px; transition: 0.3s; }
.tab-btn.active { background: var(--gold); color: white; }

/* FOOTER */
.footer { background: var(--black); color: white; padding: 50px 0; border-top: 4px solid var(--gold); margin-top: 50px; text-align: center; }
.wa-btn { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; text-decoration: none; z-index: 5000; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.hidden { display: none !important; }