/* GÜÇLÜ FENERİM PREMIUM THEME - 2026 */
/* Font: HTML'de Google Fonts link ile yükleniyor (Outfit, Inter) */

:root {
    /* Veno Mobilya - Nursery & Premium Furniture Palette */
    --primary: #5d4037;
    --primary-light: #8d6e63;
    --primary-dark: #3e2723;
    --accent: #f06292;
    --accent-hover: #e91e8c;
    --accent-text: #5d4037;
    --secondary: #bbdefb;
    --secondary-hover: #90caf9;
    --danger: #e57373;
    --success: #81c784;
    --warning: #fff176;
    --bg-body: #fdf4f8;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --bg-input: #fce4ef;
    --text-main: #3e2723;
    --text-muted: #6d4c41;
    --text-light: #a1887f;
    --text-white: #ffffff;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --shadow-sm: 0 4px 12px rgba(93, 64, 55, 0.12);
    --shadow-md: 0 8px 24px rgba(93, 64, 55, 0.18);
    --shadow-lg: 0 16px 40px rgba(93, 64, 55, 0.24);
    --header-height: 85px;
    --mobile-nav-height: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { display: none; width: 0; background: transparent; }
html { overflow-x: hidden; width: 100%; height: 100%; position: relative; scrollbar-width: none; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; padding-top: var(--header-height); overflow-x: hidden; width: 100%; min-height: 100vh; position: relative; }
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; color: var(--primary); line-height: 1.2; margin-bottom: 0.5rem; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; overflow-x: hidden; }
@media (max-width: 768px) { .container { padding: 0 15px; } }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: var(--radius-xl); font-weight: 600; font-size: 0.95rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); letter-spacing: 0.3px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent); color: var(--accent-text); box-shadow: 0 4px 15px rgba(244, 143, 177, 0.3); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 6px 20px rgba(244, 143, 177, 0.4); }
.btn-dark { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(93, 64, 55, 0.3); }
.btn-dark:hover { background: var(--primary-light); box-shadow: 0 6px 20px rgba(93, 64, 55, 0.4); }
.main-header { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); height: var(--header-height); position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; box-shadow: var(--shadow-md); border-bottom: 2px solid #f8bbd0; }
@media (max-width: 768px) { .main-header { height: 65px; } body { padding-top: 65px; } }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.brand-logo { display: flex; align-items: center; gap: 12px; font-family: 'Outfit', sans-serif; text-decoration: none; }
.logo-icon-box { width: 42px; height: 42px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; transform: rotate(-5deg); box-shadow: 0 4px 10px rgba(93, 64, 55, 0.3); }
.logo-icon-box i { color: var(--accent); font-size: 1.25rem; transform: rotate(5deg); }
.hero { position: relative; background: linear-gradient(135deg, #5d4037 0%, #3e2723 100%); overflow: hidden; width: 100%; max-width: 100vw; height: 500px; display: flex; align-items: center; justify-content: center; }
.hero::after { content: ""; position: absolute; top: 0; left: -150%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent); transform: skewX(-25deg); animation: bannerShine 6s infinite; z-index: 5; pointer-events: none; }
@keyframes bannerShine { 0% { left: -150%; } 20% { left: 150%; } 100% { left: 150%; } }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; max-width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 1s, transform 1.2s, visibility 1s; transform: scale(1.1); z-index: 1; overflow: hidden; }
.hero-slide.active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.hero-slide h1, .hero-slide p, .hero-slide .btn { transform: translateY(30px); opacity: 0; transition: all 0.8s ease-out; }
.hero-slide.active h1, .hero-slide.active p, .hero-slide.active .btn { transform: translateY(0); opacity: 1; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; background: rgba(255, 255, 255, 0.3); border-radius: 50%; cursor: pointer; transition: 0.3s; border: 1px solid rgba(255, 255, 255, 0.1); }
.slider-dot.active { background: #f8bbd0; transform: scale(1.4); box-shadow: 0 0 10px rgba(248, 187, 208, 0.5); }
.logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.logo-text-top { font-weight: 800; font-size: 1.3rem; color: var(--primary); letter-spacing: -0.5px; }
.logo-text-bottom { font-weight: 600; font-size: 0.85rem; color: var(--accent-hover); letter-spacing: 2px; text-transform: uppercase; }
.header-btn { background: transparent; font-size: 1.35rem; color: var(--text-main); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.header-btn:hover { background: var(--bg-input); color: var(--primary); }
.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(93, 64, 55, 0.4); backdrop-filter: blur(4px); z-index: 1040; display: none; opacity: 0; transition: opacity 0.3s; }
.sidebar-overlay.active { display: block; opacity: 1; }
.sidebar { position: fixed; top: 0; left: 0; width: 80%; max-width: 300px; height: 100%; background: white; z-index: 1050; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; }
.sidebar.active { transform: translateX(0); }
.sidebar-header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; background: var(--bg-body); border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.sidebar-menu { flex: 1; overflow-y: auto; padding: 1rem; }
.sidebar-menu a { display: flex; align-items: center; padding: 12px 16px; color: var(--text-main); font-weight: 500; border-radius: var(--radius-md); transition: all 0.2s; }
.sidebar-menu a i { width: 32px; height: 32px; background: var(--bg-input); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-right: 12px; font-size: 0.9rem; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; padding: 10px; }
.modern-card { background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid #f0c4d8; transition: 0.3s; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.modern-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #f06292; }
.card-image-box { width: 100%; aspect-ratio: 1/1; background: #fff; padding: 1rem; display: flex; align-items: center; justify-content: center; }
.card-image-box img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.4s; }
.modern-card:hover .card-image-box img { transform: scale(1.08); }
.card-content { padding: 1rem; flex: 1; display: flex; flex-direction: column; border-top: 1px solid #f1f5f8; }
.card-title { font-size: 1rem; color: var(--text-main); margin-bottom: 0.5rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.footer { background: var(--primary); color: white; padding: 4rem 0 2rem; margin-top: 4rem; }
.footer a { color: rgba(255, 255, 255, 0.8); }
.footer a:hover { color: var(--accent); }
.mobile-bottom-nav { display: none; }
@media (max-width: 900px) { .mobile-bottom-nav { display: flex; } body { padding-bottom: 80px; } }
.ripple { position: relative; overflow: hidden; transform: translate3d(0, 0, 0); }
.ripple:after { content: ""; display: block; position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: radial-gradient(circle, #fff 10%, transparent 10.01%); background-repeat: no-repeat; background-position: 50%; transform: scale(10, 10); opacity: 0; transition: transform .5s, opacity 1s; }
.ripple:active:after { transform: scale(0, 0); opacity: .3; transition: 0s; }
@media (max-width: 768px) { .hero { height: auto; min-height: 550px; } .hero-slide { padding-top: 90px; } .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
div:where(.swal2-container) { z-index: 999999999 !important; }
