/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff0000;
    --secondary-color: #5a6578;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #2d3436;
    --bg-gray: #5a6578;
    --anthracite-dark: #2d3436;
    --anthracite-light: #5a6578;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* SEO & A11y */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10001;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 4px;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--text-light);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.navbar-logo img {
    height: 40px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-gray);
    min-width: 200px;
    list-style: none;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
    font-size: 0.9rem;
    text-transform: none;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-catalog {
    background: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-catalog:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-switch a {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.language-switch a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.language-switch a.active {
    color: #fff;
}

.language-switch a.active:hover {
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background: var(--bg-gray);
    padding: 2rem;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

.mobile-dropdown-menu {
    list-style: none;
    padding-left: 1rem;
    margin-top: 1rem;
    display: none;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-lang-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 0.5rem;
}

.mobile-lang-wrap .mobile-lang-label {
    margin-right: 0.25rem;
    opacity: 0.85;
    font-size: 0.95rem;
}

.mobile-lang-wrap a {
    display: inline;
    color: rgba(255, 255, 255, 0.55);
}

.mobile-lang-wrap a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-lang-wrap a.active {
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--anthracite-light) 0%, var(--anthracite-dark) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.btn-hero {
    display: inline-block;
    background: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.4s backwards;
    transition: var(--transition);
}

.btn-hero:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 5rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Product Slider – Hedef-style carousel */
.product-slider {
    padding: 4rem 5%;
    background: var(--bg-dark);
}

.anasayfa-alan-2 {
    max-width: 1400px;
    margin: 0 auto;
}

.anasayfa-alan-2 .slider-with-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.anasayfa-alan-2 .slider-arrows {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.anasayfa-alan-2 .slider-arrows .arrow {
    margin: 0;
}

.anasayfa-alan-2 .slider-container {
    flex: 1;
    min-width: 0;
    position: relative;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.anasayfa-alan-2 .back-category {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.anasayfa-alan-2 .elips {
    position: absolute;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.anasayfa-alan-2 .elips img {
    width: min(400px, 80vw);
    height: auto;
    object-fit: contain;
}

.anasayfa-alan-2 .slider-category-label {
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}

.anasayfa-alan-2 .slide {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 280px;
    transition: transform 0.5s ease, opacity 0.5s ease, z-index 0s;
    z-index: 1;
}

.anasayfa-alan-2 .slide .content {
    display: block;
    color: inherit;
    text-align: center;
}

.anasayfa-alan-2 .slide .product-slide-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(45, 52, 54, 0.4));
}

.anasayfa-alan-2 .slide h2 {
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.anasayfa-alan-2 .slide.active-center {
    transform: translate(-50%, -50%) scale(1);
    z-index: 5;
    opacity: 1;
}

.anasayfa-alan-2 .slide.active-center .product-slide-img {
    filter: drop-shadow(0 20px 40px rgba(45, 52, 54, 0.5));
}

.anasayfa-alan-2 .slide.active-left {
    transform: translate(-50%, -50%) translateX(-85%) scale(0.75);
    z-index: 2;
    opacity: 0.85;
}

.anasayfa-alan-2 .slide.active-right {
    transform: translate(-50%, -50%) translateX(85%) scale(0.75);
    z-index: 2;
    opacity: 0.85;
}

.anasayfa-alan-2 .slide.active-left-2 {
    transform: translate(-50%, -50%) translateX(-165%) scale(0.55);
    z-index: 1;
    opacity: 0.5;
}

.anasayfa-alan-2 .slide.active-right-2 {
    transform: translate(-50%, -50%) translateX(165%) scale(0.55);
    z-index: 1;
    opacity: 0.5;
}

.anasayfa-alan-2 .dots-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.anasayfa-alan-2 .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.anasayfa-alan-2 .dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.anasayfa-alan-2 .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.anasayfa-alan-2 .product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.anasayfa-alan-2 .details-container {
    text-align: center;
}

.anasayfa-alan-2 .details-container p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.anasayfa-alan-2 .details-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.anasayfa-alan-2 .details-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
}

.anasayfa-alan-2 .details-button a:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.anasayfa-alan-2 .details-button #product-link-2 {
    width: 44px;
    padding: 0.6rem;
}

.anasayfa-alan-2 .product-container .button-container {
    display: flex;
    gap: 0.5rem;
}

.anasayfa-alan-2 .slider-arrows.button-container {
    display: flex;
}

.anasayfa-alan-2 .arrow {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.anasayfa-alan-2 .arrow:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .anasayfa-alan-2 .slide { width: 220px; }
    .anasayfa-alan-2 .slide.active-left,
    .anasayfa-alan-2 .slide.active-right { transform: translate(-50%, -50%) translateX(-75%) scale(0.7); }
    .anasayfa-alan-2 .slide.active-left-2,
    .anasayfa-alan-2 .slide.active-right-2 { transform: translate(-50%, -50%) translateX(-140%) scale(0.5); }
    .anasayfa-alan-2 .slide.active-right-2 { transform: translate(-50%, -50%) translateX(140%) scale(0.5); }
    .anasayfa-alan-2 .slide.active-right { transform: translate(-50%, -50%) translateX(75%) scale(0.7); }
}

@media (max-width: 768px) {
    .anasayfa-alan-2 .slider-with-arrows { gap: 0.25rem; }
    .anasayfa-alan-2 .slider-arrows .arrow { width: 40px; height: 40px; font-size: 1rem; }
    .anasayfa-alan-2 .slider-category-label { font-size: 0.8rem; top: 4.5rem; white-space: normal; max-width: 90%; text-align: center; }
    .anasayfa-alan-2 .slider-container { min-height: 300px; }
    .anasayfa-alan-2 .slide { width: 180px; }
    .anasayfa-alan-2 .slide.active-left,
    .anasayfa-alan-2 .slide.active-right { transform: translate(-50%, -50%) translateX(-105%) scale(0.6); opacity: 0.75; }
    .anasayfa-alan-2 .slide.active-left-2,
    .anasayfa-alan-2 .slide.active-right-2 { transform: translate(-50%, -50%) translateX(-195%) scale(0.4); opacity: 0.35; }
    .anasayfa-alan-2 .slide.active-right-2 { transform: translate(-50%, -50%) translateX(195%) scale(0.4); opacity: 0.35; }
    .anasayfa-alan-2 .slide.active-right { transform: translate(-50%, -50%) translateX(105%) scale(0.6); opacity: 0.75; }
}

/* anasayfa-alan-3 – birleşik yatay */
.anasayfa-alan-3 {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 3%;
}

.anasayfa-alan-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: var(--anthracite-light);
    z-index: 0;
}

/* Tek kart – başlık üstte, içerik yatay */
.anasayfa-alan-3 .alan3-single {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(35, 40, 45, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.anasayfa-alan-3 .alan3-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: stretch;
}

/* Fotoğraflar ve 3D model/video yan yana */
.anasayfa-alan-3 .alan3-row .alan3-gorsel-wrap,
.anasayfa-alan-3 .alan3-row .alan3-media-wrap {
    flex: 1;
    min-width: 200px;
}

.anasayfa-alan-3 .alan3-single h2 {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 0.25rem 0;
}

.anasayfa-alan-3 .alan3-single h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: #fff;
}

.anasayfa-alan-3 .alan3-gorsel-wrap {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.anasayfa-alan-3 .alan3-gorsel-wrap img {
    max-width: 100%;
    width: auto;
    max-height: 240px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.anasayfa-alan-3 .alan3-specs {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
}

.anasayfa-alan-3 .alan3-specs h4 {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1rem 0;
}

.anasayfa-alan-3 .alan3-specs ul {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.anasayfa-alan-3 .alan3-specs li {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.anasayfa-alan-3 .alan3-specs li:last-of-type {
    border-bottom: none;
}

.anasayfa-alan-3 .alan3-specs span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

.anasayfa-alan-3 .alan3-specs p {
    margin: 0;
    color: #fff;
}

.anasayfa-alan-3 .alan3-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.anasayfa-alan-3 .alan3-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.anasayfa-alan-3 .alan3-media-wrap {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(20, 24, 28, 0.9);
}

.anasayfa-alan-3 .alan3-media-wrap model-viewer {
    width: 100%;
    min-height: 380px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
}

.anasayfa-alan-3 .alan3-media-wrap video {
    width: 100%;
    height: auto;
    min-height: 380px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .anasayfa-alan-3 .alan3-row {
        flex-direction: column;
    }
    .anasayfa-alan-3 .alan3-single {
        text-align: center;
    }
    .anasayfa-alan-3 .alan3-gorsel-wrap {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .anasayfa-alan-3 .alan3-single h3 {
        font-size: 1.5rem;
    }
    .anasayfa-alan-3 .alan3-gorsel-wrap {
        flex-direction: column;
    }
    .anasayfa-alan-3 .alan3-media-wrap {
        min-height: 320px;
    }
    .anasayfa-alan-3 .alan3-media-wrap model-viewer {
        min-height: 320px;
    }
}

/* Featured Product (legacy – kept for reference) */
.featured-product {
    padding: 5rem 5%;
    background: var(--bg-gray);
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-left {
    text-align: center;
}

.featured-brand {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-name {
    font-size: 3rem;
    margin: 1rem 0 2rem;
}

.featured-image-container {
    position: relative;
    margin: 2rem 0;
}

.featured-image {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(45, 52, 54, 0.5));
}

.color-selector {
    margin: 2rem 0;
}

.color-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.product-specs {
    background: rgba(45, 52, 54, 0.4);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: left;
}

.product-specs h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-specs ul {
    list-style: none;
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-specs li:last-child {
    border-bottom: none;
}

.btn-view-details {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    background: var(--primary-color);
    padding: 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-view-details:hover {
    background: #cc0000;
}

.featured-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.featured-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.featured-video {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg-dark);
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, var(--anthracite-light) 0%, var(--anthracite-dark) 100%);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder i:hover {
    transform: scale(1.1);
}

/* anasayfa-alan-4 – verilen HTML ile birebir */
.anasayfa-alan-4 {
    padding: 3rem 5%;
    background: var(--bg-dark);
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 4rem;
}

.anasayfa-alan-4 .alan4-ust-sol,
.anasayfa-alan-4 .alan4-ust-sag {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

/* Semi Automatic – Hedef fotoğrafları birebir */
.anasayfa-alan-4 .alan4-ust-sol {
    background: url('https://hedefarms.com.tr/wp-content/uploads/2025/03/kategori-semi-auto.png') center center / cover no-repeat;
    width: clamp(260px, 34.8vw, 420px);
    height: clamp(130px, 18.5vw, 220px);
    padding: 0;
    align-items: flex-end;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.anasayfa-alan-4 .alan4-ust-sol:hover {
    transform: none;
    box-shadow: none;
}

.anasayfa-alan-4 .alan4-ust-sol p,
.anasayfa-alan-4 .alan4-ust-sol i {
    margin-bottom: 1rem;
    z-index: 2;
}

.anasayfa-alan-4 .alan4-ust-sol i {
    margin-left: 0.4rem;
    font-size: clamp(0.7rem, 0.9vw, 0.95rem);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 0.25rem;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Pistols – Hedef fotoğrafları birebir */
.anasayfa-alan-4 .alan4-ust-sag {
    background: url('https://hedefarms.com.tr/wp-content/uploads/2025/03/kategori-pistols.png') center center / cover no-repeat;
    width: clamp(260px, 34.8vw, 420px);
    height: clamp(130px, 18.5vw, 220px);
    padding: 0;
    align-items: flex-end;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.anasayfa-alan-4 .alan4-ust-sag:hover {
    transform: none;
    box-shadow: none;
}

.anasayfa-alan-4 .alan4-ust-sol p {
    margin: 0 0 1rem 0;
}

.anasayfa-alan-4 .alan4-ust-sag p {
    margin: 0 0 1rem 0;
}

.anasayfa-alan-4 .alan4-ust-sag p,
.anasayfa-alan-4 .alan4-ust-sag i {
    margin-bottom: 1rem;
    z-index: 2;
}

.anasayfa-alan-4 .alan4-ust-sag i {
    margin-left: 0.4rem;
    font-size: clamp(0.7rem, 0.9vw, 0.95rem);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 0.25rem;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.anasayfa-alan-4 .alan4-alt {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 200px;
    margin-top: 0.25rem;
}

.anasayfa-alan-4 .alan4-all-products-wrap {
    position: relative;
    width: min(74vw, 1100px);
    max-width: 100%;
}

/* All Products link – resim + etiket içinde */
.anasayfa-alan-4 .alan4-all-products-link {
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
}

.anasayfa-alan-4 .alan4-all-products-link:hover {
    color: #fff;
}

.anasayfa-alan-4 .alan4-all-products-imgs {
    display: block;
    position: relative;
}

.anasayfa-alan-4 .alan4-all-products-imgs img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.anasayfa-alan-4 .alan4-all-products-imgs img:last-child {
    display: none;
}

.anasayfa-alan-4 .alan4-all-products-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    z-index: 2;
}

.anasayfa-alan-4 .alan4-all-products-label p {
    margin: 0;
}

/* Play butonu – resimlerin en üstünde */
.anasayfa-alan-4 .alan4-video.video {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
    z-index: 10;
}

.anasayfa-alan-4 .alan4-video.video:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(-50%) scale(1.1);
}

@media (max-width: 481px) {
    .anasayfa-alan-4 {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem 5%;
    }
    .anasayfa-alan-4 .alan4-ust-sol,
    .anasayfa-alan-4 .alan4-ust-sag {
        width: 100%;
        max-width: 90vw;
    }
    .anasayfa-alan-4 .alan4-ust-sol {
        background-image: url('https://hedefarms.com.tr/wp-content/uploads/2025/03/mobil-kategori-semi-auto.jpg');
        width: 90vw;
        height: 50vw;
        border-radius: 0 14px 14px 0;
    }
    .anasayfa-alan-4 .alan4-ust-sol p,
    .anasayfa-alan-4 .alan4-ust-sol i {
        margin-bottom: 3vw;
        font-size: 4vw;
    }
    .anasayfa-alan-4 .alan4-ust-sol i {
        margin-left: 2vw;
        padding: 1vw;
        border-width: 2px;
    }
    .anasayfa-alan-4 .alan4-ust-sag {
        background-image: url('https://hedefarms.com.tr/wp-content/uploads/2025/03/mobil-kategori-pistols.jpg');
        width: 90vw;
        height: 50vw;
        border-radius: 0 14px 14px 0;
    }
    .anasayfa-alan-4 .alan4-ust-sag p,
    .anasayfa-alan-4 .alan4-ust-sag i {
        margin-bottom: 3vw;
        font-size: 4vw;
    }
    .anasayfa-alan-4 .alan4-ust-sag i {
        margin-left: 2vw;
        padding: 1vw;
        border-width: 2px;
    }
    /* Mobil: 1. img gizli, 2. img (mobil-kategori-all-products-1.jpg) */
    .anasayfa-alan-4 .alan4-all-products-wrap {
        width: 90vw;
        max-width: 100%;
    }
    .anasayfa-alan-4 .alan4-all-products-imgs img:first-child {
        display: none;
    }
    .anasayfa-alan-4 .alan4-all-products-imgs img:last-child {
        display: block;
    }
    .anasayfa-alan-4 .alan4-all-products-label {
        font-size: 4vw;
        bottom: 2vw;
    }
}

/* anasayfa-alan-5 (About) – section arkası açık antresit (alan3 gibi) */
.anasayfa-alan-5 {
    position: relative;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.anasayfa-alan-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: var(--anthracite-light);
    z-index: 0;
}

.anasayfa-alan-5 .alan5-sol,
.anasayfa-alan-5 .alan5-sag {
    position: relative;
    z-index: 1;
}

.anasayfa-alan-5 .alan5-sol h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.anasayfa-alan-5 .alan5-sol h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.anasayfa-alan-5 .alan5-sol p {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.anasayfa-alan-5 .alan5-sol a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.anasayfa-alan-5 .alan5-sol a:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.anasayfa-alan-5 .alan5-sag {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 400px;
    max-width: 540px;
    justify-self: center;
}

.anasayfa-alan-5 .alan5-sag .arka {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 24px;
}

.anasayfa-alan-5 .alan5-sag > a {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(45, 52, 54, 0.5) 0%, transparent 50%);
    transition: var(--transition);
}

.anasayfa-alan-5 .alan5-sag > a:hover {
    background: linear-gradient(to top, rgba(45, 52, 54, 0.7) 0%, transparent 50%);
}

.anasayfa-alan-5 .alan5-sag .on {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44%;
    height: auto;
    max-height: 60%;
    object-fit: contain;
    object-position: left bottom;
    border-radius: 24px;
    transform: translateX(-8%);
}

.anasayfa-alan-5 .alan5-sag .ok {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.anasayfa-alan-5 .alan5-sag > a:hover .ok {
    background: #cc0000;
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .anasayfa-alan-5 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .anasayfa-alan-5 .alan5-sag {
        min-height: 320px;
        max-width: 100%;
        aspect-ratio: 1 / 1;
        order: -1;
    }
}

@media (max-width: 768px) {
    .anasayfa-alan-5 .alan5-sol h2 {
        font-size: 1.75rem;
    }
    .anasayfa-alan-5 .alan5-sag {
        aspect-ratio: 1 / 1;
        min-height: 280px;
    }
    .anasayfa-alan-5 .alan5-sag .on {
        display: none;
    }
}

/* Anasayfa Alan 6 – video + flexslider (Hedef) */
.anasayfa-alan-6 {
    position: relative;
    height: 48vw;
    display: block;
    overflow: hidden;
    background: var(--bg-dark);
}

.anasayfa-alan-6 .alan6-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: difference;
    pointer-events: none;
}

.anasayfa-alan-6 .alan6-flexslider {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.anasayfa-alan-6 .flex-viewport {
    height: 49vw !important;
    overflow: hidden !important;
}

.anasayfa-alan-6 .slides {
    height: 50vw;
}

.anasayfa-alan-6 .alan6-slide {
    align-items: center;
    justify-content: center;
    place-content: center;
    padding-top: 0;
    height: 50vw;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    background-size: 72% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.anasayfa-alan-6 .slides > li.flex-active-slide {
    display: flex !important;
}

.anasayfa-alan-6 .slide-kpsr {
    position: absolute;
    top: 2vw;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 10;
}

.anasayfa-alan-6 .slide-kpsr > span {
    font-size: 1.25vw;
    color: var(--anthracite-light);
    font-weight: 600;
    flex-shrink: 0;
}

.anasayfa-alan-6 .slide-title {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1vw;
    flex: 1;
    min-width: 0;
}

.anasayfa-alan-6 .slide-title > span {
    font-size: 1.25vw;
    color: #A10000;
    text-align: right;
    font-weight: 700;
    margin-left: auto;
    flex-shrink: 0;
}

.anasayfa-alan-6 .slide-title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 0.6vw;
    background: #98191d;
    width: 18vw;
    min-width: 110px;
    height: 2.6vw;
    min-height: 28px;
    clip-path: polygon(12% 0%, 100% 0, 100% 100%, 0% 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9vw;
    padding-left: 3.2vw;
    padding-right: 0.4vw;
    transition: var(--transition);
}

.anasayfa-alan-6 .slide-title a:hover {
    background: #b11f24;
}

.anasayfa-alan-6 .slide-title a span:first-of-type {
    color: #fff;
    padding-left: 0.4vw;
}

.anasayfa-alan-6 .slide-title a span:last-of-type {
    background: #d43131;
    width: 10vw;
    min-width: 44px;
    height: 1vw;
    min-height: 10px;
    display: block;
    flex-shrink: 0;
}

/* Flexslider nav overrides – alan-6 */
.anasayfa-alan-6 .flex-control-nav.flex-control-paging {
    margin-top: -7vw;
    margin-left: auto;
    margin-right: auto;
    display: flex !important;
    align-items: center;
    width: 57vw;
    max-width: 800px;
    justify-content: center;
    z-index: 99999;
    position: relative;
}

.anasayfa-alan-6 .flex-control-paging li {
    margin: 0 1vw;
}

.anasayfa-alan-6 .flex-control-paging li a {
    width: 13vw;
    max-width: 120px;
    height: 0.4vw;
    min-height: 4px;
    background: #000;
    cursor: pointer;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    border-radius: 0;
}

.anasayfa-alan-6 .flex-control-paging li a.flex-active {
    background: var(--primary-color);
    cursor: default;
}

.anasayfa-alan-6 .flex-direction-nav a {
    opacity: 0.7;
}

.anasayfa-alan-6 .flex-direction-nav .flex-prev {
    left: 2vw;
}

.anasayfa-alan-6 .flex-direction-nav .flex-next {
    right: 2vw;
}

@media (max-width: 768px) {
    .anasayfa-alan-6 {
        height: 80vw;
        min-height: 320px;
    }
    .anasayfa-alan-6 .alan6-flexslider .flex-viewport {
        height: 80vw !important;
    }
    .anasayfa-alan-6 .alan6-slide {
        height: 80vw;
        padding-top: 0;
        background-size: 80% !important;
        background-position: center center !important;
    }
    .anasayfa-alan-6 .slide-kpsr {
        top: 3vw;
        padding: 0 4%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5vw;
        align-items: center;
        justify-content: space-between;
    }
    .anasayfa-alan-6 .slide-kpsr > span,
    .anasayfa-alan-6 .slide-title > span {
        font-size: 3.2vw;
    }
    .anasayfa-alan-6 .slide-title {
        justify-content: flex-end;
        flex: 1;
        min-width: 0;
    }
    .anasayfa-alan-6 .slide-title > span {
        margin-left: auto;
    }
    .anasayfa-alan-6 .slide-title a {
        width: 36vw;
        min-width: 120px;
        height: 6vw;
        min-height: 32px;
        font-size: 2.8vw;
    }
    .anasayfa-alan-6 .flex-control-paging li a {
        width: 20vw;
        max-width: 80px;
    }
}

/* Footer */
.footer {
    background: var(--bg-gray);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: block;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-contact:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.scroll-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.scroll-top:hover {
    transform: translateY(-3px);
}

.footer-divider {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.footer-divider span {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Flash Messages */
.flash-message {
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: center;
}

.flash-message.success {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.5);
}

.flash-message.error {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar-menu,
    .navbar-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .featured-name,
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-slide {
        flex-direction: column;
    }
    
    .showcase-slide img {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: center;
    }
}

/* İç sayfalar – Hakkımızda, İletişim */
.page-hero {
    background: var(--anthracite-light);
    padding: 4rem 5% 3rem;
    text-align: center;
}
.page-hero .page-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.page-hero .page-subtitle {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 5% 4rem;
}
.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}
.page-content .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.page-content .btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.page-content .btn-inline:hover,
.page-content .btn-inline:focus {
    color: #fff !important;
    background: #cc0000;
    transform: translateY(-2px);
}

/* İletişim (Hedef Contact Us yapısı) */
.iletisim {
    background: var(--anthracite-dark);
    color: var(--text-light);
}
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5% 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition);
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}
.contact-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
}
.contact-details h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.35rem;
    color: var(--text-light);
}
.contact-details p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}
.contact-details a {
    color: inherit;
}
.contact-details a:hover { color: var(--primary-color); }

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
}
.iletisim-form .input {
    margin-bottom: 1rem;
}
.iletisim-form label { display: none; }
.iletisim-form-kolonlar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.iletisim-form-kolonlar .input { margin-bottom: 1rem; }
.iletisim-form-message .input { margin-bottom: 1rem; }
.iletisim-form input[type="text"],
.iletisim-form input[type="email"],
.iletisim-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
}
.iletisim-form textarea { min-height: 140px; resize: vertical; }
.iletisim-form input::placeholder,
.iletisim-form textarea::placeholder { color: rgba(255, 255, 255, 0.5); }
.iletisim-form input:focus,
.iletisim-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.15);
}
.form-dogrula {
    margin-top: 1rem;
}
.iletisim-form button[type="submit"] {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.iletisim-form button[type="submit"]:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.map-section {
    padding: 0 5% 4rem;
}
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16 / 9;
    min-height: 280px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Kurumsal / Hakkımızda (Company) sayfası */
.kurumsal {
    background: var(--anthracite-dark);
    color: var(--text-light);
}
.sayfa-baslik {
    padding: 6rem 5% 3rem;
    text-align: center;
    background: var(--anthracite-dark);
}
.sayfa-baslik-container {
    max-width: 1200px;
    margin: 0 auto;
}
.sayfa-baslik-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: var(--text-light);
}

.company-hero {
    position: relative;
    padding: 4rem 5% 5rem;
    overflow: hidden;
    background: var(--anthracite-dark);
}
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: float-shape 15s ease-in-out infinite;
}
.floating-shapes .shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}
.floating-shapes .shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}
.floating-shapes .shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-delay: -10s;
}
@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(20px, -20px) scale(1.05); opacity: 0.8; }
}
.company-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.company-hero-content {
    max-width: 540px;
}
.company-hero-subtitle {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.company-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.company-hero-text {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}
.company-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.company-hero-contact,
.company-hero-catalog {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.company-hero-contact {
    background: var(--primary-color);
    color: var(--text-light);
}
.company-hero-contact:hover {
    background: #cc0000;
    transform: translateY(-2px);
}
.company-hero-catalog {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.company-hero-catalog:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}
.company-hero-image-wrap {
    position: relative;
    max-width: 520px;
    justify-self: end;
}
.company-hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.company-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.company-hero-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}
.company-hero-badge-number {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.company-hero-badge span:last-child {
    font-size: 0.85rem;
    line-height: 1.3;
    opacity: 0.95;
}

.about-section {
    padding: 4rem 5% 5rem;
    background: var(--anthracite-dark);
}
.about-section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.about-section-title h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.about-section-title p {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}
.about-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}
.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}
.about-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}
.about-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    opacity: 0.9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 3rem;
}
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}
.product-card-link {
    display: block;
    color: inherit;
}
.product-card-img-wrap {
    aspect-ratio: 1;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card-body {
    padding: 1rem;
}
.product-card-name {
    font-weight: 600;
    font-size: 1rem;
}
.product-card-cat {
    font-size: 0.85rem;
    color: var(--anthracite-light);
    margin-top: 0.25rem;
}
.products-wrap {
    padding-bottom: 2rem;
}
.products-wrap .page-content { padding-bottom: 1rem; }

/* Ürün listeleme – birebir products-container > product-card */
.products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 2rem;
}
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}
.products-container .product-card {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.products-container .product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    color: inherit;
}
.products-container .product-image {
    aspect-ratio: 1;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.products-container .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.products-container .product-image-placeholder {
    color: var(--anthracite-light);
    font-size: 2.5rem;
}
.products-container .product-card .product-info {
    padding: 1rem;
}
.products-container .product-card .product-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
}
.products-container .product-card .product-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--text-light);
}
.products-container .product-card .details-btn {
    display: inline-block;
    font-size: 0.85rem;
    color: #fff;
    background: var(--primary-color);
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    margin-top: 0.25rem;
}
.products-container .product-card:hover .details-btn {
    background: #cc0000;
}
.products-container .products-empty {
    grid-column: 1 / -1;
    padding: 2rem;
    text-align: center;
    color: var(--anthracite-light);
}

