/* =====================================================
   Perfect Industrie - Ana Stil Dosyası
   Modern, Premium, Kurumsal Tasarım
   ===================================================== */

:root {
    --primary: #0a1628;
    --primary-light: #16243d;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-glow: rgba(37, 99, 235, 0.25);
    --gold: #c9a227;
    --bg: #f7f9fc;
    --bg-card: #ffffff;
    --text: #1a2233;
    --text-muted: #64748b;
    --border: #e6ebf2;
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.10);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1240px;
    --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-head .eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-head p {
    color: var(--text-muted);
    margin-top: 14px;
    font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 17px 40px;
    font-size: 1.05rem;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 18px 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.site-header.scrolled .logo {
    color: var(--primary);
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--accent), #4f46e5);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 6px 18px var(--accent-glow);
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.site-header.scrolled .nav a {
    color: var(--text);
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

.site-header.scrolled .hamburger span {
    background: var(--primary);
}

.hamburger.open span {
    background: var(--primary);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at top right, #16243d 0%, var(--primary) 55%);
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: 60px;
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 26px;
    backdrop-filter: blur(10px);
}

.hero .badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px #34d399;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero h1 .grad {
    background: linear-gradient(120deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Store Cards ---------- */
.stores {
    background: var(--primary);
    padding: 70px 0;
    color: #fff;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.store-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.06));
    opacity: 0;
    transition: var(--transition);
}

.store-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-lg);
}

.store-card:hover::before {
    opacity: 1;
}

.store-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: #fff;
}

