/*
Theme Name: Salih Kuyumculuk
Theme URI: https://salihkuyumculuk.com
Author: Salih Kuyumculuk
Author URI: https://salihkuyumculuk.com
Description: Salih Kuyumculuk için özel tasarlanmış lüks kurumsal tema. Altın tonları, premium tasarım ve canlı fiyat entegrasyonu.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: salih-kuyumculuk
Tags: kuyumculuk, altın, gold, luxury, jewelry, one-page, custom-logo
*/

/* =========================================
   CSS VARIABLES - PREMIUM GOLD THEME
   ========================================= */

/* Dark Theme (Default) */
:root,
[data-theme="dark"] {
    /* Gold Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BA;
    --gold-dark: #B8960C;
    --gold-shine: #FFD700;
    --gold-accent: #C5A028;

    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #252525;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;

    /* Accent Colors */
    --success: #22c55e;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-accent: 'Cinzel', serif;
    --font-numbers: 'Outfit', sans-serif;
    /* Modern & Elite Numbers */

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Effects */
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Theme Toggle Icon */
    --theme-icon: "🌙";
}

/* Light Theme - Premium Cream & Pure Gold */
[data-theme="light"],
html[data-theme="light"],
body[data-theme="light"] {
    /* Gold Palette - Pure Bright Gold */
    --gold-primary: #D4AF37;
    /* Classic bright gold */
    --gold-light: #F4D03F;
    /* Lighter gold */
    --gold-dark: #C9A227;
    --gold-shine: #FFD700;
    /* Pure Gold */
    --gold-accent: #E6BE44;

    /* Light Theme Colors - Clean White */
    --bg-primary: #FAFAFA;
    --bg-secondary: #F5F5F5;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FAFAF8;

    /* Text Colors - Strong contrast */
    --text-primary: #1A1A1A;
    --text-secondary: #333333;
    --text-muted: #666666;

    /* Effects - adjusted for light */
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);
    --gradient-gold: linear-gradient(135deg, #C9A227 0%, #D4AF37 50%, #F4D03F 100%);
    --gradient-dark: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);

    /* Theme Toggle Icon */
    --theme-icon: "☀️";
}

/* =========================================
   THEME TOGGLE BUTTON
   ========================================= */
.theme-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--bg-secondary);
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle:hover {
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-light);
}

.theme-toggle:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

.theme-toggle-slider {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    transition: all var(--transition-normal);
    left: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.theme-toggle-slider::after {
    content: "🌙";
    font-size: 11px;
}

[data-theme="light"] .theme-toggle-slider {
    left: calc(100% - 23px);
}

[data-theme="light"] .theme-toggle-slider::after {
    content: "☀️";
}

/* Header Actions Container - Fixed Layout */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-left: auto;
}

/* =========================================
   LIGHT THEME SPECIFIC OVERRIDES
   ========================================= */