/* Ürün detay sayfası (Hedef tarzı) */
.urun-detay-sayfa {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5% 3rem;
}
.product-detail { padding: 2rem 0; }
.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
#product-mount.product-loading {
    grid-column: 1 / -1;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--anthracite-light);
}
#product-mount:not(.product-loading) {
    grid-column: 1 / -1;
}
.product-gallery {
    position: relative;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    overflow: hidden;
}
.main-image {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-image img.urun-detay-foto {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.main-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--anthracite-light);
    font-size: 4rem;
}
.magnifier-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.magnifier-icon:hover { background: var(--secondary-color); }

.product-info { color: var(--text-light); }
.product-header { margin-bottom: 1.5rem; }
.product-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}
.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-light);
}

.product-specs { margin-bottom: 1.5rem; }
.specs-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.specs-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin: 0;
}
.specs-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
}
.spec-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.15);
    color: var(--primary-color);
    border-radius: 6px;
}
.spec-content { display: flex; flex-direction: column; gap: 0.25rem; }
.spec-label {
    font-size: 0.8rem;
    color: var(--anthracite-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.spec-value { font-size: 0.95rem; font-weight: 500; color: var(--text-light); }
.specs-empty { margin: 0; font-size: 0.95rem; opacity: 0.8; }

.product-description {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--anthracite-light);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.contact-btn:hover {
    background: #cc0000;
    color: #fff !important;
    transform: translateY(-2px);
}

.related-products { padding: 2rem 0; }
.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.related-card {
    display: block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.related-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    color: inherit;
}
.related-image {
    aspect-ratio: 1;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.related-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.related-placeholder {
    color: var(--anthracite-light);
    font-size: 2.5rem;
}
.related-info { padding: 1rem; }
.related-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.related-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--text-light);
}
.view-details {
    font-size: 0.85rem;
    color: #fff;
    background: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    margin-top: 0.25rem;
}
.related-card:hover .view-details {
    background: #cc0000;
}

/* Ürün detay – geri dönüş butonları */
.product-back-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.product-back-links .btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff !important;
    background: var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.product-back-links .btn-inline:hover,
.product-back-links .btn-inline:focus {
    color: #fff !important;
    background: #cc0000;
    transform: translateY(-2px);
}
.product-back-links .btn-inline i {
    font-size: 0.85em;
}

.zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}
.zoom-modal.active {
    opacity: 1;
    visibility: visible;
}
.zoom-container { position: relative; max-width: 90vw; max-height: 90vh; }
.zoom-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    cursor: grab;
}
.zoom-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 0.2s;
}
.zoom-close:hover { background: #cc0000; }

/* Ürün sayfaları antresit tema (öbürü gibi) */
.urun-sayfa-beyaz {
    background: var(--anthracite-dark);
    color: var(--text-light);
}
.urun-sayfa-beyaz .sayfa-baslik {
    background: var(--anthracite-dark);
}
.urun-sayfa-beyaz .sayfa-baslik-title {
    color: var(--text-light);
}
.urun-sayfa-beyaz .page-content,
.urun-sayfa-beyaz .product-back-links {
    color: var(--text-light);
}
.urun-sayfa-beyaz .page-content a,
.urun-sayfa-beyaz .product-back-links a {
    color: var(--primary-color);
}
.urun-sayfa-beyaz .btn-inline,
.urun-sayfa-beyaz .btn-inline:hover,
.urun-sayfa-beyaz .btn-inline:focus,
.urun-sayfa-beyaz .btn-inline:link,
.urun-sayfa-beyaz .btn-inline:visited {
    color: #fff !important;
    background: var(--primary-color);
}
.urun-sayfa-beyaz .btn-inline:hover,
.urun-sayfa-beyaz .btn-inline:focus {
    background: #cc0000;
}

/* Listing (products-container) antresit tema */
.urun-sayfa-beyaz .products-container .product-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
}
.urun-sayfa-beyaz .products-container .product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text-light);
}
.urun-sayfa-beyaz .products-container .product-card .product-name {
    color: var(--text-light);
}
.urun-sayfa-beyaz .products-container .product-card .product-category {
    color: var(--primary-color);
}
.urun-sayfa-beyaz .products-container .product-card .details-btn {
    color: #fff;
    background: var(--primary-color);
}
.urun-sayfa-beyaz .products-container .product-card:hover .details-btn {
    background: #cc0000;
    color: #fff;
}
.urun-sayfa-beyaz .products-container .product-image {
    background: rgba(0, 0, 0, 0.2);
}
.urun-sayfa-beyaz .products-container .product-image-placeholder {
    color: var(--anthracite-light);
}
.urun-sayfa-beyaz .products-container .products-empty {
    color: var(--anthracite-light);
}