.store-icon.trendyol { background: linear-gradient(135deg, #f27a1a, #ff9a3c); }
.store-icon.hepsiburada { background: linear-gradient(135deg, #ff6000, #ff8533); }
.store-icon.amazon { background: linear-gradient(135deg, #232f3e, #37475a); }

.store-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.store-info span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.store-card .arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.store-card:hover .arrow {
    color: #fff;
    transform: translateX(4px);
}

/* ---------- Product Cards ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2f8, #e2e8f0);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-thumb img {
    transform: scale(1.08);
}

.product-thumb .placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    font-size: 2.5rem;
    opacity: 0.4;
}

.product-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 18px;
    flex: 1;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
    margin-top: auto;
}

.product-link:hover {
    gap: 12px;
}

.center-cta {
    text-align: center;
    margin-top: 52px;
}

/* ---------- Filter Bar ---------- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 11px 24px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 6px 18px var(--accent-glow);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    background: radial-gradient(ellipse at top, #16243d 0%, var(--primary) 70%);
    color: #fff;
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
}

.breadcrumb a:hover {
    color: #fff;
}

/* ---------- Product Detail ---------- */
.detail-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: start;
}

.gallery-main {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #eef2f8, #e2e8f0);
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 84px;
    height: 84px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    background: #eef2f8;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
}

.detail-info .detail-cat {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.detail-info h1 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0 18px;
    letter-spacing: -0.02em;
}

.detail-info .short-desc {
    color: var(--text-muted);
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.detail-section {
    margin-bottom: 28px;
}

.detail-section h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--accent);
    border-radius: 4px;
}

.detail-section .long-desc {
    color: var(--text);
    line-height: 1.8;
}

.features-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 500;
}

.features-list li .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.buy-links {
    display: grid;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.buy-links .buy-label {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.buy-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.buy-btn .b-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,0.2);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.buy-btn .b-arrow {
    margin-left: auto;
    transition: var(--transition);
}

.buy-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.buy-btn:hover .b-arrow {
    transform: translateX(4px);
}

.buy-btn.trendyol { background: linear-gradient(135deg, #f27a1a, #ff9a3c); }
.buy-btn.hepsiburada { background: linear-gradient(135deg, #ff6000, #ff8533); }
.buy-btn.amazon { background: linear-gradient(135deg, #232f3e, #455467); }

/* ---------- About ---------- */
.about-layout {
    display: grid;
    gap: 42px;
    align-items: center;
}

.about-layout.has-image {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.about-layout.has-image .about-content {
    max-width: none;
    margin: 0;
}

.about-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text);
}

.about-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 26px 70px rgba(8, 13, 22, 0.18);
    border: 1px solid rgba(0, 167, 255, 0.16);
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.08), rgba(0, 167, 255, 0.08));
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 167, 255, 0.12), transparent 55%, rgba(10, 22, 40, 0.16));
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.about-content h3 {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--text-muted);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.stat-box {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.stat-box .num {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-box .label {
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 600;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: var(--primary);
    color: #fff;
    padding: 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-item .ci-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-item .ci-text h5 {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-item .ci-text p,
.contact-item .ci-text a {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.contact-item .ci-text a:hover {
    color: #60a5fa;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

.contact-form-card {
    background: var(--bg-card);
    padding: 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.92rem;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.98rem;
    transition: var(--transition);
    background: var(--bg);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-wrap {
    margin-top: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    line-height: 0;
}

.map-wrap iframe {
    width: 100%;
    border: 0;
}

/* ---------- Alerts ---------- */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 0.95rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-about .logo {
    color: #fff;
    margin-bottom: 18px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    display: inline-block;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-store-btns {
    display: grid;
    gap: 12px;
}

.footer-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    transition: var(--transition);
}

.footer-store-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

.footer-store-btn .fs-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

/* ---------- Empty state ---------- */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-state .icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 16px;
}

/* ---------- AOS-like reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- SVG icons ---------- */
.icon {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    vertical-align: middle;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .detail-wrap { grid-template-columns: 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }

    .hamburger { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(80vw, 320px);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
    }

    .nav.open { right: 0; }

    .nav a {
        color: var(--text) !important;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1.05rem;
    }

    .nav a::after { display: none; }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.5);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1040;
    }

    .nav-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 130px 0 80px; }
    .contact-info-card, .contact-form-card { padding: 30px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .products-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   Perfect Industrie - Metalik Endüstriyel Tema Güncellemesi
   Logo renklerine uyumlu siyah / krom / elektrik mavisi görünüm
   ===================================================== */
:root {
    --primary: #080d16;
    --primary-light: #111b2b;
    --accent: #00a7ff;
    --accent-hover: #008bd6;
    --accent-glow: rgba(0, 167, 255, 0.30);
    --gold: #d8e2ec;
    --bg: #f3f6fa;
    --bg-card: #ffffff;
    --text: #152033;
    --text-muted: #637084;
    --border: #dfe6ee;
    --shadow-sm: 0 2px 10px rgba(8, 13, 22, 0.08);
    --shadow-md: 0 10px 32px rgba(8, 13, 22, 0.13);
    --shadow-lg: 0 24px 70px rgba(8, 13, 22, 0.20);
}

body {
    background:
        radial-gradient(circle at top right, rgba(0, 167, 255, 0.06), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
}

.section-head .eyebrow,
.detail-info .detail-cat,
.product-link,
.stat-box .num {
    color: var(--accent);
}

.section-head h2,
.product-body h3,
.detail-info h1,
.detail-section h3,
.about-content h3,
.form-group label {
    color: var(--primary);
}

.btn-primary,
.filter-btn.active {
    background: linear-gradient(135deg, #0099ed, #0bd3ff);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 167, 255, 0.26);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #008bd6, #00bff2);
    box-shadow: 0 16px 42px rgba(0, 167, 255, 0.34);
}

.btn-outline:hover,
.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Header */
.site-header {
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(5, 9, 16, 0.88), rgba(5, 9, 16, 0.18));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
    background: rgba(6, 10, 18, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
    border-bottom: 1px solid rgba(0, 167, 255, 0.16);
    padding: 9px 0;
}

.logo {
    gap: 11px;
    color: #fff !important;
    letter-spacing: 0.01em;
}

.logo img.logo-img,
.logo img {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 167, 255, 0.24));
}

.logo-word {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-transform: uppercase;
}

.logo-word span {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    background: linear-gradient(180deg, #ffffff, #aeb8c3 74%, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-word small {
    margin-top: 5px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    color: #5fd9ff;
}

.nav a,
.site-header.scrolled .nav a {
    color: rgba(255, 255, 255, 0.84);
}

.nav a::after {
    background: linear-gradient(90deg, transparent, #19c9ff, transparent);
    height: 2px;
}

.nav a:hover,
.nav a.active {
    color: #5fd9ff;
}

.hamburger span,
.site-header.scrolled .hamburger span {
    background: #ffffff;
}

/* Hero */
.hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(0, 167, 255, 0.32) 0%, transparent 29%),
        radial-gradient(circle at 18% 82%, rgba(108, 122, 137, 0.24) 0%, transparent 30%),
        linear-gradient(135deg, #04070d 0%, #09111d 42%, #122033 100%);
}

.hero::before {
    background: radial-gradient(circle, rgba(0, 167, 255, 0.23) 0%, transparent 68%);
}

.hero::after {
    background: radial-gradient(circle, rgba(215, 225, 235, 0.14) 0%, transparent 70%);
}

.hero-grid {
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
}

.hero .badge {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 167, 255, 0.28);
    color: #dce9f5;
}

.hero .badge .dot {
    background: #0bd3ff;
    box-shadow: 0 0 16px #0bd3ff;
}

.hero h1 .grad,
.hero h1 strong {
    background: linear-gradient(120deg, #ffffff 0%, #8fe8ff 48%, #aeb8c3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p { color: rgba(236, 244, 252, 0.78); }

/* Mağaza alanı */
.stores,
.site-footer,
.contact-info-card {
    background:
        radial-gradient(circle at top right, rgba(0, 167, 255, 0.18), transparent 32%),
        linear-gradient(135deg, #050912 0%, #0b1524 100%);
}

.store-card,
.footer-store-btn,
.footer-socials a,
.contact-socials a {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.10);
}

.store-card:hover,
.footer-store-btn:hover {
    border-color: rgba(0, 167, 255, 0.42);
    box-shadow: 0 18px 45px rgba(0, 167, 255, 0.12);
}

.store-icon.hepsiburada { background: linear-gradient(135deg, #ff6000, #ff9a3c); }
.store-icon.trendyol { background: linear-gradient(135deg, #f27a1a, #ffb45c); }
.store-icon.amazon { background: linear-gradient(135deg, #121820, #415063); }

/* Ürün kartları */
.product-card,
.stat-box,
.contact-form-card {
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 10px 26px rgba(8, 13, 22, 0.06);
}

.product-card:hover,
.stat-box:hover {
    border-color: rgba(0, 167, 255, 0.30);
    box-shadow: 0 22px 58px rgba(8, 13, 22, 0.15), 0 0 0 1px rgba(0, 167, 255, 0.09);
}

.product-thumb,
.gallery-main {
    background:
        linear-gradient(135deg, #f6f8fb, #e7edf4 52%, #f9fbfd);
}

.product-thumb img,
.gallery-main img {
    object-fit: contain;
    padding: 16px;
}

.product-cat {
    background: rgba(8, 13, 22, 0.86);
    color: #eaf7ff;
    border: 1px solid rgba(0, 167, 255, 0.22);
}

.detail-section h3::before {
    background: linear-gradient(180deg, #00a7ff, #d8e2ec);
}

.features-list li .check {
    background: rgba(0, 167, 255, 0.12);
    color: var(--accent);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 167, 255, 0.14);
}

.page-hero {
    background:
        radial-gradient(circle at 72% 12%, rgba(0, 167, 255, 0.25) 0%, transparent 30%),
        linear-gradient(135deg, #04070d 0%, #0a1422 100%);
}

.footer-about .logo img {
    height: 58px !important;
}

@media (max-width: 768px) {
    .logo img.logo-img,
    .logo img { height: 46px; }
    .logo-word span { font-size: 0.98rem; }
    .logo-word small { font-size: 0.56rem; letter-spacing: 0.22em; }
    .nav { background: #080d16; border-left: 1px solid rgba(0,167,255,0.18); }
    .nav a { color: rgba(255,255,255,0.86) !important; border-bottom-color: rgba(255,255,255,0.08); }
    .hamburger.open span { background: #fff; }
}


/* ---------- Header ikonlu mağaza / sosyal medya alanı ---------- */
.header-actions {
    display: flex;
    align-items: center;
    margin-left: 28px;
}

.header-icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.header-icon,
.header-store {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.88);
    transition: var(--transition);
    font-weight: 900;
    line-height: 1;
}

.header-icon svg {
    width: 18px;
    height: 18px;
}

.header-icon svg path,
.header-icon svg rect,
.header-icon svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-icon.social-facebook svg path {
    fill: currentColor;
    stroke: none;
}

.header-store {
    text-transform: lowercase;
    font-size: 0.78rem;
    letter-spacing: -0.04em;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
}

.header-store-trendyol { background: linear-gradient(135deg, #f27a1a, #ff9d40); }
.header-store-hepsiburada { background: linear-gradient(135deg, #ff6000, #ffb000); }
.header-store-amazon { background: linear-gradient(135deg, #17202c, #4d6078); }

.header-icon:hover,
.header-store:hover {
    transform: translateY(-2px) scale(1.05);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 167, 255, 0.18);
}

/* Yönetilebilir hero arka plan görseli */
.hero.has-bg {
    background:
        linear-gradient(90deg, rgba(4, 7, 13, 0.90) 0%, rgba(9, 17, 29, 0.78) 48%, rgba(18, 32, 51, 0.56) 100%),
        radial-gradient(circle at 78% 18%, rgba(0, 167, 255, 0.26) 0%, transparent 30%),
        var(--hero-bg),
        linear-gradient(135deg, #04070d 0%, #09111d 42%, #122033 100%);
    background-size: auto, auto, cover, auto;
    background-position: center, center, center, center;
    background-repeat: no-repeat;
}

/* Hoş geldiniz altı istatistikler */
.home-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 960px;
    margin: -12px auto 0;
}

.home-stat-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 30px 18px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.96), rgba(241,246,251,0.92));
    border: 1px solid rgba(148, 163, 184, 0.26);
    box-shadow: 0 16px 42px rgba(8, 13, 22, 0.08);
}

.home-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0, 167, 255, 0.14), transparent 46%);
    opacity: 0.9;
}

.home-stat-card strong,
.home-stat-card span {
    position: relative;
    z-index: 1;
    display: block;
}

.home-stat-card strong {
    font-size: clamp(1.9rem, 3vw, 2.55rem);
    line-height: 1;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.home-stat-card span {
    margin-top: 10px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.92rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
}

.footer-admin-link {
    position: absolute;
    right: 24px;
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.76rem;
    transition: var(--transition);
}

.footer-admin-link:hover {
    color: rgba(95, 217, 255, 0.8);
}

@media (max-width: 1100px) {
    .nav { gap: 22px; }
    .header-actions { margin-left: 18px; }
    .header-icon-pill { gap: 5px; padding: 7px 10px; }
}

@media (max-width: 880px) {
    .header-actions { margin-left: auto; margin-right: 10px; }
    .header-icon-pill { padding: 6px 8px; }
    .header-store { display: none; }
    .header-icon, .header-store { width: 30px; height: 30px; }
}

@media (max-width: 768px) {
    .home-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .home-stat-card { padding: 24px 14px; }
    .footer-bottom-inner { padding-right: 0; }
    .footer-admin-link { position: static; }
}

@media (max-width: 420px) {
    .header-icon-pill { display: none; }
    .home-stats { grid-template-columns: 1fr; }
}

/* ---------- Header mağaza logoları - küçük ve sabit yükseklik ---------- */
.header-inner {
    justify-content: flex-start;
}

.nav {
    margin-left: auto;
}

.header-store-logos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
    flex: 0 0 auto;
}

.header-market-logo {
    height: 30px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: var(--transition);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.header-market-logo img {
    height: 30px;
    width: auto;
    max-width: none;
    display: block;
}

.header-market-logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 22px rgba(0, 167, 255, 0.25));
}

@media (max-width: 1180px) {
    .header-store-logos { gap: 6px; margin-left: 16px; }
    .header-market-logo,
    .header-market-logo img { height: 27px; }
}

@media (max-width: 980px) {
    .header-store-logos { display: none; }
}

/* ---------- Ürün arama alanı ---------- */
.products-search-bar {
    max-width: 760px;
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 167, 255, 0.12);
    box-shadow: 0 14px 42px rgba(8, 13, 22, 0.08);
}

.products-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    min-height: 46px;
    padding: 0 14px;
    font: inherit;
    color: var(--primary);
    background: transparent;
}

.products-search-bar button,
.products-search-bar .clear-search {
    min-height: 46px;
    border: none;
    border-radius: 13px;
    padding: 0 22px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.products-search-bar button {
    background: linear-gradient(135deg, #0099ed, #0bd3ff);
    color: #fff;
}

.products-search-bar .clear-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef3f8;
    color: var(--text-muted);
}

.products-search-bar button:hover,
.products-search-bar .clear-search:hover {
    transform: translateY(-2px);
}

.search-result-info {
    max-width: 760px;
    margin: -16px auto 34px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(0, 167, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 167, 255, 0.12);
}

/* ---------- Sağ alt arama / WhatsApp hızlı butonları ---------- */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 16px 42px rgba(5, 9, 16, 0.26);
    transition: var(--transition);
    backdrop-filter: blur(14px);
}

.floating-btn svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-search {
    background: linear-gradient(135deg, #0a1628, #1d4ed8);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.floating-call {
    background: linear-gradient(135deg, #1d4ed8, #38bdf8);
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 54px rgba(0, 167, 255, 0.32);
}

.quick-search-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.quick-search-modal.open {
    display: flex;
}

.quick-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 13, 0.76);
    backdrop-filter: blur(10px);
}

.quick-search-box {
    width: min(560px, 100%);
    position: relative;
    z-index: 1;
    border-radius: 26px;
    background: #ffffff;
    padding: 34px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 167, 255, 0.12);
}

.quick-search-box h3 {
    margin: 8px 0 22px;
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.15;
    color: var(--primary);
}

.quick-search-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: #eef3f8;
    color: var(--primary);
    font-size: 1.4rem;
    cursor: pointer;
}

.quick-search-form {
    display: flex;
    gap: 10px;
}

.quick-search-form input {
    flex: 1;
    min-height: 54px;
    border-radius: 15px;
    border: 1px solid var(--border);
    padding: 0 16px;
    font: inherit;
    outline: none;
}

.quick-search-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 167, 255, 0.12);
}

.quick-search-form button {
    min-height: 54px;
    border: none;
    border-radius: 15px;
    padding: 0 24px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #0099ed, #0bd3ff);
}

/* ---------- İletişim sayfası WhatsApp / telefon butonları ---------- */
.contact-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 8px;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    border-radius: 14px;
    font-weight: 800;
    color: #fff;
    transition: var(--transition);
}

.contact-action-btn .icon {
    font-size: 1.08rem;
}

.whatsapp-action {
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.search-action {
    background: linear-gradient(135deg, #0a1628, #1d4ed8);
}

.call-action {
    background: linear-gradient(135deg, #1d4ed8, #38bdf8);
}

.contact-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(8, 13, 22, 0.16);
}

@media (max-width: 900px) {
    .about-layout.has-image {
        grid-template-columns: 1fr;
    }

    .about-image,
    .about-image img {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .products-search-bar,
    .quick-search-form,
    .contact-action-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .products-search-bar button,
    .products-search-bar .clear-search,
    .quick-search-form button {
        width: 100%;
    }

    .floating-actions {
        right: 16px;
        bottom: 16px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
    }
}


/* Footer hover kaymasını ve header logo taşmasını engelleyen stabilizasyon */
.footer-links a,
.footer-store-btn,
.footer-admin-link {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    transform: none !important;
}
.footer-links a:hover,
.footer-store-btn:hover,
.footer-admin-link:hover {
    transform: none !important;
}
.logo .logo-img {
    object-fit: contain;
}


/* ===== Store logo image update ===== */
.header-store-logos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 26px;
    flex: 0 0 auto;
}

.header-market-logo {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 9px;
    overflow: hidden;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 10px 22px rgba(4, 7, 13, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-market-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-market-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 167, 255, 0.22);
}

.store-icon,
.footer-store-btn .fs-icon,
.buy-btn .b-icon {
    background: #fff !important;
    overflow: hidden;
    padding: 0;
}

.store-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.16);
}

.store-icon img,
.footer-store-btn .fs-icon img,
.buy-btn .b-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-store-btn .fs-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.buy-btn .b-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.10);
    flex-shrink: 0;
}

@media (max-width: 1180px) {
    .header-store-logos { gap: 8px; margin-left: 18px; }
    .header-market-logo { width: 31px; height: 31px; }
}

@media (max-width: 980px) {
    .header-store-logos { display: none; }
}

/* Mobil kategori taşması düzeltmesi */
@media (max-width: 768px) {
    .filter-bar {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        max-width: 100%;
        padding: 4px 4px 14px;
        margin-bottom: 28px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Mobilde footer yönetim linki sağ alttaki butonların altında kalmasın */
@media (max-width: 768px) {
    .site-footer {
        padding-bottom: 120px;
    }

    .footer-bottom-inner {
        padding-right: 90px;
        text-align: left;
    }

    .footer-admin-link {
        position: static !important;
        display: inline-flex;
        margin-top: 12px;
    }
}

/* Ürün kartı görsel slider */
.product-card-gallery {
    position: relative;
    overflow: hidden;
    display: block;
}

.product-card-gallery .card-gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.product-card-gallery .card-gallery-img.active {
    opacity: 1;
}

.card-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(7, 15, 27, 0.72);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.2s ease;
}

.card-gallery-arrow:hover {
    background: rgba(0, 167, 255, 0.9);
}

.card-gallery-arrow.prev {
    left: 10px;
}

.card-gallery-arrow.next {
    right: 10px;
}

/* Ürün detay sayfası okları */
.product-detail-gallery {
    position: relative;
    cursor: zoom-in;
}

.detail-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(7, 15, 27, 0.76);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.2s ease;
}

.detail-gallery-arrow:hover {
    background: rgba(0, 167, 255, 0.92);
}

.detail-gallery-arrow.prev {
    left: 14px;
}

.detail-gallery-arrow.next {
    right: 14px;
}

/* Ürün görseli büyütme overlay */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.88);
}

.image-lightbox.open {
    display: flex;
}

.image-lightbox img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close,
.image-lightbox-arrow {
    position: absolute;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.2s ease;
}

.image-lightbox-close:hover,
.image-lightbox-arrow:hover {
    background: rgba(0, 167, 255, 0.85);
}

.image-lightbox-close {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    font-size: 2rem;
}

.image-lightbox-arrow {
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    font-size: 2.2rem;
}

.image-lightbox-arrow.prev {
    left: 24px;
}

.image-lightbox-arrow.next {
    right: 24px;
}

@media (max-width: 768px) {
    .card-gallery-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }

    .detail-gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .image-lightbox {
        padding: 14px;
    }

    .image-lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.8rem;
    }

    .image-lightbox-arrow.prev {
        left: 12px;
    }

    .image-lightbox-arrow.next {
        right: 12px;
    }
}

/* Mobil menü açılınca ekran bulanıklığını kaldır */
@media (max-width: 768px) {
    .nav-overlay,
    .nav-overlay.open {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.35) !important;
    }

    .nav,
    .nav.open {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* Mobilde hamburger menüyü sağa al */
@media (max-width: 768px) {
    .header-inner {
        justify-content: space-between !important;
    }

    .logo {
        flex-shrink: 0;
    }

    .hamburger {
        margin-left: auto !important;
        margin-right: 0 !important;
        position: relative;
        right: 0;
    }

    .nav {
        margin-left: 0 !important;
    }
}

/* ============================================================
   MOBİL MENÜ TIKLAMA DÜZELTMESİ (v3 — JS'ten bağımsız)
   Linkler tıklanmıyordu çünkü panelin üstündeki tam ekran karartma
   katmanı (.nav-overlay) tıklamaları yutuyordu. Bu sürümde overlay
   ARTIK tıklama yakalamıyor (pointer-events:none) ve menü paneli ile
   linkleri en üst katmanda, kesin tıklanabilir hale getiriliyor.
   body.menu-open sınıfına BAĞIMLI DEĞİLDİR; CSS tek başına çözer.
   ============================================================ */
@media (max-width: 768px) {
    /* Karartma katmanı görünür ama tıklamayı YUTMAZ.
       (Kapatma işini hamburger/X butonu ve link tıklaması yapar.) */
    .nav-overlay,
    .nav-overlay.open {
        z-index: 1900 !important;
        pointer-events: none !important;
    }

    /* Menü paneli her şeyin üstünde ve tıklanabilir */
    .nav {
        z-index: 2000 !important;
    }
    .nav,
    .nav.open {
        pointer-events: auto !important;
    }

    /* Linkler kesinlikle tıklanabilir ve tam genişlikte hedef alanı */
    .nav a {
        position: relative !important;
        z-index: 2001 !important;
        pointer-events: auto !important;
        display: block !important;
        width: 100% !important;
    }

    /* Hamburger / X menünün de üstünde kalsın */
    .hamburger {
        z-index: 2100 !important;
        pointer-events: auto !important;
    }

    /* Sağ alt sabit butonlar ve hızlı arama, menü panelinin ALTINDA kalsın
       ki açık menüde linklerin önünü kesmesinler. */
    .floating-actions {
        z-index: 1800 !important;
    }
    .quick-search-modal {
        z-index: 1850 !important;
    }
}