/* Header in Light Theme */
[data-theme="light"] .site-header,
body[data-theme="light"] .site-header,
html[data-theme="light"] .site-header {
    background: rgba(253, 252, 249, 0.95) !important;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .site-header.scrolled,
body[data-theme="light"] .site-header.scrolled,
html[data-theme="light"] .site-header.scrolled {
    background: rgba(250, 250, 250, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation in Light Theme */
[data-theme="light"] .nav-menu a,
body[data-theme="light"] .nav-menu a {
    color: #333333;
}

[data-theme="light"] .nav-menu a:hover,
[data-theme="light"] .nav-menu a.active,
body[data-theme="light"] .nav-menu a:hover,
body[data-theme="light"] .nav-menu a.active {
    color: #D4AF37;
}

[data-theme="light"] .nav-menu a::after,
body[data-theme="light"] .nav-menu a::after {
    background: linear-gradient(90deg, #C9A227, #FFD700);
}

/* Logo in Light Theme */
[data-theme="light"] .site-logo .logo-text,
body[data-theme="light"] .site-logo .logo-text {
    color: #D4AF37;
}

/* Mobile Nav in Light Theme */
[data-theme="light"] .main-nav,
body[data-theme="light"] .main-nav {
    background: #FFFFFF;
}

/* Hero in Light Theme */
[data-theme="light"] .hero-background,
body[data-theme="light"] .hero-background {
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.97) 0%, rgba(245, 245, 240, 0.95) 100%);
}

[data-theme="light"] .hero-background::before,
body[data-theme="light"] .hero-background::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23A67C00" opacity="0.15"/></svg>');
    background-size: 50px 50px;
}

[data-theme="light"] .hero-badge,
body[data-theme="light"] .hero-badge {
    background: rgba(166, 124, 0, 0.1);
    border-color: rgba(166, 124, 0, 0.3);
}

[data-theme="light"] .hero-title span,
[data-theme="light"] .gold-gradient-text,
body[data-theme="light"] .hero-title span,
body[data-theme="light"] .gold-gradient-text {
    background: linear-gradient(135deg, #C9A227 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons in Light Theme */
[data-theme="light"] .btn-primary,
body[data-theme="light"] .btn-primary {
    background: linear-gradient(135deg, #C9A227 0%, #D4AF37 50%, #E6BE44 100%);
    color: #1A1A1A;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

[data-theme="light"] .btn-primary:hover,
body[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

[data-theme="light"] .btn-outline,
body[data-theme="light"] .btn-outline {
    border-color: #D4AF37;
    border-width: 2px;
    color: #C9A227;
    background: transparent;
}

[data-theme="light"] .btn-outline:hover,
body[data-theme="light"] .btn-outline:hover {
    background: linear-gradient(135deg, #C9A227 0%, #D4AF37 50%, #E6BE44 100%);
    border-color: transparent;
    color: #1A1A1A;
}

/* Price Cards in Light Theme */
[data-theme="light"] .price-card,
body[data-theme="light"] .price-card {
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .price-card:hover,
body[data-theme="light"] .price-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

[data-theme="light"] .price-card::before,
body[data-theme="light"] .price-card::before {
    background: linear-gradient(135deg, #C9A227 0%, #D4AF37 50%, #FFD700 100%);
}

[data-theme="light"] .price-card .v,
body[data-theme="light"] .price-card .v {
    color: #D4AF37;
}

/* Price Ticker in Light Theme */
[data-theme="light"] .price-ticker,
[data-theme="light"] .price-ticker-bar,
body[data-theme="light"] .price-ticker,
body[data-theme="light"] .price-ticker-bar {
    background: #F5F5F5;
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

/* Section Backgrounds in Light Theme */
[data-theme="light"] .section-dark,
body[data-theme="light"] .section-dark {
    background: #F5F5F5;
}

[data-theme="light"] .prices-section::before,
body[data-theme="light"] .prices-section::before {
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* Footer in Light Theme */
[data-theme="light"] .footer,
body[data-theme="light"] .footer {
    background: #1A1A1A;
    color: #FFFFFF;
}

[data-theme="light"] .footer h4,
[data-theme="light"] .footer .footer-brand-name,
body[data-theme="light"] .footer h4,
body[data-theme="light"] .footer .footer-brand-name {
    color: #D4AF37;
}

[data-theme="light"] .footer a,
body[data-theme="light"] .footer a {
    color: #CCCCCC;
}

[data-theme="light"] .footer a:hover,
body[data-theme="light"] .footer a:hover {
    color: #FFD700;
}

/* Map in Light Theme */
[data-theme="light"] .map-wrapper iframe,
body[data-theme="light"] .map-wrapper iframe {
    filter: none;
}

/* Gallery in Light Theme */
[data-theme="light"] .gallery-overlay,
body[data-theme="light"] .gallery-overlay {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.3) 40%, transparent 100%);
}

/* Contact Cards in Light Theme */
[data-theme="light"] .contact-card,
body[data-theme="light"] .contact-card {
    background: #FFFFFF;
    border-color: rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .contact-card:hover,
body[data-theme="light"] .contact-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

/* About Badge in Light Theme */
[data-theme="light"] .about-badge,
body[data-theme="light"] .about-badge {
    background: linear-gradient(135deg, #C9A227 0%, #D4AF37 50%, #FFD700 100%);
    color: #1A1A1A;
}

/* =========================================
   SMOOTH THEME TRANSITIONS
   ========================================= */
body,
.site-header,
.price-card,
.btn,
.footer,
.contact-card,
.gallery-overlay,
.about-badge,
.price-ticker,
.main-nav {
    transition: background-color var(--transition-normal),
        color var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

/* =========================================
   LIVE PRICES TOPBAR
   ========================================= */
.live-prices-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.live-prices-topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.5) 20%,
            rgba(212, 175, 55, 0.8) 50%,
            rgba(212, 175, 55, 0.5) 80%,
            transparent 100%);
}

.topbar-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    position: relative;
    height: 42px;
}

/* Sağ üst köşe güncelleme saati */
.topbar-time-badge {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #22c55e;
    z-index: 10;
    white-space: nowrap;
}

.topbar-time-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

/* Marquee wrapper for infinite scroll */
.topbar-marquee {
    display: flex;
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.topbar-prices {
    display: flex;
    gap: 0;
    align-items: center;
    padding: 0;
    animation: marquee-scroll 50s linear infinite;
    flex-shrink: 0;
}

/* Pause on hover */
.topbar-marquee:hover .topbar-prices {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.topbar-price-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    transition: all 0.25s ease;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
}

.topbar-price-item:hover {
    background: rgba(212, 175, 55, 0.08);
}

/* Update time badge - special styling */
.topbar-update-time {
    background: rgba(34, 197, 94, 0.05);
}

.topbar-update-time .price-value {
    color: #4ade80 !important;
    font-weight: 600;
}

.topbar-update-time .price-label {
    color: #4ade80 !important;
    opacity: 0.7;
}

/* Live indicator dot */
.topbar-update-time::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.topbar-price-item .price-icon {
    font-size: 0.85rem;
    line-height: 1;
}

.topbar-price-item .price-label {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.topbar-price-item .price-value {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: -0.01em;
}

.topbar-price-item .price-change {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0;
}

.topbar-price-item .price-change.up {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.topbar-price-item .price-change.down {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

/* Trend colors - text only, background handled by pulse animation */
.topbar-price-item.trend-up .price-value {
    color: #4ade80;
}

.topbar-price-item.trend-down .price-value {
    color: #f87171;
}

/* Light theme trend text colors */
body[data-theme="light"] .topbar-price-item.trend-up .price-value,
[data-theme="light"] .topbar-price-item.trend-up .price-value {
    color: #16a34a;
}

body[data-theme="light"] .topbar-price-item.trend-down .price-value,
[data-theme="light"] .topbar-price-item.trend-down .price-value {
    color: #dc2626;
}

/* Pulse/blink animations for trends - normal state is theme default, briefly flashes green/red */
@keyframes pulse-green {

    0%,
    80%,
    100% {
        background: transparent;
    }

    40% {
        background: rgba(34, 197, 94, 0.12);
    }
}

@keyframes pulse-red {

    0%,
    80%,
    100% {
        background: transparent;
    }

    40% {
        background: rgba(239, 68, 68, 0.12);
    }
}

.topbar-price-item.trend-up {
    animation: pulse-green 4s ease-in-out infinite;
}

.topbar-price-item.trend-down {
    animation: pulse-red 4s ease-in-out infinite;
}

.topbar-update {
    flex-shrink: 0;
}

.topbar-update .update-time {
    font-size: 0.7rem;
    color: #888;
    white-space: nowrap;
}

/* Adjust header position for topbar */
.site-header {
    top: 42px !important;
}

/* Light theme topbar */
body[data-theme="light"] .live-prices-topbar,
[data-theme="light"] .live-prices-topbar {
    background: linear-gradient(180deg, #FEFEFE 0%, #F8F6F0 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .topbar-price-item,
[data-theme="light"] .topbar-price-item {
    background: transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .topbar-price-item:hover,
[data-theme="light"] .topbar-price-item:hover {
    background: rgba(212, 175, 55, 0.08);
}

body[data-theme="light"] .topbar-price-item .price-label,
[data-theme="light"] .topbar-price-item .price-label {
    color: rgba(0, 0, 0, 0.45);
}

body[data-theme="light"] .topbar-price-item .price-value,
[data-theme="light"] .topbar-price-item .price-value {
    color: #b8941e;
    font-weight: 700;
}

body[data-theme="light"] .topbar-update .update-time,
[data-theme="light"] .topbar-update .update-time {
    color: #777;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .live-prices-topbar {
        padding: 0;
    }

    .topbar-container {
        height: 38px;
    }

    .topbar-prices {
        gap: 0;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .topbar-prices::-webkit-scrollbar {
        display: none;
    }

    .topbar-price-item {
        padding: 4px 12px;
        flex-shrink: 0;
    }

    .topbar-price-item .price-label {
        display: none;
    }

    .topbar-price-item .price-value {
        font-size: 0.8rem;
    }

    .topbar-update {
        display: none;
    }

    .site-header {
        top: 38px !important;
    }
}

@media (max-width: 576px) {
    .topbar-price-item .price-icon {
        font-size: 0.8rem;
    }

    .topbar-price-item .price-value {
        font-size: 0.75rem;
    }

    .topbar-price-item .price-change {
        font-size: 0.55rem;
        padding: 1px 4px;
    }
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

.text-gold {
    color: var(--gold-primary);
}

.text-center {
    text-align: center;
}

.gold-gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-header p {
    margin-top: 25px;
    font-size: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
    position: fixed;
    top: 54px;
    /* Offset for live prices topbar */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .site-logo .logo-text {
        font-size: 1rem;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-primary);
}

/* Header CTA Button */
.header-cta {
    padding: 12px 24px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    flex-shrink: 0;
    margin-left: 15px;
}

.header-cta svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1100px) {
    .header-cta {
        display: none;
    }
}

/* Header Actions - Theme toggle and mobile menu */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
    flex-shrink: 0;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    transition: all var(--transition-normal);
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right var(--transition-normal);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .header-cta {
        display: inline-flex;
        margin-top: 30px;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 110px;
    /* Offset for topbar + header */
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(17, 17, 17, 0.8) 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

/* =========================================
   PREMIUM GOLD PARTICLES ANIMATION
   ========================================= */
.gold-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.gold-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #FFD700 0%, #D4AF37 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 15s infinite ease-in-out;
    box-shadow:
        0 0 6px 2px rgba(255, 215, 0, 0.3),
        0 0 12px 4px rgba(212, 175, 55, 0.2);
}

/* Generate random positions and delays for particles */
.gold-particles .particle:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.gold-particles .particle:nth-child(2) {
    left: 10%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.gold-particles .particle:nth-child(3) {
    left: 15%;
    animation-delay: 2s;
    animation-duration: 11s;
}

.gold-particles .particle:nth-child(4) {
    left: 20%;
    animation-delay: 0.5s;
    animation-duration: 16s;
}

.gold-particles .particle:nth-child(5) {
    left: 25%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.gold-particles .particle:nth-child(6) {
    left: 30%;
    animation-delay: 1.5s;
    animation-duration: 15s;
}

.gold-particles .particle:nth-child(7) {
    left: 35%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.gold-particles .particle:nth-child(8) {
    left: 40%;
    animation-delay: 2.5s;
    animation-duration: 14s;
}

.gold-particles .particle:nth-child(9) {
    left: 45%;
    animation-delay: 0s;
    animation-duration: 17s;
}

.gold-particles .particle:nth-child(10) {
    left: 50%;
    animation-delay: 3.5s;
    animation-duration: 11s;
}

.gold-particles .particle:nth-child(11) {
    left: 55%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.gold-particles .particle:nth-child(12) {
    left: 60%;
    animation-delay: 4.5s;
    animation-duration: 13s;
}

.gold-particles .particle:nth-child(13) {
    left: 65%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.gold-particles .particle:nth-child(14) {
    left: 70%;
    animation-delay: 5s;
    animation-duration: 12s;
}

.gold-particles .particle:nth-child(15) {
    left: 75%;
    animation-delay: 0.5s;
    animation-duration: 14s;
}

.gold-particles .particle:nth-child(16) {
    left: 80%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.gold-particles .particle:nth-child(17) {
    left: 85%;
    animation-delay: 1.5s;
    animation-duration: 17s;
}

.gold-particles .particle:nth-child(18) {
    left: 90%;
    animation-delay: 4s;
    animation-duration: 13s;
}

.gold-particles .particle:nth-child(19) {
    left: 95%;
    animation-delay: 2.5s;
    animation-duration: 16s;
}

.gold-particles .particle:nth-child(20) {
    left: 3%;
    animation-delay: 5.5s;
    animation-duration: 15s;
}

.gold-particles .particle:nth-child(21) {
    left: 8%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.gold-particles .particle:nth-child(22) {
    left: 12%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.gold-particles .particle:nth-child(23) {
    left: 18%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.gold-particles .particle:nth-child(24) {
    left: 22%;
    animation-delay: 3.5s;
    animation-duration: 16s;
}

.gold-particles .particle:nth-child(25) {
    left: 28%;
    animation-delay: 2s;
    animation-duration: 13s;
}

.gold-particles .particle:nth-child(26) {
    left: 33%;
    animation-delay: 4.5s;
    animation-duration: 15s;
}

.gold-particles .particle:nth-child(27) {
    left: 38%;
    animation-delay: 0.5s;
    animation-duration: 12s;
}

.gold-particles .particle:nth-child(28) {
    left: 42%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.gold-particles .particle:nth-child(29) {
    left: 48%;
    animation-delay: 1.5s;
    animation-duration: 14s;
}

.gold-particles .particle:nth-child(30) {
    left: 52%;
    animation-delay: 6.5s;
    animation-duration: 11s;
}

.gold-particles .particle:nth-child(31) {
    left: 58%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.gold-particles .particle:nth-child(32) {
    left: 63%;
    animation-delay: 0s;
    animation-duration: 13s;
}

.gold-particles .particle:nth-child(33) {
    left: 67%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.gold-particles .particle:nth-child(34) {
    left: 72%;
    animation-delay: 2.5s;
    animation-duration: 12s;
}

.gold-particles .particle:nth-child(35) {
    left: 77%;
    animation-delay: 5.5s;
    animation-duration: 14s;
}

.gold-particles .particle:nth-child(36) {
    left: 82%;
    animation-delay: 1s;
    animation-duration: 17s;
}

.gold-particles .particle:nth-child(37) {
    left: 87%;
    animation-delay: 3.5s;
    animation-duration: 11s;
}

.gold-particles .particle:nth-child(38) {
    left: 92%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.gold-particles .particle:nth-child(39) {
    left: 97%;
    animation-delay: 2s;
    animation-duration: 13s;
}

.gold-particles .particle:nth-child(40) {
    left: 2%;
    animation-delay: 4.5s;
    animation-duration: 15s;
}

.gold-particles .particle:nth-child(41) {
    left: 7%;
    animation-delay: 0.5s;
    animation-duration: 12s;
}

.gold-particles .particle:nth-child(42) {
    left: 13%;
    animation-delay: 7s;
    animation-duration: 14s;
}

.gold-particles .particle:nth-child(43) {
    left: 17%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.gold-particles .particle:nth-child(44) {
    left: 23%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.gold-particles .particle:nth-child(45) {
    left: 27%;
    animation-delay: 1.5s;
    animation-duration: 13s;
}

.gold-particles .particle:nth-child(46) {
    left: 32%;
    animation-delay: 6.5s;
    animation-duration: 16s;
}

.gold-particles .particle:nth-child(47) {
    left: 37%;
    animation-delay: 2.5s;
    animation-duration: 15s;
}

.gold-particles .particle:nth-child(48) {
    left: 43%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.gold-particles .particle:nth-child(49) {
    left: 47%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.gold-particles .particle:nth-child(50) {
    left: 53%;
    animation-delay: 5.5s;
    animation-duration: 11s;
}

/* Varying particle sizes */
.gold-particles .particle:nth-child(3n) {
    width: 4px;
    height: 4px;
}

.gold-particles .particle:nth-child(5n) {
    width: 8px;
    height: 8px;
}

.gold-particles .particle:nth-child(7n) {
    width: 3px;
    height: 3px;
}

.gold-particles .particle:nth-child(11n) {
    width: 10px;
    height: 10px;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
        transform: translateY(80vh) rotate(45deg) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(40vh) rotate(180deg) scale(1.2);
    }

    90% {
        opacity: 0.6;
        transform: translateY(10vh) rotate(315deg) scale(0.8);
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Light theme particles - more visible */
[data-theme="light"] .gold-particles .particle,
body[data-theme="light"] .gold-particles .particle {
    background: radial-gradient(circle, #FFD700 0%, #D4AF37 40%, #C9A227 70%, transparent 100%);
    box-shadow:
        0 0 8px 3px rgba(255, 215, 0, 0.4),
        0 0 16px 6px rgba(212, 175, 55, 0.25);
}

/* Reduce particles on mobile for performance */
@media (max-width: 768px) {
    .gold-particles .particle:nth-child(n+26) {
        display: none;
    }
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title span {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* =========================================
   LIVE PRICES SECTION
   ========================================= */
.prices-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.prices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.salih-prices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.price-card .k {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price-card .v {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.price-card .change {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    margin-top: 10px;
    padding: 5px 12px;
    border-radius: 50px;
}

.price-card .change.up {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.price-card .change.down {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.prices-updated {
    text-align: center;
    margin-top: 30px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.prices-disclaimer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Price Ticker (Header Mini Prices) */
.price-ticker {
    background: var(--bg-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 50px;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.875rem;
}

.ticker-item .label {
    color: var(--text-muted);
}

.ticker-item .value {
    color: var(--gold-primary);
    font-weight: 600;
}

.ticker-item .change {
    font-size: 0.8em;
    font-weight: 500;
}

.ticker-item .change.up {
    color: #22c55e;
}

.ticker-item .change.down {
    color: #ef4444;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-badge .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content .subtitle {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =========================================
   GALLERY / COLLECTION SECTION
   ========================================= */
.gallery-section {
    background: var(--bg-secondary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-secondary);
    padding: 12px 28px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.contact-card p {
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--gold-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-hours {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 20px;
}

.contact-hours h4 {
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: var(--text-secondary);
}

.hours-list .time {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.125rem;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

/* =========================================
   LOADING & ANIMATIONS
   ========================================= */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.lightbox-close:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image::before {
        display: none;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .price-card .v {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .salih-prices {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   🥇 PREMIUM FİYAT KARTLARI
   ==================================== */

.live-prices-main {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.live-prices-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Status Bar */
.prices-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
}

.prices-update-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    animation: none;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
}

/* Dış halka - yayılan dalga */
.status-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.4);
    animation: dot-ring-expand 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* İç parıltı */
.status-dot::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: dot-inner-glow 2s ease-in-out infinite;
}

@keyframes dot-ring-expand {
    0% {
        inset: -2px;
        opacity: 1;
        border-color: rgba(34, 197, 94, 0.6);
    }

    70% {
        inset: -10px;
        opacity: 0;
        border-color: rgba(34, 197, 94, 0);
    }

    100% {
        inset: -10px;
        opacity: 0;
    }
}

@keyframes dot-inner-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.5);
    }

    50% {
        opacity: 0.8;
        transform: scale(1);
    }
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

#refresh-prices-btn .refresh-icon {
    transition: transform 0.5s ease;
}

#refresh-prices-btn.loading .refresh-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Price Cards Grid */
.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.price-card-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.price-card-title {
    flex: 1;
}

.price-card-title h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.price-card-title .price-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.price-card-title .price-change.up {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.price-card-title .price-change.down {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.price-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.price-row .price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-row .price-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.price-row .price-value.buy {
    color: #22c55e;
}

.price-row .price-value.sell {
    color: var(--gold-primary);
}

/* Prices CTA */
.prices-cta {
    text-align: center;
    margin-top: 30px;
}

/* Auto-refresh badge */
.auto-refresh-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    margin-left: 8px;
}

.auto-refresh-badge svg {
    animation: spin 2s linear infinite;
}

/* Source info */
.prices-source-info {
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.prices-source-info strong {
    color: var(--gold-primary);
}

/* ═══════════════════════════════════════════════════
   DETAY TABLOSU - Tüm Kapalıçarşı Fiyatları
   ═══════════════════════════════════════════════════ */
.prices-detail-table {
    margin-top: 35px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.detail-table-header {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(212, 175, 55, 0.04);
}

.detail-table-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.detail-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.detail-table thead th {
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.02);
    position: sticky;
    top: 0;
    z-index: 1;
}

.detail-table tbody tr {
    transition: background 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.06);
}

.detail-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

.detail-table tbody tr:nth-child(even):hover {
    background: rgba(212, 175, 55, 0.06);
}

.detail-table td {
    padding: 14px 20px;
    vertical-align: middle;
}

.detail-table .item-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.detail-table .item-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}

.detail-table .text-right {
    text-align: right;
}

.detail-table .price-value {
    font-family: var(--font-heading);
    font-weight: 700;
    white-space: nowrap;
}

.detail-table .price-value.buy {
    color: #22c55e;
}

.detail-table .price-value.sell {
    color: var(--gold-primary);
}

.detail-table .price-change {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.detail-table .price-change.up {
    color: #22c55e;
}

.detail-table .price-change.down {
    color: #ef4444;
}

/* Light theme detail table */
[data-theme="light"] .prices-detail-table {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .detail-table-header {
    background: rgba(212, 175, 55, 0.06);
}

[data-theme="light"] .detail-table thead th {
    background: rgba(245, 245, 245, 0.8);
}

[data-theme="light"] .detail-table tbody tr {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .detail-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.015);
}

[data-theme="light"] .detail-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.08);
}

[data-theme="light"] .auto-refresh-badge {
    background: rgba(34, 197, 94, 0.1);
}

/* Responsive detail table */
@media (max-width: 768px) {

    .detail-table td,
    .detail-table thead th {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .detail-table .item-icon {
        font-size: 1rem;
        width: 22px;
    }

    .detail-table .price-value {
        font-size: 0.85rem;
    }

    .prices-source-info {
        display: none;
    }
}

/* Light Theme */
[data-theme="light"] .price-card {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .price-row {
    background: rgba(212, 175, 55, 0.05);
}

[data-theme="light"] .prices-status {
    background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .price-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .price-card {
        padding: 20px;
    }

    .price-card-icon {
        font-size: 2rem;
    }

    .price-row .price-value {
        font-size: 1.1rem;
    }

    .prices-status {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .price-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Flash animation for price updates */
@keyframes flash-update {
    0% {
        background: rgba(212, 175, 55, 0.2);
    }

    100% {
        background: var(--bg-card);
    }
}

/* =========================================
   ELITE NUMBER STYLING - MODERN & PREMIUM
   ========================================= */
.value,
.buy,
.sell,
.price-value,
.ticker-item .value,
.topbar-prices .value,
#detailed-price-body td:nth-child(2),
#detailed-price-body td:nth-child(3) {
    font-family: var(--font-numbers) !important;
    font-variant-numeric: tabular-nums lining-nums;
    /* Eşit genişlikli ve hizada rakamlar */
    font-feature-settings: "tnum" 1, "lnum" 1;
    letter-spacing: -0.02em;
    /* Modern sıkı görünüm */
    font-weight: 600;
    /* Biraz daha kalın */
}

/* Price Cards - Extra Emphasis */
.price-card .buy,
.price-card .sell {
    font-weight: 700;
    font-size: 1.2em;
}

/* Changes */
.change,
.change-up,
.change-down {
    font-family: var(--font-numbers) !important;
    font-weight: 700;
}

/* Flash Animations */
@keyframes flash-green {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: rgba(34, 197, 94, 0.3);
    }

    100% {
        background-color: transparent;
    }
}

@keyframes flash-red {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: rgba(239, 68, 68, 0.3);
    }

    100% {
        background-color: transparent;
    }
}

.flash-up {
    animation: flash-green 0.8s ease-out;
}

.flash-down {
    animation: flash-red 0.8s ease-out;
}

/* Marquee item spacing */
.topbar-price-item {
    margin-right: 0 !important;
}

.topbar-update-time {
    margin-right: 0 !important;
}