/* Ürün detay antresit tema */
.urun-sayfa-beyaz .product-gallery {
    background: rgba(0, 0, 0, 0.2);
}
.urun-sayfa-beyaz .main-image-placeholder {
    color: var(--anthracite-light);
}
.urun-sayfa-beyaz .product-info {
    color: var(--text-light);
}
.urun-sayfa-beyaz .product-title {
    color: var(--text-light);
}
.urun-sayfa-beyaz .product-category {
    color: var(--primary-color);
}
.urun-sayfa-beyaz .product-description {
    color: rgba(255, 255, 255, 0.85);
}
.urun-sayfa-beyaz .specs-title {
    color: var(--text-light);
}
.urun-sayfa-beyaz .specs-line {
    background: rgba(255, 255, 255, 0.2);
}
.urun-sayfa-beyaz .spec-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}
.urun-sayfa-beyaz .spec-label {
    color: var(--anthracite-light);
}
.urun-sayfa-beyaz .spec-value {
    color: var(--text-light);
}
.urun-sayfa-beyaz .specs-empty {
    color: var(--anthracite-light);
}
.urun-sayfa-beyaz .section-title {
    color: var(--text-light);
}
.urun-sayfa-beyaz .related-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
}
.urun-sayfa-beyaz .related-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text-light);
}
.urun-sayfa-beyaz .related-name {
    color: var(--text-light);
}
.urun-sayfa-beyaz .related-category {
    color: var(--primary-color);
}
.urun-sayfa-beyaz .view-details {
    color: #fff;
    background: var(--primary-color);
}
.urun-sayfa-beyaz .related-card:hover .view-details {
    background: #cc0000;
    color: #fff;
}
.urun-sayfa-beyaz .related-image {
    background: rgba(0, 0, 0, 0.2);
}
.urun-sayfa-beyaz .related-placeholder {
    color: var(--anthracite-light);
}

@media (max-width: 768px) {
    .contact-section { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .iletisim-form-kolonlar { grid-template-columns: 1fr; }
    .page-hero .page-title { font-size: 1.75rem; }
    .company-hero-container { grid-template-columns: 1fr; text-align: center; }
    .company-hero-content { max-width: 100%; }
    .company-hero-buttons { justify-content: center; }
    .company-hero-image-wrap { justify-self: center; max-width: 100%; }
    .company-hero-badge { right: 1rem; bottom: -0.5rem; }
    .sayfa-baslik-title { font-size: 1.75rem; }
    .company-hero-title { font-size: 1.75rem; }
    .about-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .products-container { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .product-container { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
}
